v3

package
v0.18.0 Latest Latest
Warning

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

Go to latest
Published: Dec 19, 2023 License: Apache-2.0 Imports: 22 Imported by: 4

README

Go API client for v3

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

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.

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 "./v3"

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 identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), 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://pkc-00000.region.provider.confluent.cloud

Class Method HTTP request Description
ACLV3Api BatchCreateKafkaAcls Post /kafka/v3/clusters/{cluster_id}/acls:batch Batch Create ACLs
ACLV3Api CreateKafkaAcls Post /kafka/v3/clusters/{cluster_id}/acls Create an ACL
ACLV3Api DeleteKafkaAcls Delete /kafka/v3/clusters/{cluster_id}/acls Delete ACLs
ACLV3Api GetKafkaAcls Get /kafka/v3/clusters/{cluster_id}/acls List ACLs
ClusterLinkingV3Api CreateKafkaLink Post /kafka/v3/clusters/{cluster_id}/links Create a cluster link
ClusterLinkingV3Api CreateKafkaMirrorTopic Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors Create a mirror topic
ClusterLinkingV3Api DeleteKafkaLink Delete /kafka/v3/clusters/{cluster_id}/links/{link_name} Delete the cluster link
ClusterLinkingV3Api DeleteKafkaLinkConfig Delete /kafka/v3/clusters/{cluster_id}/links/{link_name}/configs/{config_name} Reset the given config to default value
ClusterLinkingV3Api GetKafkaLink Get /kafka/v3/clusters/{cluster_id}/links/{link_name} Describe the cluster link
ClusterLinkingV3Api GetKafkaLinkConfigs Get /kafka/v3/clusters/{cluster_id}/links/{link_name}/configs/{config_name} Describe the config under the cluster link
ClusterLinkingV3Api ListKafkaLinkConfigs Get /kafka/v3/clusters/{cluster_id}/links/{link_name}/configs List all configs of the cluster link
ClusterLinkingV3Api ListKafkaLinks Get /kafka/v3/clusters/{cluster_id}/links List all cluster links in the dest cluster
ClusterLinkingV3Api ListKafkaMirrorTopics Get /kafka/v3/clusters/{cluster_id}/links/-/mirrors List mirror topics
ClusterLinkingV3Api ListKafkaMirrorTopicsUnderLink Get /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors List mirror topics
ClusterLinkingV3Api ReadKafkaMirrorTopic Get /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors/{mirror_topic_name} Describe the mirror topic
ClusterLinkingV3Api UpdateKafkaLinkConfig Put /kafka/v3/clusters/{cluster_id}/links/{link_name}/configs/{config_name} Alter the config under the cluster link
ClusterLinkingV3Api UpdateKafkaLinkConfigBatch Put /kafka/v3/clusters/{cluster_id}/links/{link_name}/configs:alter Batch Alter Cluster Link Configs
ClusterLinkingV3Api UpdateKafkaMirrorTopicsFailover Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:failover Failover the mirror topics
ClusterLinkingV3Api UpdateKafkaMirrorTopicsPause Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:pause Pause the mirror topics
ClusterLinkingV3Api UpdateKafkaMirrorTopicsPromote Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:promote Promote the mirror topics
ClusterLinkingV3Api UpdateKafkaMirrorTopicsResume Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:resume Resume the mirror topics
ClusterLinkingV3Api UpdateKafkaMirrorTopicsReverseAndPauseMirror Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:reverse-and-pause-mirror Reverse the local mirror topic and Pause the remote mirror topic
ClusterLinkingV3Api UpdateKafkaMirrorTopicsReverseAndStartMirror Post /kafka/v3/clusters/{cluster_id}/links/{link_name}/mirrors:reverse-and-start-mirror Reverse the local mirror topic and start the remote mirror topic
ClusterV3Api GetKafkaCluster Get /kafka/v3/clusters/{cluster_id} Get Cluster
ConfigsV3Api DeleteKafkaClusterConfig Delete /kafka/v3/clusters/{cluster_id}/broker-configs/{name} Reset Dynamic Broker Config
ConfigsV3Api DeleteKafkaTopicConfig Delete /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/configs/{name} Reset Topic Config
ConfigsV3Api GetKafkaClusterConfig Get /kafka/v3/clusters/{cluster_id}/broker-configs/{name} Get Dynamic Broker Config
ConfigsV3Api GetKafkaTopicConfig Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/configs/{name} Get Topic Config
ConfigsV3Api ListKafkaAllTopicConfigs Get /kafka/v3/clusters/{cluster_id}/topics/-/configs List All Topic Configs
ConfigsV3Api ListKafkaClusterConfigs Get /kafka/v3/clusters/{cluster_id}/broker-configs List Dynamic Broker Configs
ConfigsV3Api ListKafkaDefaultTopicConfigs Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/default-configs List New Topic Default Configs
ConfigsV3Api ListKafkaTopicConfigs Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/configs List Topic Configs
ConfigsV3Api UpdateKafkaClusterConfig Put /kafka/v3/clusters/{cluster_id}/broker-configs/{name} Update Dynamic Broker Config
ConfigsV3Api UpdateKafkaClusterConfigs Post /kafka/v3/clusters/{cluster_id}/broker-configs:alter Batch Alter Dynamic Broker Configs
ConfigsV3Api UpdateKafkaTopicConfig Put /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/configs/{name} Update Topic Config
ConfigsV3Api UpdateKafkaTopicConfigBatch Post /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/configs:alter Batch Alter Topic Configs
ConsumerGroupV3Api GetKafkaConsumer Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id}/consumers/{consumer_id} Get Consumer
ConsumerGroupV3Api GetKafkaConsumerGroup Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id} Get Consumer Group
ConsumerGroupV3Api GetKafkaConsumerGroupLagSummary Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id}/lag-summary Get Consumer Group Lag Summary
ConsumerGroupV3Api GetKafkaConsumerLag Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id}/lags/{topic_name}/partitions/{partition_id} Get Consumer Lag
ConsumerGroupV3Api ListKafkaConsumerGroups Get /kafka/v3/clusters/{cluster_id}/consumer-groups List Consumer Groups
ConsumerGroupV3Api ListKafkaConsumerLags Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id}/lags List Consumer Lags
ConsumerGroupV3Api ListKafkaConsumers Get /kafka/v3/clusters/{cluster_id}/consumer-groups/{consumer_group_id}/consumers List Consumers
PartitionV3Api GetKafkaPartition Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/partitions/{partition_id} Get Partition
PartitionV3Api ListKafkaPartitions Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/partitions List Partitions
RecordsV3Api ProduceRecord Post /kafka/v3/clusters/{cluster_id}/topics/{topic_name}/records Produce Records
TopicV3Api CreateKafkaTopic Post /kafka/v3/clusters/{cluster_id}/topics Create Topic
TopicV3Api DeleteKafkaTopic Delete /kafka/v3/clusters/{cluster_id}/topics/{topic_name} Delete Topic
TopicV3Api GetKafkaTopic Get /kafka/v3/clusters/{cluster_id}/topics/{topic_name} Get Topic
TopicV3Api ListKafkaTopics Get /kafka/v3/clusters/{cluster_id}/topics List Topics
TopicV3Api UpdatePartitionCountKafkaTopic Patch /kafka/v3/clusters/{cluster_id}/topics/{topic_name} Update Partition Count

Documentation For Models

Documentation For Authorization

external-access-token
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

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

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
resource-api-key
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
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

kafka-clients-proxy-team@confluent.io

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool added in v0.4.0

func PtrBool(v bool) *bool

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

func PtrFloat32 added in v0.4.0

func PtrFloat32(v float32) *float32

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

func PtrFloat64 added in v0.4.0

func PtrFloat64(v float64) *float64

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

func PtrInt added in v0.4.0

func PtrInt(v int) *int

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

func PtrInt32 added in v0.4.0

func PtrInt32(v int32) *int32

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

func PtrInt64 added in v0.4.0

func PtrInt64(v int64) *int64

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

func PtrString added in v0.4.0

func PtrString(v string) *string

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

func PtrTime added in v0.4.0

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

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

Types

type ACLV3Api

type ACLV3Api interface {

	/*
			BatchCreateKafkaAcls Batch Create ACLs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Create ACLs.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiBatchCreateKafkaAclsRequest
	*/
	BatchCreateKafkaAcls(ctx _context.Context, clusterId string) ApiBatchCreateKafkaAclsRequest

	// BatchCreateKafkaAclsExecute executes the request
	BatchCreateKafkaAclsExecute(r ApiBatchCreateKafkaAclsRequest) (*_nethttp.Response, error)

	/*
			CreateKafkaAcls Create an ACL

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Create an ACL.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiCreateKafkaAclsRequest
	*/
	CreateKafkaAcls(ctx _context.Context, clusterId string) ApiCreateKafkaAclsRequest

	// CreateKafkaAclsExecute executes the request
	CreateKafkaAclsExecute(r ApiCreateKafkaAclsRequest) (*_nethttp.Response, error)

	/*
			DeleteKafkaAcls Delete ACLs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Delete the ACLs that match the search criteria.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiDeleteKafkaAclsRequest
	*/
	DeleteKafkaAcls(ctx _context.Context, clusterId string) ApiDeleteKafkaAclsRequest

	// DeleteKafkaAclsExecute executes the request
	//  @return InlineResponse200
	DeleteKafkaAclsExecute(r ApiDeleteKafkaAclsRequest) (InlineResponse200, *_nethttp.Response, error)

	/*
			GetKafkaAcls List ACLs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return a list of ACLs that match the search criteria.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiGetKafkaAclsRequest
	*/
	GetKafkaAcls(ctx _context.Context, clusterId string) ApiGetKafkaAclsRequest

	// GetKafkaAclsExecute executes the request
	//  @return AclDataList
	GetKafkaAclsExecute(r ApiGetKafkaAclsRequest) (AclDataList, *_nethttp.Response, error)
}

type ACLV3ApiService

type ACLV3ApiService service

ACLV3ApiService ACLV3Api service

func (*ACLV3ApiService) BatchCreateKafkaAcls added in v0.14.0

func (a *ACLV3ApiService) BatchCreateKafkaAcls(ctx _context.Context, clusterId string) ApiBatchCreateKafkaAclsRequest

BatchCreateKafkaAcls Batch Create ACLs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Create ACLs.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiBatchCreateKafkaAclsRequest

func (*ACLV3ApiService) BatchCreateKafkaAclsExecute added in v0.14.0

func (a *ACLV3ApiService) BatchCreateKafkaAclsExecute(r ApiBatchCreateKafkaAclsRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ACLV3ApiService) CreateKafkaAcls added in v0.4.0

func (a *ACLV3ApiService) CreateKafkaAcls(ctx _context.Context, clusterId string) ApiCreateKafkaAclsRequest

CreateKafkaAcls Create an ACL

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Create an ACL.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiCreateKafkaAclsRequest

func (*ACLV3ApiService) CreateKafkaAclsExecute added in v0.4.0

func (a *ACLV3ApiService) CreateKafkaAclsExecute(r ApiCreateKafkaAclsRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ACLV3ApiService) DeleteKafkaAcls added in v0.4.0

func (a *ACLV3ApiService) DeleteKafkaAcls(ctx _context.Context, clusterId string) ApiDeleteKafkaAclsRequest

DeleteKafkaAcls Delete ACLs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Delete the ACLs that match the search criteria.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiDeleteKafkaAclsRequest

func (*ACLV3ApiService) DeleteKafkaAclsExecute added in v0.4.0

Execute executes the request

@return InlineResponse200

func (*ACLV3ApiService) GetKafkaAcls added in v0.4.0

func (a *ACLV3ApiService) GetKafkaAcls(ctx _context.Context, clusterId string) ApiGetKafkaAclsRequest

GetKafkaAcls List ACLs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return a list of ACLs that match the search criteria.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiGetKafkaAclsRequest

func (*ACLV3ApiService) GetKafkaAclsExecute added in v0.4.0

Execute executes the request

@return AclDataList

type APIClient

type APIClient struct {
	ACLV3Api ACLV3Api

	ClusterLinkingV3Api ClusterLinkingV3Api

	ClusterV3Api ClusterV3Api

	ConfigsV3Api ConfigsV3Api

	ConsumerGroupV3Api ConsumerGroupV3Api

	PartitionV3Api PartitionV3Api

	RecordsV3Api RecordsV3Api

	TopicV3Api TopicV3Api
	// contains filtered or unexported fields
}

APIClient manages communication with the REST Admin API API v3.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AbstractConfigData

type AbstractConfigData struct {
	Kind        string              `json:"kind,omitempty"`
	Metadata    ResourceMetadata    `json:"metadata,omitempty"`
	ClusterId   string              `json:"cluster_id,omitempty"`
	Name        string              `json:"name,omitempty"`
	Value       NullableString      `json:"value,omitempty"`
	IsDefault   bool                `json:"is_default,omitempty"`
	IsReadOnly  bool                `json:"is_read_only,omitempty"`
	IsSensitive bool                `json:"is_sensitive,omitempty"`
	Source      string              `json:"source,omitempty"`
	Synonyms    []ConfigSynonymData `json:"synonyms,omitempty"`
}

AbstractConfigData struct for AbstractConfigData

func NewAbstractConfigData added in v0.4.0

func NewAbstractConfigData(kind string, metadata ResourceMetadata, clusterId string, name string, isDefault bool, isReadOnly bool, isSensitive bool, source string, synonyms []ConfigSynonymData) *AbstractConfigData

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

func NewAbstractConfigDataWithDefaults added in v0.4.0

func NewAbstractConfigDataWithDefaults() *AbstractConfigData

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

func (*AbstractConfigData) GetClusterId added in v0.4.0

func (o *AbstractConfigData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AbstractConfigData) GetClusterIdOk added in v0.4.0

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

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

func (*AbstractConfigData) GetIsDefault added in v0.4.0

func (o *AbstractConfigData) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*AbstractConfigData) GetIsDefaultOk added in v0.4.0

func (o *AbstractConfigData) GetIsDefaultOk() (*bool, bool)

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

func (*AbstractConfigData) GetIsReadOnly added in v0.4.0

func (o *AbstractConfigData) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value

func (*AbstractConfigData) GetIsReadOnlyOk added in v0.4.0

func (o *AbstractConfigData) GetIsReadOnlyOk() (*bool, bool)

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

func (*AbstractConfigData) GetIsSensitive added in v0.4.0

func (o *AbstractConfigData) GetIsSensitive() bool

GetIsSensitive returns the IsSensitive field value

func (*AbstractConfigData) GetIsSensitiveOk added in v0.4.0

func (o *AbstractConfigData) GetIsSensitiveOk() (*bool, bool)

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

func (*AbstractConfigData) GetKind added in v0.4.0

func (o *AbstractConfigData) GetKind() string

GetKind returns the Kind field value

func (*AbstractConfigData) GetKindOk added in v0.4.0

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

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

func (*AbstractConfigData) GetMetadata added in v0.4.0

func (o *AbstractConfigData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*AbstractConfigData) GetMetadataOk added in v0.4.0

func (o *AbstractConfigData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*AbstractConfigData) GetName added in v0.4.0

func (o *AbstractConfigData) GetName() string

GetName returns the Name field value

func (*AbstractConfigData) GetNameOk added in v0.4.0

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

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

func (*AbstractConfigData) GetSource added in v0.4.0

func (o *AbstractConfigData) GetSource() string

GetSource returns the Source field value

func (*AbstractConfigData) GetSourceOk added in v0.4.0

func (o *AbstractConfigData) GetSourceOk() (*string, bool)

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

func (*AbstractConfigData) GetSynonyms added in v0.4.0

func (o *AbstractConfigData) GetSynonyms() []ConfigSynonymData

GetSynonyms returns the Synonyms field value

func (*AbstractConfigData) GetSynonymsOk added in v0.4.0

func (o *AbstractConfigData) GetSynonymsOk() (*[]ConfigSynonymData, bool)

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

func (*AbstractConfigData) GetValue added in v0.4.0

func (o *AbstractConfigData) GetValue() string

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

func (*AbstractConfigData) GetValueOk added in v0.4.0

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

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

func (*AbstractConfigData) HasValue added in v0.4.0

func (o *AbstractConfigData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AbstractConfigData) MarshalJSON added in v0.4.0

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

func (*AbstractConfigData) Redact added in v0.4.0

func (o *AbstractConfigData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AbstractConfigData) SetClusterId added in v0.4.0

func (o *AbstractConfigData) SetClusterId(v string)

SetClusterId sets field value

func (*AbstractConfigData) SetIsDefault added in v0.4.0

func (o *AbstractConfigData) SetIsDefault(v bool)

SetIsDefault sets field value

func (*AbstractConfigData) SetIsReadOnly added in v0.4.0

func (o *AbstractConfigData) SetIsReadOnly(v bool)

SetIsReadOnly sets field value

func (*AbstractConfigData) SetIsSensitive added in v0.4.0

func (o *AbstractConfigData) SetIsSensitive(v bool)

SetIsSensitive sets field value

func (*AbstractConfigData) SetKind added in v0.4.0

func (o *AbstractConfigData) SetKind(v string)

SetKind sets field value

func (*AbstractConfigData) SetMetadata added in v0.4.0

func (o *AbstractConfigData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*AbstractConfigData) SetName added in v0.4.0

func (o *AbstractConfigData) SetName(v string)

SetName sets field value

func (*AbstractConfigData) SetSource added in v0.4.0

func (o *AbstractConfigData) SetSource(v string)

SetSource sets field value

func (*AbstractConfigData) SetSynonyms added in v0.4.0

func (o *AbstractConfigData) SetSynonyms(v []ConfigSynonymData)

SetSynonyms sets field value

func (*AbstractConfigData) SetValue added in v0.4.0

func (o *AbstractConfigData) SetValue(v string)

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

func (*AbstractConfigData) SetValueNil added in v0.4.0

func (o *AbstractConfigData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*AbstractConfigData) UnsetValue added in v0.4.0

func (o *AbstractConfigData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type AbstractConfigDataAllOf

type AbstractConfigDataAllOf struct {
	ClusterId   string              `json:"cluster_id,omitempty"`
	Name        string              `json:"name,omitempty"`
	Value       NullableString      `json:"value,omitempty"`
	IsDefault   bool                `json:"is_default,omitempty"`
	IsReadOnly  bool                `json:"is_read_only,omitempty"`
	IsSensitive bool                `json:"is_sensitive,omitempty"`
	Source      string              `json:"source,omitempty"`
	Synonyms    []ConfigSynonymData `json:"synonyms,omitempty"`
}

AbstractConfigDataAllOf struct for AbstractConfigDataAllOf

func NewAbstractConfigDataAllOf added in v0.4.0

func NewAbstractConfigDataAllOf(clusterId string, name string, isDefault bool, isReadOnly bool, isSensitive bool, source string, synonyms []ConfigSynonymData) *AbstractConfigDataAllOf

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

func NewAbstractConfigDataAllOfWithDefaults added in v0.4.0

func NewAbstractConfigDataAllOfWithDefaults() *AbstractConfigDataAllOf

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

func (*AbstractConfigDataAllOf) GetClusterId added in v0.4.0

func (o *AbstractConfigDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AbstractConfigDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*AbstractConfigDataAllOf) GetIsDefault added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*AbstractConfigDataAllOf) GetIsDefaultOk added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsDefaultOk() (*bool, bool)

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

func (*AbstractConfigDataAllOf) GetIsReadOnly added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value

func (*AbstractConfigDataAllOf) GetIsReadOnlyOk added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsReadOnlyOk() (*bool, bool)

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

func (*AbstractConfigDataAllOf) GetIsSensitive added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsSensitive() bool

GetIsSensitive returns the IsSensitive field value

func (*AbstractConfigDataAllOf) GetIsSensitiveOk added in v0.4.0

func (o *AbstractConfigDataAllOf) GetIsSensitiveOk() (*bool, bool)

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

func (*AbstractConfigDataAllOf) GetName added in v0.4.0

func (o *AbstractConfigDataAllOf) GetName() string

GetName returns the Name field value

func (*AbstractConfigDataAllOf) GetNameOk added in v0.4.0

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

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

func (*AbstractConfigDataAllOf) GetSource added in v0.4.0

func (o *AbstractConfigDataAllOf) GetSource() string

GetSource returns the Source field value

func (*AbstractConfigDataAllOf) GetSourceOk added in v0.4.0

func (o *AbstractConfigDataAllOf) GetSourceOk() (*string, bool)

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

func (*AbstractConfigDataAllOf) GetSynonyms added in v0.4.0

func (o *AbstractConfigDataAllOf) GetSynonyms() []ConfigSynonymData

GetSynonyms returns the Synonyms field value

func (*AbstractConfigDataAllOf) GetSynonymsOk added in v0.4.0

func (o *AbstractConfigDataAllOf) GetSynonymsOk() (*[]ConfigSynonymData, bool)

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

func (*AbstractConfigDataAllOf) GetValue added in v0.4.0

func (o *AbstractConfigDataAllOf) GetValue() string

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

func (*AbstractConfigDataAllOf) GetValueOk added in v0.4.0

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

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

func (*AbstractConfigDataAllOf) HasValue added in v0.4.0

func (o *AbstractConfigDataAllOf) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AbstractConfigDataAllOf) MarshalJSON added in v0.4.0

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

func (*AbstractConfigDataAllOf) Redact added in v0.4.0

func (o *AbstractConfigDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*AbstractConfigDataAllOf) SetClusterId added in v0.4.0

func (o *AbstractConfigDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*AbstractConfigDataAllOf) SetIsDefault added in v0.4.0

func (o *AbstractConfigDataAllOf) SetIsDefault(v bool)

SetIsDefault sets field value

func (*AbstractConfigDataAllOf) SetIsReadOnly added in v0.4.0

func (o *AbstractConfigDataAllOf) SetIsReadOnly(v bool)

SetIsReadOnly sets field value

func (*AbstractConfigDataAllOf) SetIsSensitive added in v0.4.0

func (o *AbstractConfigDataAllOf) SetIsSensitive(v bool)

SetIsSensitive sets field value

func (*AbstractConfigDataAllOf) SetName added in v0.4.0

func (o *AbstractConfigDataAllOf) SetName(v string)

SetName sets field value

func (*AbstractConfigDataAllOf) SetSource added in v0.4.0

func (o *AbstractConfigDataAllOf) SetSource(v string)

SetSource sets field value

func (*AbstractConfigDataAllOf) SetSynonyms added in v0.4.0

func (o *AbstractConfigDataAllOf) SetSynonyms(v []ConfigSynonymData)

SetSynonyms sets field value

func (*AbstractConfigDataAllOf) SetValue added in v0.4.0

func (o *AbstractConfigDataAllOf) SetValue(v string)

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

func (*AbstractConfigDataAllOf) SetValueNil added in v0.4.0

func (o *AbstractConfigDataAllOf) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*AbstractConfigDataAllOf) UnsetValue added in v0.4.0

func (o *AbstractConfigDataAllOf) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type AclData

type AclData struct {
	Kind         string           `json:"kind,omitempty"`
	Metadata     ResourceMetadata `json:"metadata,omitempty"`
	ClusterId    string           `json:"cluster_id,omitempty"`
	ResourceType AclResourceType  `json:"resource_type,omitempty"`
	ResourceName string           `json:"resource_name,omitempty"`
	PatternType  string           `json:"pattern_type,omitempty"`
	Principal    string           `json:"principal,omitempty"`
	Host         string           `json:"host,omitempty"`
	Operation    string           `json:"operation,omitempty"`
	Permission   string           `json:"permission,omitempty"`
}

AclData struct for AclData

func NewAclData added in v0.4.0

func NewAclData(kind string, metadata ResourceMetadata, clusterId string, resourceType AclResourceType, resourceName string, patternType string, principal string, host string, operation string, permission string) *AclData

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

func NewAclDataWithDefaults added in v0.4.0

func NewAclDataWithDefaults() *AclData

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

func (*AclData) GetClusterId added in v0.4.0

func (o *AclData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AclData) GetClusterIdOk added in v0.4.0

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

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

func (*AclData) GetHost added in v0.4.0

func (o *AclData) GetHost() string

GetHost returns the Host field value

func (*AclData) GetHostOk added in v0.4.0

func (o *AclData) GetHostOk() (*string, bool)

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

func (*AclData) GetKind added in v0.4.0

func (o *AclData) GetKind() string

GetKind returns the Kind field value

func (*AclData) GetKindOk added in v0.4.0

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

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

func (*AclData) GetMetadata added in v0.4.0

func (o *AclData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*AclData) GetMetadataOk added in v0.4.0

func (o *AclData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*AclData) GetOperation added in v0.4.0

func (o *AclData) GetOperation() string

GetOperation returns the Operation field value

func (*AclData) GetOperationOk added in v0.4.0

func (o *AclData) GetOperationOk() (*string, bool)

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

func (*AclData) GetPatternType added in v0.4.0

func (o *AclData) GetPatternType() string

GetPatternType returns the PatternType field value

func (*AclData) GetPatternTypeOk added in v0.4.0

func (o *AclData) GetPatternTypeOk() (*string, bool)

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

func (*AclData) GetPermission added in v0.4.0

func (o *AclData) GetPermission() string

GetPermission returns the Permission field value

func (*AclData) GetPermissionOk added in v0.4.0

func (o *AclData) GetPermissionOk() (*string, bool)

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

func (*AclData) GetPrincipal added in v0.4.0

func (o *AclData) GetPrincipal() string

GetPrincipal returns the Principal field value

func (*AclData) GetPrincipalOk added in v0.4.0

func (o *AclData) GetPrincipalOk() (*string, bool)

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

func (*AclData) GetResourceName added in v0.4.0

func (o *AclData) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*AclData) GetResourceNameOk added in v0.4.0

func (o *AclData) GetResourceNameOk() (*string, bool)

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

func (*AclData) GetResourceType added in v0.4.0

func (o *AclData) GetResourceType() AclResourceType

GetResourceType returns the ResourceType field value

func (*AclData) GetResourceTypeOk added in v0.4.0

func (o *AclData) GetResourceTypeOk() (*AclResourceType, bool)

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

func (AclData) MarshalJSON added in v0.4.0

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

func (*AclData) Redact added in v0.4.0

func (o *AclData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AclData) SetClusterId added in v0.4.0

func (o *AclData) SetClusterId(v string)

SetClusterId sets field value

func (*AclData) SetHost added in v0.4.0

func (o *AclData) SetHost(v string)

SetHost sets field value

func (*AclData) SetKind added in v0.4.0

func (o *AclData) SetKind(v string)

SetKind sets field value

func (*AclData) SetMetadata added in v0.4.0

func (o *AclData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*AclData) SetOperation added in v0.4.0

func (o *AclData) SetOperation(v string)

SetOperation sets field value

func (*AclData) SetPatternType added in v0.4.0

func (o *AclData) SetPatternType(v string)

SetPatternType sets field value

func (*AclData) SetPermission added in v0.4.0

func (o *AclData) SetPermission(v string)

SetPermission sets field value

func (*AclData) SetPrincipal added in v0.4.0

func (o *AclData) SetPrincipal(v string)

SetPrincipal sets field value

func (*AclData) SetResourceName added in v0.4.0

func (o *AclData) SetResourceName(v string)

SetResourceName sets field value

func (*AclData) SetResourceType added in v0.4.0

func (o *AclData) SetResourceType(v AclResourceType)

SetResourceType sets field value

type AclDataAllOf

type AclDataAllOf struct {
	ClusterId    string          `json:"cluster_id,omitempty"`
	ResourceType AclResourceType `json:"resource_type,omitempty"`
	ResourceName string          `json:"resource_name,omitempty"`
	PatternType  string          `json:"pattern_type,omitempty"`
	Principal    string          `json:"principal,omitempty"`
	Host         string          `json:"host,omitempty"`
	Operation    string          `json:"operation,omitempty"`
	Permission   string          `json:"permission,omitempty"`
}

AclDataAllOf struct for AclDataAllOf

func NewAclDataAllOf added in v0.4.0

func NewAclDataAllOf(clusterId string, resourceType AclResourceType, resourceName string, patternType string, principal string, host string, operation string, permission string) *AclDataAllOf

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

func NewAclDataAllOfWithDefaults added in v0.4.0

func NewAclDataAllOfWithDefaults() *AclDataAllOf

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

func (*AclDataAllOf) GetClusterId added in v0.4.0

func (o *AclDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AclDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*AclDataAllOf) GetHost added in v0.4.0

func (o *AclDataAllOf) GetHost() string

GetHost returns the Host field value

func (*AclDataAllOf) GetHostOk added in v0.4.0

func (o *AclDataAllOf) GetHostOk() (*string, bool)

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

func (*AclDataAllOf) GetOperation added in v0.4.0

func (o *AclDataAllOf) GetOperation() string

GetOperation returns the Operation field value

func (*AclDataAllOf) GetOperationOk added in v0.4.0

func (o *AclDataAllOf) GetOperationOk() (*string, bool)

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

func (*AclDataAllOf) GetPatternType added in v0.4.0

func (o *AclDataAllOf) GetPatternType() string

GetPatternType returns the PatternType field value

func (*AclDataAllOf) GetPatternTypeOk added in v0.4.0

func (o *AclDataAllOf) GetPatternTypeOk() (*string, bool)

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

func (*AclDataAllOf) GetPermission added in v0.4.0

func (o *AclDataAllOf) GetPermission() string

GetPermission returns the Permission field value

func (*AclDataAllOf) GetPermissionOk added in v0.4.0

func (o *AclDataAllOf) GetPermissionOk() (*string, bool)

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

func (*AclDataAllOf) GetPrincipal added in v0.4.0

func (o *AclDataAllOf) GetPrincipal() string

GetPrincipal returns the Principal field value

func (*AclDataAllOf) GetPrincipalOk added in v0.4.0

func (o *AclDataAllOf) GetPrincipalOk() (*string, bool)

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

func (*AclDataAllOf) GetResourceName added in v0.4.0

func (o *AclDataAllOf) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*AclDataAllOf) GetResourceNameOk added in v0.4.0

func (o *AclDataAllOf) GetResourceNameOk() (*string, bool)

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

func (*AclDataAllOf) GetResourceType added in v0.4.0

func (o *AclDataAllOf) GetResourceType() AclResourceType

GetResourceType returns the ResourceType field value

func (*AclDataAllOf) GetResourceTypeOk added in v0.4.0

func (o *AclDataAllOf) GetResourceTypeOk() (*AclResourceType, bool)

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

func (AclDataAllOf) MarshalJSON added in v0.4.0

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

func (*AclDataAllOf) Redact added in v0.4.0

func (o *AclDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*AclDataAllOf) SetClusterId added in v0.4.0

func (o *AclDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*AclDataAllOf) SetHost added in v0.4.0

func (o *AclDataAllOf) SetHost(v string)

SetHost sets field value

func (*AclDataAllOf) SetOperation added in v0.4.0

func (o *AclDataAllOf) SetOperation(v string)

SetOperation sets field value

func (*AclDataAllOf) SetPatternType added in v0.4.0

func (o *AclDataAllOf) SetPatternType(v string)

SetPatternType sets field value

func (*AclDataAllOf) SetPermission added in v0.4.0

func (o *AclDataAllOf) SetPermission(v string)

SetPermission sets field value

func (*AclDataAllOf) SetPrincipal added in v0.4.0

func (o *AclDataAllOf) SetPrincipal(v string)

SetPrincipal sets field value

func (*AclDataAllOf) SetResourceName added in v0.4.0

func (o *AclDataAllOf) SetResourceName(v string)

SetResourceName sets field value

func (*AclDataAllOf) SetResourceType added in v0.4.0

func (o *AclDataAllOf) SetResourceType(v AclResourceType)

SetResourceType sets field value

type AclDataList

type AclDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []AclData                  `json:"data,omitempty"`
}

AclDataList struct for AclDataList

func NewAclDataList added in v0.4.0

func NewAclDataList(kind string, metadata ResourceCollectionMetadata, data []AclData) *AclDataList

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

func NewAclDataListWithDefaults added in v0.4.0

func NewAclDataListWithDefaults() *AclDataList

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

func (*AclDataList) GetData added in v0.4.0

func (o *AclDataList) GetData() []AclData

GetData returns the Data field value

func (*AclDataList) GetDataOk added in v0.4.0

func (o *AclDataList) GetDataOk() (*[]AclData, bool)

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

func (*AclDataList) GetKind added in v0.4.0

func (o *AclDataList) GetKind() string

GetKind returns the Kind field value

func (*AclDataList) GetKindOk added in v0.4.0

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

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

func (*AclDataList) GetMetadata added in v0.4.0

func (o *AclDataList) GetMetadata() ResourceCollectionMetadata

GetMetadata returns the Metadata field value

func (*AclDataList) GetMetadataOk added in v0.4.0

func (o *AclDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (AclDataList) MarshalJSON added in v0.4.0

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

func (*AclDataList) Redact added in v0.4.0

func (o *AclDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*AclDataList) SetData added in v0.4.0

func (o *AclDataList) SetData(v []AclData)

SetData sets field value

func (*AclDataList) SetKind added in v0.4.0

func (o *AclDataList) SetKind(v string)

SetKind sets field value

func (*AclDataList) SetMetadata added in v0.4.0

func (o *AclDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type AclResourceType

type AclResourceType string

AclResourceType the model 'AclResourceType'

const (
	UNKNOWN          AclResourceType = "UNKNOWN"
	ANY              AclResourceType = "ANY"
	TOPIC            AclResourceType = "TOPIC"
	GROUP            AclResourceType = "GROUP"
	CLUSTER          AclResourceType = "CLUSTER"
	TRANSACTIONAL_ID AclResourceType = "TRANSACTIONAL_ID"
	DELEGATION_TOKEN AclResourceType = "DELEGATION_TOKEN"
)

List of AclResourceType

func NewAclResourceTypeFromValue added in v0.4.0

func NewAclResourceTypeFromValue(v string) (*AclResourceType, error)

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

func (AclResourceType) IsValid added in v0.4.0

func (v AclResourceType) IsValid() bool

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

func (AclResourceType) Ptr added in v0.4.0

Ptr returns reference to AclResourceType value

func (*AclResourceType) UnmarshalJSON added in v0.4.0

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

type AlterBrokerReplicaExclusionData

type AlterBrokerReplicaExclusionData struct {
	Kind         string           `json:"kind,omitempty"`
	Metadata     ResourceMetadata `json:"metadata,omitempty"`
	ClusterId    string           `json:"cluster_id,omitempty"`
	BrokerId     int32            `json:"broker_id,omitempty"`
	Exclusion    string           `json:"exclusion,omitempty"`
	Reason       string           `json:"reason,omitempty"`
	ErrorCode    NullableInt32    `json:"error_code,omitempty"`
	ErrorMessage NullableString   `json:"error_message,omitempty"`
	Broker       Relationship     `json:"broker,omitempty"`
}

AlterBrokerReplicaExclusionData struct for AlterBrokerReplicaExclusionData

func NewAlterBrokerReplicaExclusionData added in v0.4.0

func NewAlterBrokerReplicaExclusionData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, exclusion string, reason string, broker Relationship) *AlterBrokerReplicaExclusionData

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

func NewAlterBrokerReplicaExclusionDataWithDefaults added in v0.4.0

func NewAlterBrokerReplicaExclusionDataWithDefaults() *AlterBrokerReplicaExclusionData

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

func (*AlterBrokerReplicaExclusionData) GetBroker added in v0.4.0

GetBroker returns the Broker field value

func (*AlterBrokerReplicaExclusionData) GetBrokerId added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*AlterBrokerReplicaExclusionData) GetBrokerIdOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetBrokerIdOk() (*int32, bool)

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

func (*AlterBrokerReplicaExclusionData) GetBrokerOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetBrokerOk() (*Relationship, bool)

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

func (*AlterBrokerReplicaExclusionData) GetClusterId added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AlterBrokerReplicaExclusionData) GetClusterIdOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionData) GetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetErrorCode() int32

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

func (*AlterBrokerReplicaExclusionData) GetErrorCodeOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetErrorCodeOk() (*int32, bool)

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

func (*AlterBrokerReplicaExclusionData) GetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetErrorMessage() string

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

func (*AlterBrokerReplicaExclusionData) GetErrorMessageOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetErrorMessageOk() (*string, bool)

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

func (*AlterBrokerReplicaExclusionData) GetExclusion added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetExclusion() string

GetExclusion returns the Exclusion field value

func (*AlterBrokerReplicaExclusionData) GetExclusionOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetExclusionOk() (*string, bool)

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

func (*AlterBrokerReplicaExclusionData) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*AlterBrokerReplicaExclusionData) GetKindOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*AlterBrokerReplicaExclusionData) GetMetadataOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*AlterBrokerReplicaExclusionData) GetReason added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) GetReason() string

GetReason returns the Reason field value

func (*AlterBrokerReplicaExclusionData) GetReasonOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionData) HasErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*AlterBrokerReplicaExclusionData) HasErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (AlterBrokerReplicaExclusionData) MarshalJSON added in v0.4.0

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

func (*AlterBrokerReplicaExclusionData) Redact added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AlterBrokerReplicaExclusionData) SetBroker added in v0.4.0

SetBroker sets field value

func (*AlterBrokerReplicaExclusionData) SetBrokerId added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*AlterBrokerReplicaExclusionData) SetClusterId added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetClusterId(v string)

SetClusterId sets field value

func (*AlterBrokerReplicaExclusionData) SetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*AlterBrokerReplicaExclusionData) SetErrorCodeNil added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*AlterBrokerReplicaExclusionData) SetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*AlterBrokerReplicaExclusionData) SetErrorMessageNil added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AlterBrokerReplicaExclusionData) SetExclusion added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetExclusion(v string)

SetExclusion sets field value

func (*AlterBrokerReplicaExclusionData) SetKind added in v0.4.0

SetKind sets field value

func (*AlterBrokerReplicaExclusionData) SetMetadata added in v0.4.0

SetMetadata sets field value

func (*AlterBrokerReplicaExclusionData) SetReason added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) SetReason(v string)

SetReason sets field value

func (*AlterBrokerReplicaExclusionData) UnsetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*AlterBrokerReplicaExclusionData) UnsetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionData) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type AlterBrokerReplicaExclusionDataAllOf

type AlterBrokerReplicaExclusionDataAllOf struct {
	ClusterId    string         `json:"cluster_id,omitempty"`
	BrokerId     int32          `json:"broker_id,omitempty"`
	Exclusion    string         `json:"exclusion,omitempty"`
	Reason       string         `json:"reason,omitempty"`
	ErrorCode    NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage NullableString `json:"error_message,omitempty"`
	Broker       Relationship   `json:"broker,omitempty"`
}

AlterBrokerReplicaExclusionDataAllOf struct for AlterBrokerReplicaExclusionDataAllOf

func NewAlterBrokerReplicaExclusionDataAllOf added in v0.4.0

func NewAlterBrokerReplicaExclusionDataAllOf(clusterId string, brokerId int32, exclusion string, reason string, broker Relationship) *AlterBrokerReplicaExclusionDataAllOf

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

func NewAlterBrokerReplicaExclusionDataAllOfWithDefaults added in v0.4.0

func NewAlterBrokerReplicaExclusionDataAllOfWithDefaults() *AlterBrokerReplicaExclusionDataAllOf

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetBroker added in v0.4.0

GetBroker returns the Broker field value

func (*AlterBrokerReplicaExclusionDataAllOf) GetBrokerId added in v0.4.0

GetBrokerId returns the BrokerId field value

func (*AlterBrokerReplicaExclusionDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetBrokerOk added in v0.4.0

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetClusterId added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AlterBrokerReplicaExclusionDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetErrorCode() int32

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetErrorCodeOk() (*int32, bool)

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetErrorMessage() string

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetErrorMessageOk() (*string, bool)

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetExclusion added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetExclusion() string

GetExclusion returns the Exclusion field value

func (*AlterBrokerReplicaExclusionDataAllOf) GetExclusionOk added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) GetExclusionOk() (*string, bool)

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

func (*AlterBrokerReplicaExclusionDataAllOf) GetReason added in v0.4.0

GetReason returns the Reason field value

func (*AlterBrokerReplicaExclusionDataAllOf) GetReasonOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionDataAllOf) HasErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*AlterBrokerReplicaExclusionDataAllOf) HasErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (AlterBrokerReplicaExclusionDataAllOf) MarshalJSON added in v0.4.0

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

func (*AlterBrokerReplicaExclusionDataAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterBrokerReplicaExclusionDataAllOf) SetBroker added in v0.4.0

SetBroker sets field value

func (*AlterBrokerReplicaExclusionDataAllOf) SetBrokerId added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*AlterBrokerReplicaExclusionDataAllOf) SetClusterId added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*AlterBrokerReplicaExclusionDataAllOf) SetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*AlterBrokerReplicaExclusionDataAllOf) SetErrorCodeNil added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*AlterBrokerReplicaExclusionDataAllOf) SetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*AlterBrokerReplicaExclusionDataAllOf) SetErrorMessageNil added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AlterBrokerReplicaExclusionDataAllOf) SetExclusion added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) SetExclusion(v string)

SetExclusion sets field value

func (*AlterBrokerReplicaExclusionDataAllOf) SetReason added in v0.4.0

SetReason sets field value

func (*AlterBrokerReplicaExclusionDataAllOf) UnsetErrorCode added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*AlterBrokerReplicaExclusionDataAllOf) UnsetErrorMessage added in v0.4.0

func (o *AlterBrokerReplicaExclusionDataAllOf) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type AlterBrokerReplicaExclusionDataList

type AlterBrokerReplicaExclusionDataList struct {
	Kind     string                            `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata        `json:"metadata,omitempty"`
	Data     []AlterBrokerReplicaExclusionData `json:"data,omitempty"`
}

AlterBrokerReplicaExclusionDataList struct for AlterBrokerReplicaExclusionDataList

func NewAlterBrokerReplicaExclusionDataList added in v0.4.0

func NewAlterBrokerReplicaExclusionDataList(kind string, metadata ResourceCollectionMetadata, data []AlterBrokerReplicaExclusionData) *AlterBrokerReplicaExclusionDataList

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

func NewAlterBrokerReplicaExclusionDataListWithDefaults added in v0.4.0

func NewAlterBrokerReplicaExclusionDataListWithDefaults() *AlterBrokerReplicaExclusionDataList

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

func (*AlterBrokerReplicaExclusionDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*AlterBrokerReplicaExclusionDataList) GetDataOk added in v0.4.0

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

func (*AlterBrokerReplicaExclusionDataList) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*AlterBrokerReplicaExclusionDataList) GetKindOk added in v0.4.0

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

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

func (*AlterBrokerReplicaExclusionDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*AlterBrokerReplicaExclusionDataList) GetMetadataOk added in v0.4.0

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

func (AlterBrokerReplicaExclusionDataList) MarshalJSON added in v0.4.0

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

func (*AlterBrokerReplicaExclusionDataList) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterBrokerReplicaExclusionDataList) SetData added in v0.4.0

SetData sets field value

func (*AlterBrokerReplicaExclusionDataList) SetKind added in v0.4.0

SetKind sets field value

func (*AlterBrokerReplicaExclusionDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type AlterBrokerReplicaExclusionDataListAllOf

type AlterBrokerReplicaExclusionDataListAllOf struct {
	Data []AlterBrokerReplicaExclusionData `json:"data,omitempty"`
}

AlterBrokerReplicaExclusionDataListAllOf struct for AlterBrokerReplicaExclusionDataListAllOf

func NewAlterBrokerReplicaExclusionDataListAllOf added in v0.4.0

func NewAlterBrokerReplicaExclusionDataListAllOf(data []AlterBrokerReplicaExclusionData) *AlterBrokerReplicaExclusionDataListAllOf

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

func NewAlterBrokerReplicaExclusionDataListAllOfWithDefaults added in v0.4.0

func NewAlterBrokerReplicaExclusionDataListAllOfWithDefaults() *AlterBrokerReplicaExclusionDataListAllOf

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

func (*AlterBrokerReplicaExclusionDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*AlterBrokerReplicaExclusionDataListAllOf) GetDataOk added in v0.4.0

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

func (AlterBrokerReplicaExclusionDataListAllOf) MarshalJSON added in v0.4.0

func (*AlterBrokerReplicaExclusionDataListAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterBrokerReplicaExclusionDataListAllOf) SetData added in v0.4.0

SetData sets field value

type AlterConfigBatchRequestData

type AlterConfigBatchRequestData struct {
	Data         []AlterConfigBatchRequestDataData `json:"data,omitempty"`
	ValidateOnly *bool                             `json:"validate_only,omitempty"`
}

AlterConfigBatchRequestData struct for AlterConfigBatchRequestData

func NewAlterConfigBatchRequestData added in v0.4.0

func NewAlterConfigBatchRequestData(data []AlterConfigBatchRequestDataData) *AlterConfigBatchRequestData

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

func NewAlterConfigBatchRequestDataWithDefaults added in v0.4.0

func NewAlterConfigBatchRequestDataWithDefaults() *AlterConfigBatchRequestData

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

func (*AlterConfigBatchRequestData) GetData added in v0.4.0

GetData returns the Data field value

func (*AlterConfigBatchRequestData) GetDataOk added in v0.4.0

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

func (*AlterConfigBatchRequestData) GetValidateOnly added in v0.12.0

func (o *AlterConfigBatchRequestData) GetValidateOnly() bool

GetValidateOnly returns the ValidateOnly field value if set, zero value otherwise.

func (*AlterConfigBatchRequestData) GetValidateOnlyOk added in v0.12.0

func (o *AlterConfigBatchRequestData) GetValidateOnlyOk() (*bool, bool)

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

func (*AlterConfigBatchRequestData) HasValidateOnly added in v0.12.0

func (o *AlterConfigBatchRequestData) HasValidateOnly() bool

HasValidateOnly returns a boolean if a field has been set.

func (AlterConfigBatchRequestData) MarshalJSON added in v0.4.0

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

func (*AlterConfigBatchRequestData) Redact added in v0.4.0

func (o *AlterConfigBatchRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AlterConfigBatchRequestData) SetData added in v0.4.0

SetData sets field value

func (*AlterConfigBatchRequestData) SetValidateOnly added in v0.12.0

func (o *AlterConfigBatchRequestData) SetValidateOnly(v bool)

SetValidateOnly gets a reference to the given bool and assigns it to the ValidateOnly field.

type AlterConfigBatchRequestDataData

type AlterConfigBatchRequestDataData struct {
	Name      string         `json:"name,omitempty"`
	Value     NullableString `json:"value,omitempty"`
	Operation NullableString `json:"operation,omitempty"`
}

AlterConfigBatchRequestDataData struct for AlterConfigBatchRequestDataData

func NewAlterConfigBatchRequestDataData added in v0.4.0

func NewAlterConfigBatchRequestDataData(name string) *AlterConfigBatchRequestDataData

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

func NewAlterConfigBatchRequestDataDataWithDefaults added in v0.4.0

func NewAlterConfigBatchRequestDataDataWithDefaults() *AlterConfigBatchRequestDataData

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

func (*AlterConfigBatchRequestDataData) GetName added in v0.4.0

GetName returns the Name field value

func (*AlterConfigBatchRequestDataData) GetNameOk added in v0.4.0

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

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

func (*AlterConfigBatchRequestDataData) GetOperation added in v0.4.0

func (o *AlterConfigBatchRequestDataData) GetOperation() string

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

func (*AlterConfigBatchRequestDataData) GetOperationOk added in v0.4.0

func (o *AlterConfigBatchRequestDataData) GetOperationOk() (*string, bool)

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

func (*AlterConfigBatchRequestDataData) GetValue added in v0.4.0

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

func (*AlterConfigBatchRequestDataData) GetValueOk added in v0.4.0

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

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

func (*AlterConfigBatchRequestDataData) HasOperation added in v0.4.0

func (o *AlterConfigBatchRequestDataData) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*AlterConfigBatchRequestDataData) HasValue added in v0.4.0

func (o *AlterConfigBatchRequestDataData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AlterConfigBatchRequestDataData) MarshalJSON added in v0.4.0

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

func (*AlterConfigBatchRequestDataData) Redact added in v0.4.0

func (o *AlterConfigBatchRequestDataData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AlterConfigBatchRequestDataData) SetName added in v0.4.0

SetName sets field value

func (*AlterConfigBatchRequestDataData) SetOperation added in v0.4.0

func (o *AlterConfigBatchRequestDataData) SetOperation(v string)

SetOperation gets a reference to the given NullableString and assigns it to the Operation field.

func (*AlterConfigBatchRequestDataData) SetOperationNil added in v0.4.0

func (o *AlterConfigBatchRequestDataData) SetOperationNil()

SetOperationNil sets the value for Operation to be an explicit nil

func (*AlterConfigBatchRequestDataData) SetValue added in v0.4.0

func (o *AlterConfigBatchRequestDataData) SetValue(v string)

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

func (*AlterConfigBatchRequestDataData) SetValueNil added in v0.4.0

func (o *AlterConfigBatchRequestDataData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*AlterConfigBatchRequestDataData) UnsetOperation added in v0.4.0

func (o *AlterConfigBatchRequestDataData) UnsetOperation()

UnsetOperation ensures that no value is present for Operation, not even an explicit nil

func (*AlterConfigBatchRequestDataData) UnsetValue added in v0.4.0

func (o *AlterConfigBatchRequestDataData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type AlterMirrorStatusResponseData

type AlterMirrorStatusResponseData struct {
	Kind            string           `json:"kind,omitempty"`
	Metadata        ResourceMetadata `json:"metadata,omitempty"`
	MirrorTopicName string           `json:"mirror_topic_name,omitempty"`
	ErrorMessage    NullableString   `json:"error_message,omitempty"`
	ErrorCode       NullableInt32    `json:"error_code,omitempty"`
	MirrorLags      MirrorLags       `json:"mirror_lags,omitempty"`
}

AlterMirrorStatusResponseData struct for AlterMirrorStatusResponseData

func NewAlterMirrorStatusResponseData added in v0.4.0

func NewAlterMirrorStatusResponseData(kind string, metadata ResourceMetadata, mirrorTopicName string, errorMessage NullableString, errorCode NullableInt32, mirrorLags MirrorLags) *AlterMirrorStatusResponseData

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

func NewAlterMirrorStatusResponseDataWithDefaults added in v0.4.0

func NewAlterMirrorStatusResponseDataWithDefaults() *AlterMirrorStatusResponseData

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

func (*AlterMirrorStatusResponseData) GetErrorCode added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value If the value is explicit nil, the zero value for int32 will be returned

func (*AlterMirrorStatusResponseData) GetErrorCodeOk added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetErrorCodeOk() (*int32, bool)

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

func (*AlterMirrorStatusResponseData) GetErrorMessage added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value If the value is explicit nil, the zero value for string will be returned

func (*AlterMirrorStatusResponseData) GetErrorMessageOk added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetErrorMessageOk() (*string, bool)

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

func (*AlterMirrorStatusResponseData) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*AlterMirrorStatusResponseData) GetKindOk added in v0.4.0

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

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

func (*AlterMirrorStatusResponseData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*AlterMirrorStatusResponseData) GetMetadataOk added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*AlterMirrorStatusResponseData) GetMirrorLags added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetMirrorLags() MirrorLags

GetMirrorLags returns the MirrorLags field value

func (*AlterMirrorStatusResponseData) GetMirrorLagsOk added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetMirrorLagsOk() (*MirrorLags, bool)

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

func (*AlterMirrorStatusResponseData) GetMirrorTopicName added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetMirrorTopicName() string

GetMirrorTopicName returns the MirrorTopicName field value

func (*AlterMirrorStatusResponseData) GetMirrorTopicNameOk added in v0.4.0

func (o *AlterMirrorStatusResponseData) GetMirrorTopicNameOk() (*string, bool)

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

func (AlterMirrorStatusResponseData) MarshalJSON added in v0.4.0

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

func (*AlterMirrorStatusResponseData) Redact added in v0.4.0

func (o *AlterMirrorStatusResponseData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AlterMirrorStatusResponseData) SetErrorCode added in v0.4.0

func (o *AlterMirrorStatusResponseData) SetErrorCode(v int32)

SetErrorCode sets field value

func (*AlterMirrorStatusResponseData) SetErrorMessage added in v0.4.0

func (o *AlterMirrorStatusResponseData) SetErrorMessage(v string)

SetErrorMessage sets field value

func (*AlterMirrorStatusResponseData) SetKind added in v0.4.0

func (o *AlterMirrorStatusResponseData) SetKind(v string)

SetKind sets field value

func (*AlterMirrorStatusResponseData) SetMetadata added in v0.4.0

SetMetadata sets field value

func (*AlterMirrorStatusResponseData) SetMirrorLags added in v0.4.0

func (o *AlterMirrorStatusResponseData) SetMirrorLags(v MirrorLags)

SetMirrorLags sets field value

func (*AlterMirrorStatusResponseData) SetMirrorTopicName added in v0.4.0

func (o *AlterMirrorStatusResponseData) SetMirrorTopicName(v string)

SetMirrorTopicName sets field value

type AlterMirrorStatusResponseDataAllOf

type AlterMirrorStatusResponseDataAllOf struct {
	MirrorTopicName string         `json:"mirror_topic_name,omitempty"`
	ErrorMessage    NullableString `json:"error_message,omitempty"`
	ErrorCode       NullableInt32  `json:"error_code,omitempty"`
	MirrorLags      MirrorLags     `json:"mirror_lags,omitempty"`
}

AlterMirrorStatusResponseDataAllOf struct for AlterMirrorStatusResponseDataAllOf

func NewAlterMirrorStatusResponseDataAllOf added in v0.4.0

func NewAlterMirrorStatusResponseDataAllOf(mirrorTopicName string, errorMessage NullableString, errorCode NullableInt32, mirrorLags MirrorLags) *AlterMirrorStatusResponseDataAllOf

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

func NewAlterMirrorStatusResponseDataAllOfWithDefaults added in v0.4.0

func NewAlterMirrorStatusResponseDataAllOfWithDefaults() *AlterMirrorStatusResponseDataAllOf

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

func (*AlterMirrorStatusResponseDataAllOf) GetErrorCode added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value If the value is explicit nil, the zero value for int32 will be returned

func (*AlterMirrorStatusResponseDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetErrorCodeOk() (*int32, bool)

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

func (*AlterMirrorStatusResponseDataAllOf) GetErrorMessage added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value If the value is explicit nil, the zero value for string will be returned

func (*AlterMirrorStatusResponseDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetErrorMessageOk() (*string, bool)

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

func (*AlterMirrorStatusResponseDataAllOf) GetMirrorLags added in v0.4.0

GetMirrorLags returns the MirrorLags field value

func (*AlterMirrorStatusResponseDataAllOf) GetMirrorLagsOk added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetMirrorLagsOk() (*MirrorLags, bool)

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

func (*AlterMirrorStatusResponseDataAllOf) GetMirrorTopicName added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetMirrorTopicName() string

GetMirrorTopicName returns the MirrorTopicName field value

func (*AlterMirrorStatusResponseDataAllOf) GetMirrorTopicNameOk added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) GetMirrorTopicNameOk() (*string, bool)

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

func (AlterMirrorStatusResponseDataAllOf) MarshalJSON added in v0.4.0

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

func (*AlterMirrorStatusResponseDataAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterMirrorStatusResponseDataAllOf) SetErrorCode added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) SetErrorCode(v int32)

SetErrorCode sets field value

func (*AlterMirrorStatusResponseDataAllOf) SetErrorMessage added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) SetErrorMessage(v string)

SetErrorMessage sets field value

func (*AlterMirrorStatusResponseDataAllOf) SetMirrorLags added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) SetMirrorLags(v MirrorLags)

SetMirrorLags sets field value

func (*AlterMirrorStatusResponseDataAllOf) SetMirrorTopicName added in v0.4.0

func (o *AlterMirrorStatusResponseDataAllOf) SetMirrorTopicName(v string)

SetMirrorTopicName sets field value

type AlterMirrorStatusResponseDataList

type AlterMirrorStatusResponseDataList struct {
	Kind     string                          `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata      `json:"metadata,omitempty"`
	Data     []AlterMirrorStatusResponseData `json:"data,omitempty"`
}

AlterMirrorStatusResponseDataList struct for AlterMirrorStatusResponseDataList

func NewAlterMirrorStatusResponseDataList added in v0.4.0

func NewAlterMirrorStatusResponseDataList(kind string, metadata ResourceCollectionMetadata, data []AlterMirrorStatusResponseData) *AlterMirrorStatusResponseDataList

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

func NewAlterMirrorStatusResponseDataListWithDefaults added in v0.4.0

func NewAlterMirrorStatusResponseDataListWithDefaults() *AlterMirrorStatusResponseDataList

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

func (*AlterMirrorStatusResponseDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*AlterMirrorStatusResponseDataList) GetDataOk added in v0.4.0

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

func (*AlterMirrorStatusResponseDataList) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*AlterMirrorStatusResponseDataList) GetKindOk added in v0.4.0

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

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

func (*AlterMirrorStatusResponseDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*AlterMirrorStatusResponseDataList) GetMetadataOk added in v0.4.0

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

func (AlterMirrorStatusResponseDataList) MarshalJSON added in v0.4.0

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

func (*AlterMirrorStatusResponseDataList) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterMirrorStatusResponseDataList) SetData added in v0.4.0

SetData sets field value

func (*AlterMirrorStatusResponseDataList) SetKind added in v0.4.0

SetKind sets field value

func (*AlterMirrorStatusResponseDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type AlterMirrorStatusResponseDataListAllOf

type AlterMirrorStatusResponseDataListAllOf struct {
	Data []AlterMirrorStatusResponseData `json:"data,omitempty"`
}

AlterMirrorStatusResponseDataListAllOf struct for AlterMirrorStatusResponseDataListAllOf

func NewAlterMirrorStatusResponseDataListAllOf added in v0.4.0

func NewAlterMirrorStatusResponseDataListAllOf(data []AlterMirrorStatusResponseData) *AlterMirrorStatusResponseDataListAllOf

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

func NewAlterMirrorStatusResponseDataListAllOfWithDefaults added in v0.4.0

func NewAlterMirrorStatusResponseDataListAllOfWithDefaults() *AlterMirrorStatusResponseDataListAllOf

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

func (*AlterMirrorStatusResponseDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*AlterMirrorStatusResponseDataListAllOf) GetDataOk added in v0.4.0

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

func (AlterMirrorStatusResponseDataListAllOf) MarshalJSON added in v0.4.0

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

func (*AlterMirrorStatusResponseDataListAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*AlterMirrorStatusResponseDataListAllOf) SetData added in v0.4.0

SetData sets field value

type AlterMirrorsRequestData

type AlterMirrorsRequestData struct {
	// The mirror topics specified as a list of topic names.
	MirrorTopicNames *[]string `json:"mirror_topic_names,omitempty"`
	// The mirror topics specified as a pattern.
	MirrorTopicNamePattern *string `json:"mirror_topic_name_pattern,omitempty"`
}

AlterMirrorsRequestData struct for AlterMirrorsRequestData

func NewAlterMirrorsRequestData added in v0.4.0

func NewAlterMirrorsRequestData() *AlterMirrorsRequestData

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

func NewAlterMirrorsRequestDataWithDefaults added in v0.4.0

func NewAlterMirrorsRequestDataWithDefaults() *AlterMirrorsRequestData

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

func (*AlterMirrorsRequestData) GetMirrorTopicNamePattern added in v0.14.0

func (o *AlterMirrorsRequestData) GetMirrorTopicNamePattern() string

GetMirrorTopicNamePattern returns the MirrorTopicNamePattern field value if set, zero value otherwise.

func (*AlterMirrorsRequestData) GetMirrorTopicNamePatternOk added in v0.14.0

func (o *AlterMirrorsRequestData) GetMirrorTopicNamePatternOk() (*string, bool)

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

func (*AlterMirrorsRequestData) GetMirrorTopicNames added in v0.4.0

func (o *AlterMirrorsRequestData) GetMirrorTopicNames() []string

GetMirrorTopicNames returns the MirrorTopicNames field value if set, zero value otherwise.

func (*AlterMirrorsRequestData) GetMirrorTopicNamesOk added in v0.4.0

func (o *AlterMirrorsRequestData) GetMirrorTopicNamesOk() (*[]string, bool)

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

func (*AlterMirrorsRequestData) HasMirrorTopicNamePattern added in v0.14.0

func (o *AlterMirrorsRequestData) HasMirrorTopicNamePattern() bool

HasMirrorTopicNamePattern returns a boolean if a field has been set.

func (*AlterMirrorsRequestData) HasMirrorTopicNames added in v0.14.0

func (o *AlterMirrorsRequestData) HasMirrorTopicNames() bool

HasMirrorTopicNames returns a boolean if a field has been set.

func (AlterMirrorsRequestData) MarshalJSON added in v0.4.0

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

func (*AlterMirrorsRequestData) Redact added in v0.4.0

func (o *AlterMirrorsRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AlterMirrorsRequestData) SetMirrorTopicNamePattern added in v0.14.0

func (o *AlterMirrorsRequestData) SetMirrorTopicNamePattern(v string)

SetMirrorTopicNamePattern gets a reference to the given string and assigns it to the MirrorTopicNamePattern field.

func (*AlterMirrorsRequestData) SetMirrorTopicNames added in v0.4.0

func (o *AlterMirrorsRequestData) SetMirrorTopicNames(v []string)

SetMirrorTopicNames gets a reference to the given []string and assigns it to the MirrorTopicNames field.

type AnyUnevenLoadData

type AnyUnevenLoadData struct {
	Kind           string           `json:"kind,omitempty"`
	Metadata       ResourceMetadata `json:"metadata,omitempty"`
	ClusterId      string           `json:"cluster_id,omitempty"`
	Status         string           `json:"status,omitempty"`
	PreviousStatus string           `json:"previous_status,omitempty"`
	// The date and time at which this task was created.
	StatusUpdatedAt time.Time `json:"status_updated_at,omitempty"`
	// The date and time at which this task was created.
	PreviousStatusUpdatedAt time.Time      `json:"previous_status_updated_at,omitempty"`
	ErrorCode               NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage            NullableString `json:"error_message,omitempty"`
	BrokerTasks             Relationship   `json:"broker_tasks,omitempty"`
}

AnyUnevenLoadData struct for AnyUnevenLoadData

func NewAnyUnevenLoadData added in v0.4.0

func NewAnyUnevenLoadData(kind string, metadata ResourceMetadata, clusterId string, status string, previousStatus string, statusUpdatedAt time.Time, previousStatusUpdatedAt time.Time, brokerTasks Relationship) *AnyUnevenLoadData

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

func NewAnyUnevenLoadDataWithDefaults added in v0.4.0

func NewAnyUnevenLoadDataWithDefaults() *AnyUnevenLoadData

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

func (*AnyUnevenLoadData) GetBrokerTasks added in v0.4.0

func (o *AnyUnevenLoadData) GetBrokerTasks() Relationship

GetBrokerTasks returns the BrokerTasks field value

func (*AnyUnevenLoadData) GetBrokerTasksOk added in v0.4.0

func (o *AnyUnevenLoadData) GetBrokerTasksOk() (*Relationship, bool)

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

func (*AnyUnevenLoadData) GetClusterId added in v0.4.0

func (o *AnyUnevenLoadData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AnyUnevenLoadData) GetClusterIdOk added in v0.4.0

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

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

func (*AnyUnevenLoadData) GetErrorCode added in v0.4.0

func (o *AnyUnevenLoadData) GetErrorCode() int32

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

func (*AnyUnevenLoadData) GetErrorCodeOk added in v0.4.0

func (o *AnyUnevenLoadData) GetErrorCodeOk() (*int32, bool)

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

func (*AnyUnevenLoadData) GetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadData) GetErrorMessage() string

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

func (*AnyUnevenLoadData) GetErrorMessageOk added in v0.4.0

func (o *AnyUnevenLoadData) GetErrorMessageOk() (*string, bool)

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

func (*AnyUnevenLoadData) GetKind added in v0.4.0

func (o *AnyUnevenLoadData) GetKind() string

GetKind returns the Kind field value

func (*AnyUnevenLoadData) GetKindOk added in v0.4.0

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

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

func (*AnyUnevenLoadData) GetMetadata added in v0.4.0

func (o *AnyUnevenLoadData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*AnyUnevenLoadData) GetMetadataOk added in v0.4.0

func (o *AnyUnevenLoadData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*AnyUnevenLoadData) GetPreviousStatus added in v0.4.0

func (o *AnyUnevenLoadData) GetPreviousStatus() string

GetPreviousStatus returns the PreviousStatus field value

func (*AnyUnevenLoadData) GetPreviousStatusOk added in v0.4.0

func (o *AnyUnevenLoadData) GetPreviousStatusOk() (*string, bool)

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

func (*AnyUnevenLoadData) GetPreviousStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadData) GetPreviousStatusUpdatedAt() time.Time

GetPreviousStatusUpdatedAt returns the PreviousStatusUpdatedAt field value

func (*AnyUnevenLoadData) GetPreviousStatusUpdatedAtOk added in v0.4.0

func (o *AnyUnevenLoadData) GetPreviousStatusUpdatedAtOk() (*time.Time, bool)

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

func (*AnyUnevenLoadData) GetStatus added in v0.4.0

func (o *AnyUnevenLoadData) GetStatus() string

GetStatus returns the Status field value

func (*AnyUnevenLoadData) GetStatusOk added in v0.4.0

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

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

func (*AnyUnevenLoadData) GetStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadData) GetStatusUpdatedAt() time.Time

GetStatusUpdatedAt returns the StatusUpdatedAt field value

func (*AnyUnevenLoadData) GetStatusUpdatedAtOk added in v0.4.0

func (o *AnyUnevenLoadData) GetStatusUpdatedAtOk() (*time.Time, bool)

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

func (*AnyUnevenLoadData) HasErrorCode added in v0.4.0

func (o *AnyUnevenLoadData) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*AnyUnevenLoadData) HasErrorMessage added in v0.4.0

func (o *AnyUnevenLoadData) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (AnyUnevenLoadData) MarshalJSON added in v0.4.0

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

func (*AnyUnevenLoadData) Redact added in v0.4.0

func (o *AnyUnevenLoadData) Redact()

Redact resets all sensitive fields to their zero value.

func (*AnyUnevenLoadData) SetBrokerTasks added in v0.4.0

func (o *AnyUnevenLoadData) SetBrokerTasks(v Relationship)

SetBrokerTasks sets field value

func (*AnyUnevenLoadData) SetClusterId added in v0.4.0

func (o *AnyUnevenLoadData) SetClusterId(v string)

SetClusterId sets field value

func (*AnyUnevenLoadData) SetErrorCode added in v0.4.0

func (o *AnyUnevenLoadData) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*AnyUnevenLoadData) SetErrorCodeNil added in v0.4.0

func (o *AnyUnevenLoadData) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*AnyUnevenLoadData) SetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadData) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*AnyUnevenLoadData) SetErrorMessageNil added in v0.4.0

func (o *AnyUnevenLoadData) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AnyUnevenLoadData) SetKind added in v0.4.0

func (o *AnyUnevenLoadData) SetKind(v string)

SetKind sets field value

func (*AnyUnevenLoadData) SetMetadata added in v0.4.0

func (o *AnyUnevenLoadData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*AnyUnevenLoadData) SetPreviousStatus added in v0.4.0

func (o *AnyUnevenLoadData) SetPreviousStatus(v string)

SetPreviousStatus sets field value

func (*AnyUnevenLoadData) SetPreviousStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadData) SetPreviousStatusUpdatedAt(v time.Time)

SetPreviousStatusUpdatedAt sets field value

func (*AnyUnevenLoadData) SetStatus added in v0.4.0

func (o *AnyUnevenLoadData) SetStatus(v string)

SetStatus sets field value

func (*AnyUnevenLoadData) SetStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadData) SetStatusUpdatedAt(v time.Time)

SetStatusUpdatedAt sets field value

func (*AnyUnevenLoadData) UnsetErrorCode added in v0.4.0

func (o *AnyUnevenLoadData) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*AnyUnevenLoadData) UnsetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadData) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type AnyUnevenLoadDataAllOf

type AnyUnevenLoadDataAllOf struct {
	ClusterId      string `json:"cluster_id,omitempty"`
	Status         string `json:"status,omitempty"`
	PreviousStatus string `json:"previous_status,omitempty"`
	// The date and time at which this task was created.
	StatusUpdatedAt time.Time `json:"status_updated_at,omitempty"`
	// The date and time at which this task was created.
	PreviousStatusUpdatedAt time.Time      `json:"previous_status_updated_at,omitempty"`
	ErrorCode               NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage            NullableString `json:"error_message,omitempty"`
	BrokerTasks             Relationship   `json:"broker_tasks,omitempty"`
}

AnyUnevenLoadDataAllOf struct for AnyUnevenLoadDataAllOf

func NewAnyUnevenLoadDataAllOf added in v0.4.0

func NewAnyUnevenLoadDataAllOf(clusterId string, status string, previousStatus string, statusUpdatedAt time.Time, previousStatusUpdatedAt time.Time, brokerTasks Relationship) *AnyUnevenLoadDataAllOf

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

func NewAnyUnevenLoadDataAllOfWithDefaults added in v0.4.0

func NewAnyUnevenLoadDataAllOfWithDefaults() *AnyUnevenLoadDataAllOf

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

func (*AnyUnevenLoadDataAllOf) GetBrokerTasks added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetBrokerTasks() Relationship

GetBrokerTasks returns the BrokerTasks field value

func (*AnyUnevenLoadDataAllOf) GetBrokerTasksOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetBrokerTasksOk() (*Relationship, bool)

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

func (*AnyUnevenLoadDataAllOf) GetClusterId added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*AnyUnevenLoadDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*AnyUnevenLoadDataAllOf) GetErrorCode added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetErrorCode() int32

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

func (*AnyUnevenLoadDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetErrorCodeOk() (*int32, bool)

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

func (*AnyUnevenLoadDataAllOf) GetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetErrorMessage() string

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

func (*AnyUnevenLoadDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetErrorMessageOk() (*string, bool)

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

func (*AnyUnevenLoadDataAllOf) GetPreviousStatus added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetPreviousStatus() string

GetPreviousStatus returns the PreviousStatus field value

func (*AnyUnevenLoadDataAllOf) GetPreviousStatusOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetPreviousStatusOk() (*string, bool)

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

func (*AnyUnevenLoadDataAllOf) GetPreviousStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetPreviousStatusUpdatedAt() time.Time

GetPreviousStatusUpdatedAt returns the PreviousStatusUpdatedAt field value

func (*AnyUnevenLoadDataAllOf) GetPreviousStatusUpdatedAtOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetPreviousStatusUpdatedAtOk() (*time.Time, bool)

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

func (*AnyUnevenLoadDataAllOf) GetStatus added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetStatus() string

GetStatus returns the Status field value

func (*AnyUnevenLoadDataAllOf) GetStatusOk added in v0.4.0

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

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

func (*AnyUnevenLoadDataAllOf) GetStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetStatusUpdatedAt() time.Time

GetStatusUpdatedAt returns the StatusUpdatedAt field value

func (*AnyUnevenLoadDataAllOf) GetStatusUpdatedAtOk added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) GetStatusUpdatedAtOk() (*time.Time, bool)

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

func (*AnyUnevenLoadDataAllOf) HasErrorCode added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*AnyUnevenLoadDataAllOf) HasErrorMessage added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (AnyUnevenLoadDataAllOf) MarshalJSON added in v0.4.0

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

func (*AnyUnevenLoadDataAllOf) Redact added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*AnyUnevenLoadDataAllOf) SetBrokerTasks added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetBrokerTasks(v Relationship)

SetBrokerTasks sets field value

func (*AnyUnevenLoadDataAllOf) SetClusterId added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*AnyUnevenLoadDataAllOf) SetErrorCode added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*AnyUnevenLoadDataAllOf) SetErrorCodeNil added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*AnyUnevenLoadDataAllOf) SetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*AnyUnevenLoadDataAllOf) SetErrorMessageNil added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*AnyUnevenLoadDataAllOf) SetPreviousStatus added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetPreviousStatus(v string)

SetPreviousStatus sets field value

func (*AnyUnevenLoadDataAllOf) SetPreviousStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetPreviousStatusUpdatedAt(v time.Time)

SetPreviousStatusUpdatedAt sets field value

func (*AnyUnevenLoadDataAllOf) SetStatus added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetStatus(v string)

SetStatus sets field value

func (*AnyUnevenLoadDataAllOf) SetStatusUpdatedAt added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) SetStatusUpdatedAt(v time.Time)

SetStatusUpdatedAt sets field value

func (*AnyUnevenLoadDataAllOf) UnsetErrorCode added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*AnyUnevenLoadDataAllOf) UnsetErrorMessage added in v0.4.0

func (o *AnyUnevenLoadDataAllOf) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type ApiBatchCreateKafkaAclsRequest added in v0.14.0

type ApiBatchCreateKafkaAclsRequest struct {
	ApiService ACLV3Api
	// contains filtered or unexported fields
}

func (ApiBatchCreateKafkaAclsRequest) CreateAclRequestDataList added in v0.14.0

func (r ApiBatchCreateKafkaAclsRequest) CreateAclRequestDataList(createAclRequestDataList CreateAclRequestDataList) ApiBatchCreateKafkaAclsRequest

The batch ACL creation request.

func (ApiBatchCreateKafkaAclsRequest) Execute added in v0.14.0

type ApiCreateKafkaAclsRequest added in v0.4.0

type ApiCreateKafkaAclsRequest struct {
	ApiService ACLV3Api
	// contains filtered or unexported fields
}

func (ApiCreateKafkaAclsRequest) CreateAclRequestData added in v0.4.0

func (r ApiCreateKafkaAclsRequest) CreateAclRequestData(createAclRequestData CreateAclRequestData) ApiCreateKafkaAclsRequest

The ACL creation request.

func (ApiCreateKafkaAclsRequest) Execute added in v0.4.0

type ApiCreateKafkaLinkRequest added in v0.4.0

type ApiCreateKafkaLinkRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiCreateKafkaLinkRequest) CreateLinkRequestData added in v0.4.0

func (r ApiCreateKafkaLinkRequest) CreateLinkRequestData(createLinkRequestData CreateLinkRequestData) ApiCreateKafkaLinkRequest

Create a cluster link

func (ApiCreateKafkaLinkRequest) Execute added in v0.4.0

func (ApiCreateKafkaLinkRequest) LinkName added in v0.4.0

The link name

func (r ApiCreateKafkaLinkRequest) ValidateLink(validateLink bool) ApiCreateKafkaLinkRequest

To synchronously validate that the source cluster ID is expected and the dest cluster has the permission to read topics in the source cluster. Default: true

func (ApiCreateKafkaLinkRequest) ValidateOnly added in v0.4.0

func (r ApiCreateKafkaLinkRequest) ValidateOnly(validateOnly bool) ApiCreateKafkaLinkRequest

To validate the action can be performed successfully or not. Default: false

type ApiCreateKafkaMirrorTopicRequest added in v0.4.0

type ApiCreateKafkaMirrorTopicRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiCreateKafkaMirrorTopicRequest) CreateMirrorTopicRequestData added in v0.4.0

func (r ApiCreateKafkaMirrorTopicRequest) CreateMirrorTopicRequestData(createMirrorTopicRequestData CreateMirrorTopicRequestData) ApiCreateKafkaMirrorTopicRequest

Name and configs of the topics mirroring from and mirroring to. Note that Confluent Cloud allows only specific replication factor values. Because of that the replication factor field should either be omitted or it should use one of the allowed values (see https://docs.confluent.io/cloud/current/client-apps/optimizing/durability.html).

func (ApiCreateKafkaMirrorTopicRequest) Execute added in v0.4.0

type ApiCreateKafkaTopicRequest added in v0.4.0

type ApiCreateKafkaTopicRequest struct {
	ApiService TopicV3Api
	// contains filtered or unexported fields
}

func (ApiCreateKafkaTopicRequest) CreateTopicRequestData added in v0.4.0

func (r ApiCreateKafkaTopicRequest) CreateTopicRequestData(createTopicRequestData CreateTopicRequestData) ApiCreateKafkaTopicRequest

The topic creation request. Note that Confluent Cloud allows only specific replication factor values. Because of that the replication factor field should either be omitted or it should use one of the allowed values (see https://docs.confluent.io/cloud/current/client-apps/optimizing/durability.html).

func (ApiCreateKafkaTopicRequest) Execute added in v0.4.0

type ApiDeleteKafkaAclsRequest added in v0.4.0

type ApiDeleteKafkaAclsRequest struct {
	ApiService ACLV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaAclsRequest) Execute added in v0.4.0

func (ApiDeleteKafkaAclsRequest) Host added in v0.4.0

The ACL host.

func (ApiDeleteKafkaAclsRequest) Operation added in v0.4.0

The ACL operation.

func (ApiDeleteKafkaAclsRequest) PatternType added in v0.4.0

func (r ApiDeleteKafkaAclsRequest) PatternType(patternType string) ApiDeleteKafkaAclsRequest

The ACL pattern type.

func (ApiDeleteKafkaAclsRequest) Permission added in v0.4.0

The ACL permission.

func (ApiDeleteKafkaAclsRequest) Principal added in v0.4.0

The ACL principal. This is the Service Account name or user name.

func (ApiDeleteKafkaAclsRequest) ResourceName added in v0.4.0

func (r ApiDeleteKafkaAclsRequest) ResourceName(resourceName string) ApiDeleteKafkaAclsRequest

The ACL resource name.

func (ApiDeleteKafkaAclsRequest) ResourceType added in v0.4.0

The ACL resource type.

type ApiDeleteKafkaClusterConfigRequest added in v0.4.0

type ApiDeleteKafkaClusterConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaClusterConfigRequest) Execute added in v0.4.0

type ApiDeleteKafkaLinkConfigRequest added in v0.4.0

type ApiDeleteKafkaLinkConfigRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaLinkConfigRequest) Execute added in v0.4.0

type ApiDeleteKafkaLinkRequest added in v0.4.0

type ApiDeleteKafkaLinkRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaLinkRequest) Execute added in v0.4.0

func (ApiDeleteKafkaLinkRequest) Force added in v0.4.0

Force the action. Default: false

func (ApiDeleteKafkaLinkRequest) ValidateOnly added in v0.4.0

func (r ApiDeleteKafkaLinkRequest) ValidateOnly(validateOnly bool) ApiDeleteKafkaLinkRequest

To validate the action can be performed successfully or not. Default: false

type ApiDeleteKafkaTopicConfigRequest added in v0.4.0

type ApiDeleteKafkaTopicConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaTopicConfigRequest) Execute added in v0.4.0

type ApiDeleteKafkaTopicRequest added in v0.4.0

type ApiDeleteKafkaTopicRequest struct {
	ApiService TopicV3Api
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaTopicRequest) Execute added in v0.4.0

type ApiGetKafkaAclsRequest added in v0.4.0

type ApiGetKafkaAclsRequest struct {
	ApiService ACLV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaAclsRequest) Execute added in v0.4.0

func (ApiGetKafkaAclsRequest) Host added in v0.4.0

The ACL host.

func (ApiGetKafkaAclsRequest) Operation added in v0.4.0

func (r ApiGetKafkaAclsRequest) Operation(operation string) ApiGetKafkaAclsRequest

The ACL operation.

func (ApiGetKafkaAclsRequest) PatternType added in v0.4.0

func (r ApiGetKafkaAclsRequest) PatternType(patternType string) ApiGetKafkaAclsRequest

The ACL pattern type.

func (ApiGetKafkaAclsRequest) Permission added in v0.4.0

func (r ApiGetKafkaAclsRequest) Permission(permission string) ApiGetKafkaAclsRequest

The ACL permission.

func (ApiGetKafkaAclsRequest) Principal added in v0.4.0

func (r ApiGetKafkaAclsRequest) Principal(principal string) ApiGetKafkaAclsRequest

The ACL principal. This is the Service Account name or user name.

func (ApiGetKafkaAclsRequest) ResourceName added in v0.4.0

func (r ApiGetKafkaAclsRequest) ResourceName(resourceName string) ApiGetKafkaAclsRequest

The ACL resource name.

func (ApiGetKafkaAclsRequest) ResourceType added in v0.4.0

func (r ApiGetKafkaAclsRequest) ResourceType(resourceType AclResourceType) ApiGetKafkaAclsRequest

The ACL resource type.

type ApiGetKafkaClusterConfigRequest added in v0.4.0

type ApiGetKafkaClusterConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaClusterConfigRequest) Execute added in v0.4.0

type ApiGetKafkaClusterRequest added in v0.4.0

type ApiGetKafkaClusterRequest struct {
	ApiService ClusterV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaClusterRequest) Execute added in v0.4.0

type ApiGetKafkaConsumerGroupLagSummaryRequest added in v0.4.0

type ApiGetKafkaConsumerGroupLagSummaryRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaConsumerGroupLagSummaryRequest) Execute added in v0.4.0

type ApiGetKafkaConsumerGroupRequest added in v0.4.0

type ApiGetKafkaConsumerGroupRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaConsumerGroupRequest) Execute added in v0.4.0

type ApiGetKafkaConsumerLagRequest added in v0.4.0

type ApiGetKafkaConsumerLagRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaConsumerLagRequest) Execute added in v0.4.0

type ApiGetKafkaConsumerRequest added in v0.4.0

type ApiGetKafkaConsumerRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaConsumerRequest) Execute added in v0.4.0

type ApiGetKafkaLinkConfigsRequest added in v0.4.0

type ApiGetKafkaLinkConfigsRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaLinkConfigsRequest) Execute added in v0.4.0

type ApiGetKafkaLinkRequest added in v0.4.0

type ApiGetKafkaLinkRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaLinkRequest) Execute added in v0.4.0

func (ApiGetKafkaLinkRequest) IncludeTasks added in v0.18.0

func (r ApiGetKafkaLinkRequest) IncludeTasks(includeTasks bool) ApiGetKafkaLinkRequest

Whether to include cluster linking tasks in the response. Default: false

type ApiGetKafkaPartitionRequest added in v0.4.0

type ApiGetKafkaPartitionRequest struct {
	ApiService PartitionV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaPartitionRequest) Execute added in v0.4.0

type ApiGetKafkaTopicConfigRequest added in v0.4.0

type ApiGetKafkaTopicConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaTopicConfigRequest) Execute added in v0.4.0

type ApiGetKafkaTopicRequest added in v0.4.0

type ApiGetKafkaTopicRequest struct {
	ApiService TopicV3Api
	// contains filtered or unexported fields
}

func (ApiGetKafkaTopicRequest) Execute added in v0.4.0

func (ApiGetKafkaTopicRequest) IncludeAuthorizedOperations added in v0.14.0

func (r ApiGetKafkaTopicRequest) IncludeAuthorizedOperations(includeAuthorizedOperations bool) ApiGetKafkaTopicRequest

Specify if authorized operations should be included in the response.

type ApiListKafkaAllTopicConfigsRequest added in v0.4.0

type ApiListKafkaAllTopicConfigsRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaAllTopicConfigsRequest) Execute added in v0.4.0

type ApiListKafkaClusterConfigsRequest added in v0.4.0

type ApiListKafkaClusterConfigsRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaClusterConfigsRequest) Execute added in v0.4.0

type ApiListKafkaConsumerGroupsRequest added in v0.4.0

type ApiListKafkaConsumerGroupsRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaConsumerGroupsRequest) Execute added in v0.4.0

type ApiListKafkaConsumerLagsRequest added in v0.4.0

type ApiListKafkaConsumerLagsRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaConsumerLagsRequest) Execute added in v0.4.0

type ApiListKafkaConsumersRequest added in v0.4.0

type ApiListKafkaConsumersRequest struct {
	ApiService ConsumerGroupV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaConsumersRequest) Execute added in v0.4.0

type ApiListKafkaDefaultTopicConfigsRequest added in v0.4.0

type ApiListKafkaDefaultTopicConfigsRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaDefaultTopicConfigsRequest) Execute added in v0.4.0

type ApiListKafkaLinkConfigsRequest added in v0.4.0

type ApiListKafkaLinkConfigsRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaLinkConfigsRequest) Execute added in v0.4.0

type ApiListKafkaLinksRequest added in v0.4.0

type ApiListKafkaLinksRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaLinksRequest) Execute added in v0.4.0

type ApiListKafkaMirrorTopicsRequest added in v0.4.0

type ApiListKafkaMirrorTopicsRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaMirrorTopicsRequest) Execute added in v0.4.0

func (ApiListKafkaMirrorTopicsRequest) MirrorStatus added in v0.4.0

The status of the mirror topic. If not specified, all mirror topics will be returned.

type ApiListKafkaMirrorTopicsUnderLinkRequest added in v0.4.0

type ApiListKafkaMirrorTopicsUnderLinkRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaMirrorTopicsUnderLinkRequest) Execute added in v0.4.0

func (ApiListKafkaMirrorTopicsUnderLinkRequest) MirrorStatus added in v0.4.0

The status of the mirror topic. If not specified, all mirror topics will be returned.

type ApiListKafkaPartitionsRequest added in v0.4.0

type ApiListKafkaPartitionsRequest struct {
	ApiService PartitionV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaPartitionsRequest) Execute added in v0.4.0

type ApiListKafkaTopicConfigsRequest added in v0.4.0

type ApiListKafkaTopicConfigsRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaTopicConfigsRequest) Execute added in v0.4.0

type ApiListKafkaTopicsRequest added in v0.4.0

type ApiListKafkaTopicsRequest struct {
	ApiService TopicV3Api
	// contains filtered or unexported fields
}

func (ApiListKafkaTopicsRequest) Execute added in v0.4.0

type ApiProduceRecordRequest added in v0.14.0

type ApiProduceRecordRequest struct {
	ApiService RecordsV3Api
	// contains filtered or unexported fields
}

func (ApiProduceRecordRequest) Execute added in v0.14.0

func (ApiProduceRecordRequest) ProduceRequest added in v0.14.0

func (r ApiProduceRecordRequest) ProduceRequest(produceRequest ProduceRequest) ApiProduceRecordRequest

A single record to be produced to Kafka. To produce multiple records in the same request, simply concatenate the records. The delivery reports are concatenated in the same order as the records are sent.

type ApiReadKafkaMirrorTopicRequest added in v0.4.0

type ApiReadKafkaMirrorTopicRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiReadKafkaMirrorTopicRequest) Execute added in v0.4.0

func (ApiReadKafkaMirrorTopicRequest) IncludeStateTransitionErrors added in v0.18.0

func (r ApiReadKafkaMirrorTopicRequest) IncludeStateTransitionErrors(includeStateTransitionErrors bool) ApiReadKafkaMirrorTopicRequest

Whether to include mirror state transition errors in the response. Default: false

type ApiUpdateKafkaClusterConfigRequest added in v0.4.0

type ApiUpdateKafkaClusterConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaClusterConfigRequest) Execute added in v0.4.0

func (ApiUpdateKafkaClusterConfigRequest) UpdateConfigRequestData added in v0.4.0

func (r ApiUpdateKafkaClusterConfigRequest) UpdateConfigRequestData(updateConfigRequestData UpdateConfigRequestData) ApiUpdateKafkaClusterConfigRequest

The cluster configuration parameter update request.

type ApiUpdateKafkaClusterConfigsRequest added in v0.4.0

type ApiUpdateKafkaClusterConfigsRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaClusterConfigsRequest) AlterConfigBatchRequestData added in v0.4.0

func (r ApiUpdateKafkaClusterConfigsRequest) AlterConfigBatchRequestData(alterConfigBatchRequestData AlterConfigBatchRequestData) ApiUpdateKafkaClusterConfigsRequest

The alter cluster configuration parameter batch request.

func (ApiUpdateKafkaClusterConfigsRequest) Execute added in v0.4.0

type ApiUpdateKafkaLinkConfigBatchRequest added in v0.4.0

type ApiUpdateKafkaLinkConfigBatchRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaLinkConfigBatchRequest) AlterConfigBatchRequestData added in v0.4.0

func (r ApiUpdateKafkaLinkConfigBatchRequest) AlterConfigBatchRequestData(alterConfigBatchRequestData AlterConfigBatchRequestData) ApiUpdateKafkaLinkConfigBatchRequest

func (ApiUpdateKafkaLinkConfigBatchRequest) Execute added in v0.4.0

func (ApiUpdateKafkaLinkConfigBatchRequest) ValidateOnly added in v0.4.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaLinkConfigRequest added in v0.4.0

type ApiUpdateKafkaLinkConfigRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaLinkConfigRequest) Execute added in v0.4.0

func (ApiUpdateKafkaLinkConfigRequest) UpdateLinkConfigRequestData added in v0.4.0

func (r ApiUpdateKafkaLinkConfigRequest) UpdateLinkConfigRequestData(updateLinkConfigRequestData UpdateLinkConfigRequestData) ApiUpdateKafkaLinkConfigRequest

Link config value to update

type ApiUpdateKafkaMirrorTopicsFailoverRequest added in v0.4.0

type ApiUpdateKafkaMirrorTopicsFailoverRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsFailoverRequest) AlterMirrorsRequestData added in v0.4.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsFailoverRequest) Execute added in v0.4.0

func (ApiUpdateKafkaMirrorTopicsFailoverRequest) ValidateOnly added in v0.4.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaMirrorTopicsPauseRequest added in v0.4.0

type ApiUpdateKafkaMirrorTopicsPauseRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsPauseRequest) AlterMirrorsRequestData added in v0.4.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsPauseRequest) Execute added in v0.4.0

func (ApiUpdateKafkaMirrorTopicsPauseRequest) ValidateOnly added in v0.4.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaMirrorTopicsPromoteRequest added in v0.4.0

type ApiUpdateKafkaMirrorTopicsPromoteRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsPromoteRequest) AlterMirrorsRequestData added in v0.4.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsPromoteRequest) Execute added in v0.4.0

func (ApiUpdateKafkaMirrorTopicsPromoteRequest) ValidateOnly added in v0.4.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaMirrorTopicsResumeRequest added in v0.4.0

type ApiUpdateKafkaMirrorTopicsResumeRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsResumeRequest) AlterMirrorsRequestData added in v0.4.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsResumeRequest) Execute added in v0.4.0

func (ApiUpdateKafkaMirrorTopicsResumeRequest) ValidateOnly added in v0.4.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest added in v0.17.0

type ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest) AlterMirrorsRequestData added in v0.17.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest) Execute added in v0.17.0

func (ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest) ValidateOnly added in v0.17.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest added in v0.17.0

type ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest struct {
	ApiService ClusterLinkingV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest) AlterMirrorsRequestData added in v0.17.0

Mirror topics to be altered.

func (ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest) Execute added in v0.17.0

func (ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest) ValidateOnly added in v0.17.0

To validate the action can be performed successfully or not. Default: false

type ApiUpdateKafkaTopicConfigBatchRequest added in v0.4.0

type ApiUpdateKafkaTopicConfigBatchRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaTopicConfigBatchRequest) AlterConfigBatchRequestData added in v0.4.0

func (r ApiUpdateKafkaTopicConfigBatchRequest) AlterConfigBatchRequestData(alterConfigBatchRequestData AlterConfigBatchRequestData) ApiUpdateKafkaTopicConfigBatchRequest

The alter topic configuration parameter batch request.

func (ApiUpdateKafkaTopicConfigBatchRequest) Execute added in v0.4.0

type ApiUpdateKafkaTopicConfigRequest added in v0.4.0

type ApiUpdateKafkaTopicConfigRequest struct {
	ApiService ConfigsV3Api
	// contains filtered or unexported fields
}

func (ApiUpdateKafkaTopicConfigRequest) Execute added in v0.4.0

func (ApiUpdateKafkaTopicConfigRequest) UpdateConfigRequestData added in v0.4.0

func (r ApiUpdateKafkaTopicConfigRequest) UpdateConfigRequestData(updateConfigRequestData UpdateConfigRequestData) ApiUpdateKafkaTopicConfigRequest

The topic configuration parameter update request.

type ApiUpdatePartitionCountKafkaTopicRequest added in v0.13.0

type ApiUpdatePartitionCountKafkaTopicRequest struct {
	ApiService TopicV3Api
	// contains filtered or unexported fields
}

func (ApiUpdatePartitionCountKafkaTopicRequest) Execute added in v0.13.0

func (ApiUpdatePartitionCountKafkaTopicRequest) UpdatePartitionCountRequestData added in v0.13.0

func (r ApiUpdatePartitionCountKafkaTopicRequest) UpdatePartitionCountRequestData(updatePartitionCountRequestData UpdatePartitionCountRequestData) ApiUpdatePartitionCountKafkaTopicRequest

type AuthorizedOperations added in v0.14.0

type AuthorizedOperations struct {
	Items []string
}

AuthorizedOperations struct for AuthorizedOperations

func NewAuthorizedOperations added in v0.14.0

func NewAuthorizedOperations() *AuthorizedOperations

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

func NewAuthorizedOperationsWithDefaults added in v0.14.0

func NewAuthorizedOperationsWithDefaults() *AuthorizedOperations

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

func (AuthorizedOperations) MarshalJSON added in v0.14.0

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

func (*AuthorizedOperations) Redact added in v0.14.0

func (o *AuthorizedOperations) Redact()

Redact resets all sensitive fields to their zero value.

func (*AuthorizedOperations) UnmarshalJSON added in v0.14.0

func (o *AuthorizedOperations) UnmarshalJSON(bytes []byte) (err error)

type BalancerStatusData

type BalancerStatusData struct {
	Kind          string           `json:"kind,omitempty"`
	Metadata      ResourceMetadata `json:"metadata,omitempty"`
	ClusterId     string           `json:"cluster_id,omitempty"`
	Status        string           `json:"status,omitempty"`
	ErrorCode     NullableInt32    `json:"error_code,omitempty"`
	ErrorMessage  NullableString   `json:"error_message,omitempty"`
	AnyUnevenLoad Relationship     `json:"any_uneven_load,omitempty"`
	BrokerTasks   Relationship     `json:"broker_tasks,omitempty"`
}

BalancerStatusData struct for BalancerStatusData

func NewBalancerStatusData added in v0.4.0

func NewBalancerStatusData(kind string, metadata ResourceMetadata, clusterId string, status string, anyUnevenLoad Relationship, brokerTasks Relationship) *BalancerStatusData

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

func NewBalancerStatusDataWithDefaults added in v0.4.0

func NewBalancerStatusDataWithDefaults() *BalancerStatusData

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

func (*BalancerStatusData) GetAnyUnevenLoad added in v0.4.0

func (o *BalancerStatusData) GetAnyUnevenLoad() Relationship

GetAnyUnevenLoad returns the AnyUnevenLoad field value

func (*BalancerStatusData) GetAnyUnevenLoadOk added in v0.4.0

func (o *BalancerStatusData) GetAnyUnevenLoadOk() (*Relationship, bool)

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

func (*BalancerStatusData) GetBrokerTasks added in v0.4.0

func (o *BalancerStatusData) GetBrokerTasks() Relationship

GetBrokerTasks returns the BrokerTasks field value

func (*BalancerStatusData) GetBrokerTasksOk added in v0.4.0

func (o *BalancerStatusData) GetBrokerTasksOk() (*Relationship, bool)

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

func (*BalancerStatusData) GetClusterId added in v0.4.0

func (o *BalancerStatusData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BalancerStatusData) GetClusterIdOk added in v0.4.0

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

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

func (*BalancerStatusData) GetErrorCode added in v0.4.0

func (o *BalancerStatusData) GetErrorCode() int32

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

func (*BalancerStatusData) GetErrorCodeOk added in v0.4.0

func (o *BalancerStatusData) GetErrorCodeOk() (*int32, bool)

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

func (*BalancerStatusData) GetErrorMessage added in v0.4.0

func (o *BalancerStatusData) GetErrorMessage() string

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

func (*BalancerStatusData) GetErrorMessageOk added in v0.4.0

func (o *BalancerStatusData) GetErrorMessageOk() (*string, bool)

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

func (*BalancerStatusData) GetKind added in v0.4.0

func (o *BalancerStatusData) GetKind() string

GetKind returns the Kind field value

func (*BalancerStatusData) GetKindOk added in v0.4.0

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

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

func (*BalancerStatusData) GetMetadata added in v0.4.0

func (o *BalancerStatusData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*BalancerStatusData) GetMetadataOk added in v0.4.0

func (o *BalancerStatusData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*BalancerStatusData) GetStatus added in v0.4.0

func (o *BalancerStatusData) GetStatus() string

GetStatus returns the Status field value

func (*BalancerStatusData) GetStatusOk added in v0.4.0

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

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

func (*BalancerStatusData) HasErrorCode added in v0.4.0

func (o *BalancerStatusData) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*BalancerStatusData) HasErrorMessage added in v0.4.0

func (o *BalancerStatusData) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (BalancerStatusData) MarshalJSON added in v0.4.0

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

func (*BalancerStatusData) Redact added in v0.4.0

func (o *BalancerStatusData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BalancerStatusData) SetAnyUnevenLoad added in v0.4.0

func (o *BalancerStatusData) SetAnyUnevenLoad(v Relationship)

SetAnyUnevenLoad sets field value

func (*BalancerStatusData) SetBrokerTasks added in v0.4.0

func (o *BalancerStatusData) SetBrokerTasks(v Relationship)

SetBrokerTasks sets field value

func (*BalancerStatusData) SetClusterId added in v0.4.0

func (o *BalancerStatusData) SetClusterId(v string)

SetClusterId sets field value

func (*BalancerStatusData) SetErrorCode added in v0.4.0

func (o *BalancerStatusData) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*BalancerStatusData) SetErrorCodeNil added in v0.4.0

func (o *BalancerStatusData) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*BalancerStatusData) SetErrorMessage added in v0.4.0

func (o *BalancerStatusData) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*BalancerStatusData) SetErrorMessageNil added in v0.4.0

func (o *BalancerStatusData) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*BalancerStatusData) SetKind added in v0.4.0

func (o *BalancerStatusData) SetKind(v string)

SetKind sets field value

func (*BalancerStatusData) SetMetadata added in v0.4.0

func (o *BalancerStatusData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*BalancerStatusData) SetStatus added in v0.4.0

func (o *BalancerStatusData) SetStatus(v string)

SetStatus sets field value

func (*BalancerStatusData) UnsetErrorCode added in v0.4.0

func (o *BalancerStatusData) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*BalancerStatusData) UnsetErrorMessage added in v0.4.0

func (o *BalancerStatusData) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type BalancerStatusDataAllOf

type BalancerStatusDataAllOf struct {
	ClusterId     string         `json:"cluster_id,omitempty"`
	Status        string         `json:"status,omitempty"`
	ErrorCode     NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage  NullableString `json:"error_message,omitempty"`
	AnyUnevenLoad Relationship   `json:"any_uneven_load,omitempty"`
	BrokerTasks   Relationship   `json:"broker_tasks,omitempty"`
}

BalancerStatusDataAllOf struct for BalancerStatusDataAllOf

func NewBalancerStatusDataAllOf added in v0.4.0

func NewBalancerStatusDataAllOf(clusterId string, status string, anyUnevenLoad Relationship, brokerTasks Relationship) *BalancerStatusDataAllOf

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

func NewBalancerStatusDataAllOfWithDefaults added in v0.4.0

func NewBalancerStatusDataAllOfWithDefaults() *BalancerStatusDataAllOf

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

func (*BalancerStatusDataAllOf) GetAnyUnevenLoad added in v0.4.0

func (o *BalancerStatusDataAllOf) GetAnyUnevenLoad() Relationship

GetAnyUnevenLoad returns the AnyUnevenLoad field value

func (*BalancerStatusDataAllOf) GetAnyUnevenLoadOk added in v0.4.0

func (o *BalancerStatusDataAllOf) GetAnyUnevenLoadOk() (*Relationship, bool)

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

func (*BalancerStatusDataAllOf) GetBrokerTasks added in v0.4.0

func (o *BalancerStatusDataAllOf) GetBrokerTasks() Relationship

GetBrokerTasks returns the BrokerTasks field value

func (*BalancerStatusDataAllOf) GetBrokerTasksOk added in v0.4.0

func (o *BalancerStatusDataAllOf) GetBrokerTasksOk() (*Relationship, bool)

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

func (*BalancerStatusDataAllOf) GetClusterId added in v0.4.0

func (o *BalancerStatusDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BalancerStatusDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*BalancerStatusDataAllOf) GetErrorCode added in v0.4.0

func (o *BalancerStatusDataAllOf) GetErrorCode() int32

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

func (*BalancerStatusDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *BalancerStatusDataAllOf) GetErrorCodeOk() (*int32, bool)

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

func (*BalancerStatusDataAllOf) GetErrorMessage added in v0.4.0

func (o *BalancerStatusDataAllOf) GetErrorMessage() string

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

func (*BalancerStatusDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *BalancerStatusDataAllOf) GetErrorMessageOk() (*string, bool)

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

func (*BalancerStatusDataAllOf) GetStatus added in v0.4.0

func (o *BalancerStatusDataAllOf) GetStatus() string

GetStatus returns the Status field value

func (*BalancerStatusDataAllOf) GetStatusOk added in v0.4.0

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

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

func (*BalancerStatusDataAllOf) HasErrorCode added in v0.4.0

func (o *BalancerStatusDataAllOf) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*BalancerStatusDataAllOf) HasErrorMessage added in v0.4.0

func (o *BalancerStatusDataAllOf) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (BalancerStatusDataAllOf) MarshalJSON added in v0.4.0

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

func (*BalancerStatusDataAllOf) Redact added in v0.4.0

func (o *BalancerStatusDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BalancerStatusDataAllOf) SetAnyUnevenLoad added in v0.4.0

func (o *BalancerStatusDataAllOf) SetAnyUnevenLoad(v Relationship)

SetAnyUnevenLoad sets field value

func (*BalancerStatusDataAllOf) SetBrokerTasks added in v0.4.0

func (o *BalancerStatusDataAllOf) SetBrokerTasks(v Relationship)

SetBrokerTasks sets field value

func (*BalancerStatusDataAllOf) SetClusterId added in v0.4.0

func (o *BalancerStatusDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*BalancerStatusDataAllOf) SetErrorCode added in v0.4.0

func (o *BalancerStatusDataAllOf) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*BalancerStatusDataAllOf) SetErrorCodeNil added in v0.4.0

func (o *BalancerStatusDataAllOf) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*BalancerStatusDataAllOf) SetErrorMessage added in v0.4.0

func (o *BalancerStatusDataAllOf) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*BalancerStatusDataAllOf) SetErrorMessageNil added in v0.4.0

func (o *BalancerStatusDataAllOf) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*BalancerStatusDataAllOf) SetStatus added in v0.4.0

func (o *BalancerStatusDataAllOf) SetStatus(v string)

SetStatus sets field value

func (*BalancerStatusDataAllOf) UnsetErrorCode added in v0.4.0

func (o *BalancerStatusDataAllOf) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*BalancerStatusDataAllOf) UnsetErrorMessage added in v0.4.0

func (o *BalancerStatusDataAllOf) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

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 BrokerConfigData

type BrokerConfigData struct {
	Kind        string              `json:"kind,omitempty"`
	Metadata    ResourceMetadata    `json:"metadata,omitempty"`
	ClusterId   string              `json:"cluster_id,omitempty"`
	Name        string              `json:"name,omitempty"`
	Value       NullableString      `json:"value,omitempty"`
	IsDefault   bool                `json:"is_default,omitempty"`
	IsReadOnly  bool                `json:"is_read_only,omitempty"`
	IsSensitive bool                `json:"is_sensitive,omitempty"`
	Source      string              `json:"source,omitempty"`
	Synonyms    []ConfigSynonymData `json:"synonyms,omitempty"`
	BrokerId    int32               `json:"broker_id,omitempty"`
}

BrokerConfigData struct for BrokerConfigData

func NewBrokerConfigData added in v0.4.0

func NewBrokerConfigData(kind string, metadata ResourceMetadata, clusterId string, name string, isDefault bool, isReadOnly bool, isSensitive bool, source string, synonyms []ConfigSynonymData, brokerId int32) *BrokerConfigData

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

func NewBrokerConfigDataWithDefaults added in v0.4.0

func NewBrokerConfigDataWithDefaults() *BrokerConfigData

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

func (*BrokerConfigData) GetBrokerId added in v0.4.0

func (o *BrokerConfigData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerConfigData) GetBrokerIdOk added in v0.4.0

func (o *BrokerConfigData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerConfigData) GetClusterId added in v0.4.0

func (o *BrokerConfigData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerConfigData) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerConfigData) GetIsDefault added in v0.4.0

func (o *BrokerConfigData) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*BrokerConfigData) GetIsDefaultOk added in v0.4.0

func (o *BrokerConfigData) GetIsDefaultOk() (*bool, bool)

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

func (*BrokerConfigData) GetIsReadOnly added in v0.4.0

func (o *BrokerConfigData) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value

func (*BrokerConfigData) GetIsReadOnlyOk added in v0.4.0

func (o *BrokerConfigData) GetIsReadOnlyOk() (*bool, bool)

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

func (*BrokerConfigData) GetIsSensitive added in v0.4.0

func (o *BrokerConfigData) GetIsSensitive() bool

GetIsSensitive returns the IsSensitive field value

func (*BrokerConfigData) GetIsSensitiveOk added in v0.4.0

func (o *BrokerConfigData) GetIsSensitiveOk() (*bool, bool)

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

func (*BrokerConfigData) GetKind added in v0.4.0

func (o *BrokerConfigData) GetKind() string

GetKind returns the Kind field value

func (*BrokerConfigData) GetKindOk added in v0.4.0

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

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

func (*BrokerConfigData) GetMetadata added in v0.4.0

func (o *BrokerConfigData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*BrokerConfigData) GetMetadataOk added in v0.4.0

func (o *BrokerConfigData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*BrokerConfigData) GetName added in v0.4.0

func (o *BrokerConfigData) GetName() string

GetName returns the Name field value

func (*BrokerConfigData) GetNameOk added in v0.4.0

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

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

func (*BrokerConfigData) GetSource added in v0.4.0

func (o *BrokerConfigData) GetSource() string

GetSource returns the Source field value

func (*BrokerConfigData) GetSourceOk added in v0.4.0

func (o *BrokerConfigData) GetSourceOk() (*string, bool)

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

func (*BrokerConfigData) GetSynonyms added in v0.4.0

func (o *BrokerConfigData) GetSynonyms() []ConfigSynonymData

GetSynonyms returns the Synonyms field value

func (*BrokerConfigData) GetSynonymsOk added in v0.4.0

func (o *BrokerConfigData) GetSynonymsOk() (*[]ConfigSynonymData, bool)

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

func (*BrokerConfigData) GetValue added in v0.4.0

func (o *BrokerConfigData) GetValue() string

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

func (*BrokerConfigData) GetValueOk added in v0.4.0

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

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

func (*BrokerConfigData) HasValue added in v0.4.0

func (o *BrokerConfigData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (BrokerConfigData) MarshalJSON added in v0.4.0

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

func (*BrokerConfigData) Redact added in v0.4.0

func (o *BrokerConfigData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerConfigData) SetBrokerId added in v0.4.0

func (o *BrokerConfigData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerConfigData) SetClusterId added in v0.4.0

func (o *BrokerConfigData) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerConfigData) SetIsDefault added in v0.4.0

func (o *BrokerConfigData) SetIsDefault(v bool)

SetIsDefault sets field value

func (*BrokerConfigData) SetIsReadOnly added in v0.4.0

func (o *BrokerConfigData) SetIsReadOnly(v bool)

SetIsReadOnly sets field value

func (*BrokerConfigData) SetIsSensitive added in v0.4.0

func (o *BrokerConfigData) SetIsSensitive(v bool)

SetIsSensitive sets field value

func (*BrokerConfigData) SetKind added in v0.4.0

func (o *BrokerConfigData) SetKind(v string)

SetKind sets field value

func (*BrokerConfigData) SetMetadata added in v0.4.0

func (o *BrokerConfigData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*BrokerConfigData) SetName added in v0.4.0

func (o *BrokerConfigData) SetName(v string)

SetName sets field value

func (*BrokerConfigData) SetSource added in v0.4.0

func (o *BrokerConfigData) SetSource(v string)

SetSource sets field value

func (*BrokerConfigData) SetSynonyms added in v0.4.0

func (o *BrokerConfigData) SetSynonyms(v []ConfigSynonymData)

SetSynonyms sets field value

func (*BrokerConfigData) SetValue added in v0.4.0

func (o *BrokerConfigData) SetValue(v string)

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

func (*BrokerConfigData) SetValueNil added in v0.4.0

func (o *BrokerConfigData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*BrokerConfigData) UnsetValue added in v0.4.0

func (o *BrokerConfigData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type BrokerConfigDataAllOf

type BrokerConfigDataAllOf struct {
	BrokerId int32 `json:"broker_id,omitempty"`
}

BrokerConfigDataAllOf struct for BrokerConfigDataAllOf

func NewBrokerConfigDataAllOf added in v0.4.0

func NewBrokerConfigDataAllOf(brokerId int32) *BrokerConfigDataAllOf

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

func NewBrokerConfigDataAllOfWithDefaults added in v0.4.0

func NewBrokerConfigDataAllOfWithDefaults() *BrokerConfigDataAllOf

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

func (*BrokerConfigDataAllOf) GetBrokerId added in v0.4.0

func (o *BrokerConfigDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerConfigDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *BrokerConfigDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (BrokerConfigDataAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerConfigDataAllOf) Redact added in v0.4.0

func (o *BrokerConfigDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerConfigDataAllOf) SetBrokerId added in v0.4.0

func (o *BrokerConfigDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

type BrokerConfigDataList

type BrokerConfigDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []BrokerConfigData         `json:"data,omitempty"`
}

BrokerConfigDataList struct for BrokerConfigDataList

func NewBrokerConfigDataList added in v0.4.0

func NewBrokerConfigDataList(kind string, metadata ResourceCollectionMetadata, data []BrokerConfigData) *BrokerConfigDataList

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

func NewBrokerConfigDataListWithDefaults added in v0.4.0

func NewBrokerConfigDataListWithDefaults() *BrokerConfigDataList

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

func (*BrokerConfigDataList) GetData added in v0.4.0

func (o *BrokerConfigDataList) GetData() []BrokerConfigData

GetData returns the Data field value

func (*BrokerConfigDataList) GetDataOk added in v0.4.0

func (o *BrokerConfigDataList) GetDataOk() (*[]BrokerConfigData, bool)

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

func (*BrokerConfigDataList) GetKind added in v0.4.0

func (o *BrokerConfigDataList) GetKind() string

GetKind returns the Kind field value

func (*BrokerConfigDataList) GetKindOk added in v0.4.0

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

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

func (*BrokerConfigDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*BrokerConfigDataList) GetMetadataOk added in v0.4.0

func (o *BrokerConfigDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (BrokerConfigDataList) MarshalJSON added in v0.4.0

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

func (*BrokerConfigDataList) Redact added in v0.4.0

func (o *BrokerConfigDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerConfigDataList) SetData added in v0.4.0

func (o *BrokerConfigDataList) SetData(v []BrokerConfigData)

SetData sets field value

func (*BrokerConfigDataList) SetKind added in v0.4.0

func (o *BrokerConfigDataList) SetKind(v string)

SetKind sets field value

func (*BrokerConfigDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type BrokerConfigDataListAllOf

type BrokerConfigDataListAllOf struct {
	Data []BrokerConfigData `json:"data,omitempty"`
}

BrokerConfigDataListAllOf struct for BrokerConfigDataListAllOf

func NewBrokerConfigDataListAllOf added in v0.4.0

func NewBrokerConfigDataListAllOf(data []BrokerConfigData) *BrokerConfigDataListAllOf

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

func NewBrokerConfigDataListAllOfWithDefaults added in v0.4.0

func NewBrokerConfigDataListAllOfWithDefaults() *BrokerConfigDataListAllOf

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

func (*BrokerConfigDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerConfigDataListAllOf) GetDataOk added in v0.4.0

func (o *BrokerConfigDataListAllOf) GetDataOk() (*[]BrokerConfigData, bool)

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

func (BrokerConfigDataListAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerConfigDataListAllOf) Redact added in v0.4.0

func (o *BrokerConfigDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerConfigDataListAllOf) SetData added in v0.4.0

SetData sets field value

type BrokerData

type BrokerData struct {
	Kind              string           `json:"kind,omitempty"`
	Metadata          ResourceMetadata `json:"metadata,omitempty"`
	ClusterId         string           `json:"cluster_id,omitempty"`
	BrokerId          int32            `json:"broker_id,omitempty"`
	Host              NullableString   `json:"host,omitempty"`
	Port              NullableInt32    `json:"port,omitempty"`
	Rack              NullableString   `json:"rack,omitempty"`
	Configs           Relationship     `json:"configs,omitempty"`
	PartitionReplicas Relationship     `json:"partition_replicas,omitempty"`
}

BrokerData struct for BrokerData

func NewBrokerData added in v0.4.0

func NewBrokerData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, configs Relationship, partitionReplicas Relationship) *BrokerData

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

func NewBrokerDataWithDefaults added in v0.4.0

func NewBrokerDataWithDefaults() *BrokerData

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

func (*BrokerData) GetBrokerId added in v0.4.0

func (o *BrokerData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerData) GetBrokerIdOk added in v0.4.0

func (o *BrokerData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerData) GetClusterId added in v0.4.0

func (o *BrokerData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerData) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerData) GetConfigs added in v0.4.0

func (o *BrokerData) GetConfigs() Relationship

GetConfigs returns the Configs field value

func (*BrokerData) GetConfigsOk added in v0.4.0

func (o *BrokerData) GetConfigsOk() (*Relationship, bool)

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

func (*BrokerData) GetHost added in v0.4.0

func (o *BrokerData) GetHost() string

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

func (*BrokerData) GetHostOk added in v0.4.0

func (o *BrokerData) GetHostOk() (*string, bool)

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

func (*BrokerData) GetKind added in v0.4.0

func (o *BrokerData) GetKind() string

GetKind returns the Kind field value

func (*BrokerData) GetKindOk added in v0.4.0

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

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

func (*BrokerData) GetMetadata added in v0.4.0

func (o *BrokerData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*BrokerData) GetMetadataOk added in v0.4.0

func (o *BrokerData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*BrokerData) GetPartitionReplicas added in v0.4.0

func (o *BrokerData) GetPartitionReplicas() Relationship

GetPartitionReplicas returns the PartitionReplicas field value

func (*BrokerData) GetPartitionReplicasOk added in v0.4.0

func (o *BrokerData) GetPartitionReplicasOk() (*Relationship, bool)

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

func (*BrokerData) GetPort added in v0.4.0

func (o *BrokerData) GetPort() int32

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

func (*BrokerData) GetPortOk added in v0.4.0

func (o *BrokerData) GetPortOk() (*int32, bool)

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

func (*BrokerData) GetRack added in v0.4.0

func (o *BrokerData) GetRack() string

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

func (*BrokerData) GetRackOk added in v0.4.0

func (o *BrokerData) GetRackOk() (*string, bool)

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

func (*BrokerData) HasHost added in v0.4.0

func (o *BrokerData) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*BrokerData) HasPort added in v0.4.0

func (o *BrokerData) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*BrokerData) HasRack added in v0.4.0

func (o *BrokerData) HasRack() bool

HasRack returns a boolean if a field has been set.

func (BrokerData) MarshalJSON added in v0.4.0

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

func (*BrokerData) Redact added in v0.4.0

func (o *BrokerData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerData) SetBrokerId added in v0.4.0

func (o *BrokerData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerData) SetClusterId added in v0.4.0

func (o *BrokerData) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerData) SetConfigs added in v0.4.0

func (o *BrokerData) SetConfigs(v Relationship)

SetConfigs sets field value

func (*BrokerData) SetHost added in v0.4.0

func (o *BrokerData) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*BrokerData) SetHostNil added in v0.4.0

func (o *BrokerData) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*BrokerData) SetKind added in v0.4.0

func (o *BrokerData) SetKind(v string)

SetKind sets field value

func (*BrokerData) SetMetadata added in v0.4.0

func (o *BrokerData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*BrokerData) SetPartitionReplicas added in v0.4.0

func (o *BrokerData) SetPartitionReplicas(v Relationship)

SetPartitionReplicas sets field value

func (*BrokerData) SetPort added in v0.4.0

func (o *BrokerData) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*BrokerData) SetPortNil added in v0.4.0

func (o *BrokerData) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*BrokerData) SetRack added in v0.4.0

func (o *BrokerData) SetRack(v string)

SetRack gets a reference to the given NullableString and assigns it to the Rack field.

func (*BrokerData) SetRackNil added in v0.4.0

func (o *BrokerData) SetRackNil()

SetRackNil sets the value for Rack to be an explicit nil

func (*BrokerData) UnsetHost added in v0.4.0

func (o *BrokerData) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*BrokerData) UnsetPort added in v0.4.0

func (o *BrokerData) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*BrokerData) UnsetRack added in v0.4.0

func (o *BrokerData) UnsetRack()

UnsetRack ensures that no value is present for Rack, not even an explicit nil

type BrokerDataAllOf

type BrokerDataAllOf struct {
	ClusterId         string         `json:"cluster_id,omitempty"`
	BrokerId          int32          `json:"broker_id,omitempty"`
	Host              NullableString `json:"host,omitempty"`
	Port              NullableInt32  `json:"port,omitempty"`
	Rack              NullableString `json:"rack,omitempty"`
	Configs           Relationship   `json:"configs,omitempty"`
	PartitionReplicas Relationship   `json:"partition_replicas,omitempty"`
}

BrokerDataAllOf struct for BrokerDataAllOf

func NewBrokerDataAllOf added in v0.4.0

func NewBrokerDataAllOf(clusterId string, brokerId int32, configs Relationship, partitionReplicas Relationship) *BrokerDataAllOf

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

func NewBrokerDataAllOfWithDefaults added in v0.4.0

func NewBrokerDataAllOfWithDefaults() *BrokerDataAllOf

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

func (*BrokerDataAllOf) GetBrokerId added in v0.4.0

func (o *BrokerDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *BrokerDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerDataAllOf) GetClusterId added in v0.4.0

func (o *BrokerDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerDataAllOf) GetConfigs added in v0.4.0

func (o *BrokerDataAllOf) GetConfigs() Relationship

GetConfigs returns the Configs field value

func (*BrokerDataAllOf) GetConfigsOk added in v0.4.0

func (o *BrokerDataAllOf) GetConfigsOk() (*Relationship, bool)

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

func (*BrokerDataAllOf) GetHost added in v0.4.0

func (o *BrokerDataAllOf) GetHost() string

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

func (*BrokerDataAllOf) GetHostOk added in v0.4.0

func (o *BrokerDataAllOf) GetHostOk() (*string, bool)

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

func (*BrokerDataAllOf) GetPartitionReplicas added in v0.4.0

func (o *BrokerDataAllOf) GetPartitionReplicas() Relationship

GetPartitionReplicas returns the PartitionReplicas field value

func (*BrokerDataAllOf) GetPartitionReplicasOk added in v0.4.0

func (o *BrokerDataAllOf) GetPartitionReplicasOk() (*Relationship, bool)

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

func (*BrokerDataAllOf) GetPort added in v0.4.0

func (o *BrokerDataAllOf) GetPort() int32

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

func (*BrokerDataAllOf) GetPortOk added in v0.4.0

func (o *BrokerDataAllOf) GetPortOk() (*int32, bool)

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

func (*BrokerDataAllOf) GetRack added in v0.4.0

func (o *BrokerDataAllOf) GetRack() string

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

func (*BrokerDataAllOf) GetRackOk added in v0.4.0

func (o *BrokerDataAllOf) GetRackOk() (*string, bool)

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

func (*BrokerDataAllOf) HasHost added in v0.4.0

func (o *BrokerDataAllOf) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*BrokerDataAllOf) HasPort added in v0.4.0

func (o *BrokerDataAllOf) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*BrokerDataAllOf) HasRack added in v0.4.0

func (o *BrokerDataAllOf) HasRack() bool

HasRack returns a boolean if a field has been set.

func (BrokerDataAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerDataAllOf) Redact added in v0.4.0

func (o *BrokerDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerDataAllOf) SetBrokerId added in v0.4.0

func (o *BrokerDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerDataAllOf) SetClusterId added in v0.4.0

func (o *BrokerDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerDataAllOf) SetConfigs added in v0.4.0

func (o *BrokerDataAllOf) SetConfigs(v Relationship)

SetConfigs sets field value

func (*BrokerDataAllOf) SetHost added in v0.4.0

func (o *BrokerDataAllOf) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*BrokerDataAllOf) SetHostNil added in v0.4.0

func (o *BrokerDataAllOf) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*BrokerDataAllOf) SetPartitionReplicas added in v0.4.0

func (o *BrokerDataAllOf) SetPartitionReplicas(v Relationship)

SetPartitionReplicas sets field value

func (*BrokerDataAllOf) SetPort added in v0.4.0

func (o *BrokerDataAllOf) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*BrokerDataAllOf) SetPortNil added in v0.4.0

func (o *BrokerDataAllOf) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*BrokerDataAllOf) SetRack added in v0.4.0

func (o *BrokerDataAllOf) SetRack(v string)

SetRack gets a reference to the given NullableString and assigns it to the Rack field.

func (*BrokerDataAllOf) SetRackNil added in v0.4.0

func (o *BrokerDataAllOf) SetRackNil()

SetRackNil sets the value for Rack to be an explicit nil

func (*BrokerDataAllOf) UnsetHost added in v0.4.0

func (o *BrokerDataAllOf) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*BrokerDataAllOf) UnsetPort added in v0.4.0

func (o *BrokerDataAllOf) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*BrokerDataAllOf) UnsetRack added in v0.4.0

func (o *BrokerDataAllOf) UnsetRack()

UnsetRack ensures that no value is present for Rack, not even an explicit nil

type BrokerDataList

type BrokerDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []BrokerData               `json:"data,omitempty"`
}

BrokerDataList struct for BrokerDataList

func NewBrokerDataList added in v0.4.0

func NewBrokerDataList(kind string, metadata ResourceCollectionMetadata, data []BrokerData) *BrokerDataList

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

func NewBrokerDataListWithDefaults added in v0.4.0

func NewBrokerDataListWithDefaults() *BrokerDataList

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

func (*BrokerDataList) GetData added in v0.4.0

func (o *BrokerDataList) GetData() []BrokerData

GetData returns the Data field value

func (*BrokerDataList) GetDataOk added in v0.4.0

func (o *BrokerDataList) GetDataOk() (*[]BrokerData, bool)

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

func (*BrokerDataList) GetKind added in v0.4.0

func (o *BrokerDataList) GetKind() string

GetKind returns the Kind field value

func (*BrokerDataList) GetKindOk added in v0.4.0

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

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

func (*BrokerDataList) GetMetadata added in v0.4.0

func (o *BrokerDataList) GetMetadata() ResourceCollectionMetadata

GetMetadata returns the Metadata field value

func (*BrokerDataList) GetMetadataOk added in v0.4.0

func (o *BrokerDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (BrokerDataList) MarshalJSON added in v0.4.0

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

func (*BrokerDataList) Redact added in v0.4.0

func (o *BrokerDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerDataList) SetData added in v0.4.0

func (o *BrokerDataList) SetData(v []BrokerData)

SetData sets field value

func (*BrokerDataList) SetKind added in v0.4.0

func (o *BrokerDataList) SetKind(v string)

SetKind sets field value

func (*BrokerDataList) SetMetadata added in v0.4.0

func (o *BrokerDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type BrokerDataListAllOf

type BrokerDataListAllOf struct {
	Data []BrokerData `json:"data,omitempty"`
}

BrokerDataListAllOf struct for BrokerDataListAllOf

func NewBrokerDataListAllOf added in v0.4.0

func NewBrokerDataListAllOf(data []BrokerData) *BrokerDataListAllOf

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

func NewBrokerDataListAllOfWithDefaults added in v0.4.0

func NewBrokerDataListAllOfWithDefaults() *BrokerDataListAllOf

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

func (*BrokerDataListAllOf) GetData added in v0.4.0

func (o *BrokerDataListAllOf) GetData() []BrokerData

GetData returns the Data field value

func (*BrokerDataListAllOf) GetDataOk added in v0.4.0

func (o *BrokerDataListAllOf) GetDataOk() (*[]BrokerData, bool)

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

func (BrokerDataListAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerDataListAllOf) Redact added in v0.4.0

func (o *BrokerDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerDataListAllOf) SetData added in v0.4.0

func (o *BrokerDataListAllOf) SetData(v []BrokerData)

SetData sets field value

type BrokerRemovalData

type BrokerRemovalData struct {
	Kind       string           `json:"kind,omitempty"`
	Metadata   ResourceMetadata `json:"metadata,omitempty"`
	ClusterId  string           `json:"cluster_id,omitempty"`
	BrokerId   int32            `json:"broker_id,omitempty"`
	BrokerTask Relationship     `json:"broker_task,omitempty"`
	Broker     Relationship     `json:"broker,omitempty"`
}

BrokerRemovalData struct for BrokerRemovalData

func NewBrokerRemovalData added in v0.4.0

func NewBrokerRemovalData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, brokerTask Relationship, broker Relationship) *BrokerRemovalData

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

func NewBrokerRemovalDataWithDefaults added in v0.4.0

func NewBrokerRemovalDataWithDefaults() *BrokerRemovalData

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

func (*BrokerRemovalData) GetBroker added in v0.4.0

func (o *BrokerRemovalData) GetBroker() Relationship

GetBroker returns the Broker field value

func (*BrokerRemovalData) GetBrokerId added in v0.4.0

func (o *BrokerRemovalData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerRemovalData) GetBrokerIdOk added in v0.4.0

func (o *BrokerRemovalData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerRemovalData) GetBrokerOk added in v0.4.0

func (o *BrokerRemovalData) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerRemovalData) GetBrokerTask added in v0.4.0

func (o *BrokerRemovalData) GetBrokerTask() Relationship

GetBrokerTask returns the BrokerTask field value

func (*BrokerRemovalData) GetBrokerTaskOk added in v0.4.0

func (o *BrokerRemovalData) GetBrokerTaskOk() (*Relationship, bool)

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

func (*BrokerRemovalData) GetClusterId added in v0.4.0

func (o *BrokerRemovalData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerRemovalData) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerRemovalData) GetKind added in v0.4.0

func (o *BrokerRemovalData) GetKind() string

GetKind returns the Kind field value

func (*BrokerRemovalData) GetKindOk added in v0.4.0

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

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

func (*BrokerRemovalData) GetMetadata added in v0.4.0

func (o *BrokerRemovalData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*BrokerRemovalData) GetMetadataOk added in v0.4.0

func (o *BrokerRemovalData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (BrokerRemovalData) MarshalJSON added in v0.4.0

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

func (*BrokerRemovalData) Redact added in v0.4.0

func (o *BrokerRemovalData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerRemovalData) SetBroker added in v0.4.0

func (o *BrokerRemovalData) SetBroker(v Relationship)

SetBroker sets field value

func (*BrokerRemovalData) SetBrokerId added in v0.4.0

func (o *BrokerRemovalData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerRemovalData) SetBrokerTask added in v0.4.0

func (o *BrokerRemovalData) SetBrokerTask(v Relationship)

SetBrokerTask sets field value

func (*BrokerRemovalData) SetClusterId added in v0.4.0

func (o *BrokerRemovalData) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerRemovalData) SetKind added in v0.4.0

func (o *BrokerRemovalData) SetKind(v string)

SetKind sets field value

func (*BrokerRemovalData) SetMetadata added in v0.4.0

func (o *BrokerRemovalData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

type BrokerRemovalDataAllOf

type BrokerRemovalDataAllOf struct {
	ClusterId  string       `json:"cluster_id,omitempty"`
	BrokerId   int32        `json:"broker_id,omitempty"`
	BrokerTask Relationship `json:"broker_task,omitempty"`
	Broker     Relationship `json:"broker,omitempty"`
}

BrokerRemovalDataAllOf struct for BrokerRemovalDataAllOf

func NewBrokerRemovalDataAllOf added in v0.4.0

func NewBrokerRemovalDataAllOf(clusterId string, brokerId int32, brokerTask Relationship, broker Relationship) *BrokerRemovalDataAllOf

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

func NewBrokerRemovalDataAllOfWithDefaults added in v0.4.0

func NewBrokerRemovalDataAllOfWithDefaults() *BrokerRemovalDataAllOf

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

func (*BrokerRemovalDataAllOf) GetBroker added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBroker() Relationship

GetBroker returns the Broker field value

func (*BrokerRemovalDataAllOf) GetBrokerId added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerRemovalDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerRemovalDataAllOf) GetBrokerOk added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerRemovalDataAllOf) GetBrokerTask added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBrokerTask() Relationship

GetBrokerTask returns the BrokerTask field value

func (*BrokerRemovalDataAllOf) GetBrokerTaskOk added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetBrokerTaskOk() (*Relationship, bool)

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

func (*BrokerRemovalDataAllOf) GetClusterId added in v0.4.0

func (o *BrokerRemovalDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerRemovalDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (BrokerRemovalDataAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerRemovalDataAllOf) Redact added in v0.4.0

func (o *BrokerRemovalDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerRemovalDataAllOf) SetBroker added in v0.4.0

func (o *BrokerRemovalDataAllOf) SetBroker(v Relationship)

SetBroker sets field value

func (*BrokerRemovalDataAllOf) SetBrokerId added in v0.4.0

func (o *BrokerRemovalDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerRemovalDataAllOf) SetBrokerTask added in v0.4.0

func (o *BrokerRemovalDataAllOf) SetBrokerTask(v Relationship)

SetBrokerTask sets field value

func (*BrokerRemovalDataAllOf) SetClusterId added in v0.4.0

func (o *BrokerRemovalDataAllOf) SetClusterId(v string)

SetClusterId sets field value

type BrokerRemovalDataList

type BrokerRemovalDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []BrokerRemovalData        `json:"data,omitempty"`
}

BrokerRemovalDataList struct for BrokerRemovalDataList

func NewBrokerRemovalDataList added in v0.4.0

func NewBrokerRemovalDataList(kind string, metadata ResourceCollectionMetadata, data []BrokerRemovalData) *BrokerRemovalDataList

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

func NewBrokerRemovalDataListWithDefaults added in v0.4.0

func NewBrokerRemovalDataListWithDefaults() *BrokerRemovalDataList

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

func (*BrokerRemovalDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerRemovalDataList) GetDataOk added in v0.4.0

func (o *BrokerRemovalDataList) GetDataOk() (*[]BrokerRemovalData, bool)

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

func (*BrokerRemovalDataList) GetKind added in v0.4.0

func (o *BrokerRemovalDataList) GetKind() string

GetKind returns the Kind field value

func (*BrokerRemovalDataList) GetKindOk added in v0.4.0

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

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

func (*BrokerRemovalDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*BrokerRemovalDataList) GetMetadataOk added in v0.4.0

func (o *BrokerRemovalDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (BrokerRemovalDataList) MarshalJSON added in v0.4.0

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

func (*BrokerRemovalDataList) Redact added in v0.4.0

func (o *BrokerRemovalDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerRemovalDataList) SetData added in v0.4.0

func (o *BrokerRemovalDataList) SetData(v []BrokerRemovalData)

SetData sets field value

func (*BrokerRemovalDataList) SetKind added in v0.4.0

func (o *BrokerRemovalDataList) SetKind(v string)

SetKind sets field value

func (*BrokerRemovalDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type BrokerRemovalDataListAllOf

type BrokerRemovalDataListAllOf struct {
	Data []BrokerRemovalData `json:"data,omitempty"`
}

BrokerRemovalDataListAllOf struct for BrokerRemovalDataListAllOf

func NewBrokerRemovalDataListAllOf added in v0.4.0

func NewBrokerRemovalDataListAllOf(data []BrokerRemovalData) *BrokerRemovalDataListAllOf

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

func NewBrokerRemovalDataListAllOfWithDefaults added in v0.4.0

func NewBrokerRemovalDataListAllOfWithDefaults() *BrokerRemovalDataListAllOf

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

func (*BrokerRemovalDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerRemovalDataListAllOf) GetDataOk added in v0.4.0

func (o *BrokerRemovalDataListAllOf) GetDataOk() (*[]BrokerRemovalData, bool)

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

func (BrokerRemovalDataListAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerRemovalDataListAllOf) Redact added in v0.4.0

func (o *BrokerRemovalDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerRemovalDataListAllOf) SetData added in v0.4.0

SetData sets field value

type BrokerReplicaExclusionBatchRequestData

type BrokerReplicaExclusionBatchRequestData struct {
	Data []BrokerReplicaExclusionRequestData `json:"data,omitempty"`
}

BrokerReplicaExclusionBatchRequestData struct for BrokerReplicaExclusionBatchRequestData

func NewBrokerReplicaExclusionBatchRequestData added in v0.4.0

func NewBrokerReplicaExclusionBatchRequestData(data []BrokerReplicaExclusionRequestData) *BrokerReplicaExclusionBatchRequestData

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

func NewBrokerReplicaExclusionBatchRequestDataWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionBatchRequestDataWithDefaults() *BrokerReplicaExclusionBatchRequestData

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

func (*BrokerReplicaExclusionBatchRequestData) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerReplicaExclusionBatchRequestData) GetDataOk added in v0.4.0

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

func (BrokerReplicaExclusionBatchRequestData) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionBatchRequestData) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionBatchRequestData) SetData added in v0.4.0

SetData sets field value

type BrokerReplicaExclusionData

type BrokerReplicaExclusionData struct {
	Kind      string           `json:"kind,omitempty"`
	Metadata  ResourceMetadata `json:"metadata,omitempty"`
	ClusterId string           `json:"cluster_id,omitempty"`
	BrokerId  int32            `json:"broker_id,omitempty"`
	Reason    string           `json:"reason,omitempty"`
	Broker    Relationship     `json:"broker,omitempty"`
}

BrokerReplicaExclusionData struct for BrokerReplicaExclusionData

func NewBrokerReplicaExclusionData added in v0.4.0

func NewBrokerReplicaExclusionData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, reason string, broker Relationship) *BrokerReplicaExclusionData

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

func NewBrokerReplicaExclusionDataWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionDataWithDefaults() *BrokerReplicaExclusionData

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

func (*BrokerReplicaExclusionData) GetBroker added in v0.4.0

GetBroker returns the Broker field value

func (*BrokerReplicaExclusionData) GetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerReplicaExclusionData) GetBrokerIdOk added in v0.4.0

func (o *BrokerReplicaExclusionData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerReplicaExclusionData) GetBrokerOk added in v0.4.0

func (o *BrokerReplicaExclusionData) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerReplicaExclusionData) GetClusterId added in v0.4.0

func (o *BrokerReplicaExclusionData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerReplicaExclusionData) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerReplicaExclusionData) GetKind added in v0.4.0

func (o *BrokerReplicaExclusionData) GetKind() string

GetKind returns the Kind field value

func (*BrokerReplicaExclusionData) GetKindOk added in v0.4.0

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

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

func (*BrokerReplicaExclusionData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*BrokerReplicaExclusionData) GetMetadataOk added in v0.4.0

func (o *BrokerReplicaExclusionData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*BrokerReplicaExclusionData) GetReason added in v0.4.0

func (o *BrokerReplicaExclusionData) GetReason() string

GetReason returns the Reason field value

func (*BrokerReplicaExclusionData) GetReasonOk added in v0.4.0

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

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

func (BrokerReplicaExclusionData) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionData) Redact added in v0.4.0

func (o *BrokerReplicaExclusionData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionData) SetBroker added in v0.4.0

func (o *BrokerReplicaExclusionData) SetBroker(v Relationship)

SetBroker sets field value

func (*BrokerReplicaExclusionData) SetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerReplicaExclusionData) SetClusterId added in v0.4.0

func (o *BrokerReplicaExclusionData) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerReplicaExclusionData) SetKind added in v0.4.0

func (o *BrokerReplicaExclusionData) SetKind(v string)

SetKind sets field value

func (*BrokerReplicaExclusionData) SetMetadata added in v0.4.0

func (o *BrokerReplicaExclusionData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*BrokerReplicaExclusionData) SetReason added in v0.4.0

func (o *BrokerReplicaExclusionData) SetReason(v string)

SetReason sets field value

type BrokerReplicaExclusionDataAllOf

type BrokerReplicaExclusionDataAllOf struct {
	ClusterId string       `json:"cluster_id,omitempty"`
	BrokerId  int32        `json:"broker_id,omitempty"`
	Reason    string       `json:"reason,omitempty"`
	Broker    Relationship `json:"broker,omitempty"`
}

BrokerReplicaExclusionDataAllOf struct for BrokerReplicaExclusionDataAllOf

func NewBrokerReplicaExclusionDataAllOf added in v0.4.0

func NewBrokerReplicaExclusionDataAllOf(clusterId string, brokerId int32, reason string, broker Relationship) *BrokerReplicaExclusionDataAllOf

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

func NewBrokerReplicaExclusionDataAllOfWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionDataAllOfWithDefaults() *BrokerReplicaExclusionDataAllOf

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

func (*BrokerReplicaExclusionDataAllOf) GetBroker added in v0.4.0

GetBroker returns the Broker field value

func (*BrokerReplicaExclusionDataAllOf) GetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerReplicaExclusionDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerReplicaExclusionDataAllOf) GetBrokerOk added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerReplicaExclusionDataAllOf) GetClusterId added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerReplicaExclusionDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerReplicaExclusionDataAllOf) GetReason added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) GetReason() string

GetReason returns the Reason field value

func (*BrokerReplicaExclusionDataAllOf) GetReasonOk added in v0.4.0

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

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

func (BrokerReplicaExclusionDataAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionDataAllOf) Redact added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionDataAllOf) SetBroker added in v0.4.0

SetBroker sets field value

func (*BrokerReplicaExclusionDataAllOf) SetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerReplicaExclusionDataAllOf) SetClusterId added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerReplicaExclusionDataAllOf) SetReason added in v0.4.0

func (o *BrokerReplicaExclusionDataAllOf) SetReason(v string)

SetReason sets field value

type BrokerReplicaExclusionDataList

type BrokerReplicaExclusionDataList struct {
	Kind     string                       `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata   `json:"metadata,omitempty"`
	Data     []BrokerReplicaExclusionData `json:"data,omitempty"`
}

BrokerReplicaExclusionDataList struct for BrokerReplicaExclusionDataList

func NewBrokerReplicaExclusionDataList added in v0.4.0

func NewBrokerReplicaExclusionDataList(kind string, metadata ResourceCollectionMetadata, data []BrokerReplicaExclusionData) *BrokerReplicaExclusionDataList

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

func NewBrokerReplicaExclusionDataListWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionDataListWithDefaults() *BrokerReplicaExclusionDataList

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

func (*BrokerReplicaExclusionDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerReplicaExclusionDataList) GetDataOk added in v0.4.0

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

func (*BrokerReplicaExclusionDataList) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*BrokerReplicaExclusionDataList) GetKindOk added in v0.4.0

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

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

func (*BrokerReplicaExclusionDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*BrokerReplicaExclusionDataList) GetMetadataOk added in v0.4.0

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

func (BrokerReplicaExclusionDataList) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionDataList) Redact added in v0.4.0

func (o *BrokerReplicaExclusionDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionDataList) SetData added in v0.4.0

SetData sets field value

func (*BrokerReplicaExclusionDataList) SetKind added in v0.4.0

func (o *BrokerReplicaExclusionDataList) SetKind(v string)

SetKind sets field value

func (*BrokerReplicaExclusionDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type BrokerReplicaExclusionDataListAllOf

type BrokerReplicaExclusionDataListAllOf struct {
	Data []BrokerReplicaExclusionData `json:"data,omitempty"`
}

BrokerReplicaExclusionDataListAllOf struct for BrokerReplicaExclusionDataListAllOf

func NewBrokerReplicaExclusionDataListAllOf added in v0.4.0

func NewBrokerReplicaExclusionDataListAllOf(data []BrokerReplicaExclusionData) *BrokerReplicaExclusionDataListAllOf

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

func NewBrokerReplicaExclusionDataListAllOfWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionDataListAllOfWithDefaults() *BrokerReplicaExclusionDataListAllOf

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

func (*BrokerReplicaExclusionDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*BrokerReplicaExclusionDataListAllOf) GetDataOk added in v0.4.0

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

func (BrokerReplicaExclusionDataListAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionDataListAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionDataListAllOf) SetData added in v0.4.0

SetData sets field value

type BrokerReplicaExclusionRequestData

type BrokerReplicaExclusionRequestData struct {
	BrokerId int32  `json:"broker_id,omitempty"`
	Reason   string `json:"reason,omitempty"`
}

BrokerReplicaExclusionRequestData struct for BrokerReplicaExclusionRequestData

func NewBrokerReplicaExclusionRequestData added in v0.4.0

func NewBrokerReplicaExclusionRequestData(brokerId int32, reason string) *BrokerReplicaExclusionRequestData

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

func NewBrokerReplicaExclusionRequestDataWithDefaults added in v0.4.0

func NewBrokerReplicaExclusionRequestDataWithDefaults() *BrokerReplicaExclusionRequestData

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

func (*BrokerReplicaExclusionRequestData) GetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionRequestData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerReplicaExclusionRequestData) GetBrokerIdOk added in v0.4.0

func (o *BrokerReplicaExclusionRequestData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerReplicaExclusionRequestData) GetReason added in v0.4.0

GetReason returns the Reason field value

func (*BrokerReplicaExclusionRequestData) GetReasonOk added in v0.4.0

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

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

func (BrokerReplicaExclusionRequestData) MarshalJSON added in v0.4.0

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

func (*BrokerReplicaExclusionRequestData) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*BrokerReplicaExclusionRequestData) SetBrokerId added in v0.4.0

func (o *BrokerReplicaExclusionRequestData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerReplicaExclusionRequestData) SetReason added in v0.4.0

func (o *BrokerReplicaExclusionRequestData) SetReason(v string)

SetReason sets field value

type BrokerTaskData

type BrokerTaskData struct {
	Kind              string            `json:"kind,omitempty"`
	Metadata          ResourceMetadata  `json:"metadata,omitempty"`
	ClusterId         string            `json:"cluster_id,omitempty"`
	BrokerId          int32             `json:"broker_id,omitempty"`
	TaskType          BrokerTaskType    `json:"task_type,omitempty"`
	TaskStatus        string            `json:"task_status,omitempty"`
	ShutdownScheduled NullableBool      `json:"shutdown_scheduled,omitempty"`
	SubTaskStatuses   map[string]string `json:"sub_task_statuses,omitempty"`
	// The date and time at which this task was created.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// The date and time at which this task was last updated.
	UpdatedAt    time.Time      `json:"updated_at,omitempty"`
	ErrorCode    NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage NullableString `json:"error_message,omitempty"`
	Broker       Relationship   `json:"broker,omitempty"`
}

BrokerTaskData struct for BrokerTaskData

func NewBrokerTaskData added in v0.4.0

func NewBrokerTaskData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, taskType BrokerTaskType, taskStatus string, subTaskStatuses map[string]string, createdAt time.Time, updatedAt time.Time, broker Relationship) *BrokerTaskData

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

func NewBrokerTaskDataWithDefaults added in v0.4.0

func NewBrokerTaskDataWithDefaults() *BrokerTaskData

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

func (*BrokerTaskData) GetBroker added in v0.4.0

func (o *BrokerTaskData) GetBroker() Relationship

GetBroker returns the Broker field value

func (*BrokerTaskData) GetBrokerId added in v0.4.0

func (o *BrokerTaskData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerTaskData) GetBrokerIdOk added in v0.4.0

func (o *BrokerTaskData) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerTaskData) GetBrokerOk added in v0.4.0

func (o *BrokerTaskData) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerTaskData) GetClusterId added in v0.4.0

func (o *BrokerTaskData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerTaskData) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerTaskData) GetCreatedAt added in v0.4.0

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

GetCreatedAt returns the CreatedAt field value

func (*BrokerTaskData) GetCreatedAtOk added in v0.4.0

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

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

func (*BrokerTaskData) GetErrorCode added in v0.4.0

func (o *BrokerTaskData) GetErrorCode() int32

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

func (*BrokerTaskData) GetErrorCodeOk added in v0.4.0

func (o *BrokerTaskData) GetErrorCodeOk() (*int32, bool)

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

func (*BrokerTaskData) GetErrorMessage added in v0.4.0

func (o *BrokerTaskData) GetErrorMessage() string

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

func (*BrokerTaskData) GetErrorMessageOk added in v0.4.0

func (o *BrokerTaskData) GetErrorMessageOk() (*string, bool)

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

func (*BrokerTaskData) GetKind added in v0.4.0

func (o *BrokerTaskData) GetKind() string

GetKind returns the Kind field value

func (*BrokerTaskData) GetKindOk added in v0.4.0

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

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

func (*BrokerTaskData) GetMetadata added in v0.4.0

func (o *BrokerTaskData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*BrokerTaskData) GetMetadataOk added in v0.4.0

func (o *BrokerTaskData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*BrokerTaskData) GetShutdownScheduled added in v0.4.0

func (o *BrokerTaskData) GetShutdownScheduled() bool

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

func (*BrokerTaskData) GetShutdownScheduledOk added in v0.4.0

func (o *BrokerTaskData) GetShutdownScheduledOk() (*bool, bool)

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

func (*BrokerTaskData) GetSubTaskStatuses added in v0.4.0

func (o *BrokerTaskData) GetSubTaskStatuses() map[string]string

GetSubTaskStatuses returns the SubTaskStatuses field value

func (*BrokerTaskData) GetSubTaskStatusesOk added in v0.4.0

func (o *BrokerTaskData) GetSubTaskStatusesOk() (*map[string]string, bool)

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

func (*BrokerTaskData) GetTaskStatus added in v0.4.0

func (o *BrokerTaskData) GetTaskStatus() string

GetTaskStatus returns the TaskStatus field value

func (*BrokerTaskData) GetTaskStatusOk added in v0.4.0

func (o *BrokerTaskData) GetTaskStatusOk() (*string, bool)

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

func (*BrokerTaskData) GetTaskType added in v0.4.0

func (o *BrokerTaskData) GetTaskType() BrokerTaskType

GetTaskType returns the TaskType field value

func (*BrokerTaskData) GetTaskTypeOk added in v0.4.0

func (o *BrokerTaskData) GetTaskTypeOk() (*BrokerTaskType, bool)

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

func (*BrokerTaskData) GetUpdatedAt added in v0.4.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*BrokerTaskData) GetUpdatedAtOk added in v0.4.0

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

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

func (*BrokerTaskData) HasErrorCode added in v0.4.0

func (o *BrokerTaskData) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*BrokerTaskData) HasErrorMessage added in v0.4.0

func (o *BrokerTaskData) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*BrokerTaskData) HasShutdownScheduled added in v0.4.0

func (o *BrokerTaskData) HasShutdownScheduled() bool

HasShutdownScheduled returns a boolean if a field has been set.

func (BrokerTaskData) MarshalJSON added in v0.4.0

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

func (*BrokerTaskData) Redact added in v0.4.0

func (o *BrokerTaskData) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerTaskData) SetBroker added in v0.4.0

func (o *BrokerTaskData) SetBroker(v Relationship)

SetBroker sets field value

func (*BrokerTaskData) SetBrokerId added in v0.4.0

func (o *BrokerTaskData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerTaskData) SetClusterId added in v0.4.0

func (o *BrokerTaskData) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerTaskData) SetCreatedAt added in v0.4.0

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

SetCreatedAt sets field value

func (*BrokerTaskData) SetErrorCode added in v0.4.0

func (o *BrokerTaskData) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*BrokerTaskData) SetErrorCodeNil added in v0.4.0

func (o *BrokerTaskData) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*BrokerTaskData) SetErrorMessage added in v0.4.0

func (o *BrokerTaskData) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*BrokerTaskData) SetErrorMessageNil added in v0.4.0

func (o *BrokerTaskData) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*BrokerTaskData) SetKind added in v0.4.0

func (o *BrokerTaskData) SetKind(v string)

SetKind sets field value

func (*BrokerTaskData) SetMetadata added in v0.4.0

func (o *BrokerTaskData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*BrokerTaskData) SetShutdownScheduled added in v0.4.0

func (o *BrokerTaskData) SetShutdownScheduled(v bool)

SetShutdownScheduled gets a reference to the given NullableBool and assigns it to the ShutdownScheduled field.

func (*BrokerTaskData) SetShutdownScheduledNil added in v0.4.0

func (o *BrokerTaskData) SetShutdownScheduledNil()

SetShutdownScheduledNil sets the value for ShutdownScheduled to be an explicit nil

func (*BrokerTaskData) SetSubTaskStatuses added in v0.4.0

func (o *BrokerTaskData) SetSubTaskStatuses(v map[string]string)

SetSubTaskStatuses sets field value

func (*BrokerTaskData) SetTaskStatus added in v0.4.0

func (o *BrokerTaskData) SetTaskStatus(v string)

SetTaskStatus sets field value

func (*BrokerTaskData) SetTaskType added in v0.4.0

func (o *BrokerTaskData) SetTaskType(v BrokerTaskType)

SetTaskType sets field value

func (*BrokerTaskData) SetUpdatedAt added in v0.4.0

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

SetUpdatedAt sets field value

func (*BrokerTaskData) UnsetErrorCode added in v0.4.0

func (o *BrokerTaskData) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*BrokerTaskData) UnsetErrorMessage added in v0.4.0

func (o *BrokerTaskData) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*BrokerTaskData) UnsetShutdownScheduled added in v0.4.0

func (o *BrokerTaskData) UnsetShutdownScheduled()

UnsetShutdownScheduled ensures that no value is present for ShutdownScheduled, not even an explicit nil

type BrokerTaskDataAllOf

type BrokerTaskDataAllOf struct {
	ClusterId         string            `json:"cluster_id,omitempty"`
	BrokerId          int32             `json:"broker_id,omitempty"`
	TaskType          BrokerTaskType    `json:"task_type,omitempty"`
	TaskStatus        string            `json:"task_status,omitempty"`
	ShutdownScheduled NullableBool      `json:"shutdown_scheduled,omitempty"`
	SubTaskStatuses   map[string]string `json:"sub_task_statuses,omitempty"`
	// The date and time at which this task was created.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// The date and time at which this task was last updated.
	UpdatedAt    time.Time      `json:"updated_at,omitempty"`
	ErrorCode    NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage NullableString `json:"error_message,omitempty"`
	Broker       Relationship   `json:"broker,omitempty"`
}

BrokerTaskDataAllOf struct for BrokerTaskDataAllOf

func NewBrokerTaskDataAllOf added in v0.4.0

func NewBrokerTaskDataAllOf(clusterId string, brokerId int32, taskType BrokerTaskType, taskStatus string, subTaskStatuses map[string]string, createdAt time.Time, updatedAt time.Time, broker Relationship) *BrokerTaskDataAllOf

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

func NewBrokerTaskDataAllOfWithDefaults added in v0.4.0

func NewBrokerTaskDataAllOfWithDefaults() *BrokerTaskDataAllOf

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

func (*BrokerTaskDataAllOf) GetBroker added in v0.4.0

func (o *BrokerTaskDataAllOf) GetBroker() Relationship

GetBroker returns the Broker field value

func (*BrokerTaskDataAllOf) GetBrokerId added in v0.4.0

func (o *BrokerTaskDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*BrokerTaskDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetBrokerIdOk() (*int32, bool)

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

func (*BrokerTaskDataAllOf) GetBrokerOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetBrokerOk() (*Relationship, bool)

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

func (*BrokerTaskDataAllOf) GetClusterId added in v0.4.0

func (o *BrokerTaskDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*BrokerTaskDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*BrokerTaskDataAllOf) GetCreatedAt added in v0.4.0

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

GetCreatedAt returns the CreatedAt field value

func (*BrokerTaskDataAllOf) GetCreatedAtOk added in v0.4.0

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

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

func (*BrokerTaskDataAllOf) GetErrorCode added in v0.4.0

func (o *BrokerTaskDataAllOf) GetErrorCode() int32

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

func (*BrokerTaskDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetErrorCodeOk() (*int32, bool)

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

func (*BrokerTaskDataAllOf) GetErrorMessage added in v0.4.0

func (o *BrokerTaskDataAllOf) GetErrorMessage() string

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

func (*BrokerTaskDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetErrorMessageOk() (*string, bool)

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

func (*BrokerTaskDataAllOf) GetShutdownScheduled added in v0.4.0

func (o *BrokerTaskDataAllOf) GetShutdownScheduled() bool

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

func (*BrokerTaskDataAllOf) GetShutdownScheduledOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetShutdownScheduledOk() (*bool, bool)

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

func (*BrokerTaskDataAllOf) GetSubTaskStatuses added in v0.4.0

func (o *BrokerTaskDataAllOf) GetSubTaskStatuses() map[string]string

GetSubTaskStatuses returns the SubTaskStatuses field value

func (*BrokerTaskDataAllOf) GetSubTaskStatusesOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetSubTaskStatusesOk() (*map[string]string, bool)

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

func (*BrokerTaskDataAllOf) GetTaskStatus added in v0.4.0

func (o *BrokerTaskDataAllOf) GetTaskStatus() string

GetTaskStatus returns the TaskStatus field value

func (*BrokerTaskDataAllOf) GetTaskStatusOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetTaskStatusOk() (*string, bool)

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

func (*BrokerTaskDataAllOf) GetTaskType added in v0.4.0

func (o *BrokerTaskDataAllOf) GetTaskType() BrokerTaskType

GetTaskType returns the TaskType field value

func (*BrokerTaskDataAllOf) GetTaskTypeOk added in v0.4.0

func (o *BrokerTaskDataAllOf) GetTaskTypeOk() (*BrokerTaskType, bool)

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

func (*BrokerTaskDataAllOf) GetUpdatedAt added in v0.4.0

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

GetUpdatedAt returns the UpdatedAt field value

func (*BrokerTaskDataAllOf) GetUpdatedAtOk added in v0.4.0

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

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

func (*BrokerTaskDataAllOf) HasErrorCode added in v0.4.0

func (o *BrokerTaskDataAllOf) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*BrokerTaskDataAllOf) HasErrorMessage added in v0.4.0

func (o *BrokerTaskDataAllOf) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*BrokerTaskDataAllOf) HasShutdownScheduled added in v0.4.0

func (o *BrokerTaskDataAllOf) HasShutdownScheduled() bool

HasShutdownScheduled returns a boolean if a field has been set.

func (BrokerTaskDataAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerTaskDataAllOf) Redact added in v0.4.0

func (o *BrokerTaskDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerTaskDataAllOf) SetBroker added in v0.4.0

func (o *BrokerTaskDataAllOf) SetBroker(v Relationship)

SetBroker sets field value

func (*BrokerTaskDataAllOf) SetBrokerId added in v0.4.0

func (o *BrokerTaskDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*BrokerTaskDataAllOf) SetClusterId added in v0.4.0

func (o *BrokerTaskDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*BrokerTaskDataAllOf) SetCreatedAt added in v0.4.0

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

SetCreatedAt sets field value

func (*BrokerTaskDataAllOf) SetErrorCode added in v0.4.0

func (o *BrokerTaskDataAllOf) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*BrokerTaskDataAllOf) SetErrorCodeNil added in v0.4.0

func (o *BrokerTaskDataAllOf) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*BrokerTaskDataAllOf) SetErrorMessage added in v0.4.0

func (o *BrokerTaskDataAllOf) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*BrokerTaskDataAllOf) SetErrorMessageNil added in v0.4.0

func (o *BrokerTaskDataAllOf) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*BrokerTaskDataAllOf) SetShutdownScheduled added in v0.4.0

func (o *BrokerTaskDataAllOf) SetShutdownScheduled(v bool)

SetShutdownScheduled gets a reference to the given NullableBool and assigns it to the ShutdownScheduled field.

func (*BrokerTaskDataAllOf) SetShutdownScheduledNil added in v0.4.0

func (o *BrokerTaskDataAllOf) SetShutdownScheduledNil()

SetShutdownScheduledNil sets the value for ShutdownScheduled to be an explicit nil

func (*BrokerTaskDataAllOf) SetSubTaskStatuses added in v0.4.0

func (o *BrokerTaskDataAllOf) SetSubTaskStatuses(v map[string]string)

SetSubTaskStatuses sets field value

func (*BrokerTaskDataAllOf) SetTaskStatus added in v0.4.0

func (o *BrokerTaskDataAllOf) SetTaskStatus(v string)

SetTaskStatus sets field value

func (*BrokerTaskDataAllOf) SetTaskType added in v0.4.0

func (o *BrokerTaskDataAllOf) SetTaskType(v BrokerTaskType)

SetTaskType sets field value

func (*BrokerTaskDataAllOf) SetUpdatedAt added in v0.4.0

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

SetUpdatedAt sets field value

func (*BrokerTaskDataAllOf) UnsetErrorCode added in v0.4.0

func (o *BrokerTaskDataAllOf) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*BrokerTaskDataAllOf) UnsetErrorMessage added in v0.4.0

func (o *BrokerTaskDataAllOf) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*BrokerTaskDataAllOf) UnsetShutdownScheduled added in v0.4.0

func (o *BrokerTaskDataAllOf) UnsetShutdownScheduled()

UnsetShutdownScheduled ensures that no value is present for ShutdownScheduled, not even an explicit nil

type BrokerTaskDataList

type BrokerTaskDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []BrokerTaskData           `json:"data,omitempty"`
}

BrokerTaskDataList struct for BrokerTaskDataList

func NewBrokerTaskDataList added in v0.4.0

func NewBrokerTaskDataList(kind string, metadata ResourceCollectionMetadata, data []BrokerTaskData) *BrokerTaskDataList

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

func NewBrokerTaskDataListWithDefaults added in v0.4.0

func NewBrokerTaskDataListWithDefaults() *BrokerTaskDataList

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

func (*BrokerTaskDataList) GetData added in v0.4.0

func (o *BrokerTaskDataList) GetData() []BrokerTaskData

GetData returns the Data field value

func (*BrokerTaskDataList) GetDataOk added in v0.4.0

func (o *BrokerTaskDataList) GetDataOk() (*[]BrokerTaskData, bool)

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

func (*BrokerTaskDataList) GetKind added in v0.4.0

func (o *BrokerTaskDataList) GetKind() string

GetKind returns the Kind field value

func (*BrokerTaskDataList) GetKindOk added in v0.4.0

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

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

func (*BrokerTaskDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*BrokerTaskDataList) GetMetadataOk added in v0.4.0

func (o *BrokerTaskDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (BrokerTaskDataList) MarshalJSON added in v0.4.0

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

func (*BrokerTaskDataList) Redact added in v0.4.0

func (o *BrokerTaskDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerTaskDataList) SetData added in v0.4.0

func (o *BrokerTaskDataList) SetData(v []BrokerTaskData)

SetData sets field value

func (*BrokerTaskDataList) SetKind added in v0.4.0

func (o *BrokerTaskDataList) SetKind(v string)

SetKind sets field value

func (*BrokerTaskDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type BrokerTaskDataListAllOf

type BrokerTaskDataListAllOf struct {
	Data []BrokerTaskData `json:"data,omitempty"`
}

BrokerTaskDataListAllOf struct for BrokerTaskDataListAllOf

func NewBrokerTaskDataListAllOf added in v0.4.0

func NewBrokerTaskDataListAllOf(data []BrokerTaskData) *BrokerTaskDataListAllOf

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

func NewBrokerTaskDataListAllOfWithDefaults added in v0.4.0

func NewBrokerTaskDataListAllOfWithDefaults() *BrokerTaskDataListAllOf

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

func (*BrokerTaskDataListAllOf) GetData added in v0.4.0

func (o *BrokerTaskDataListAllOf) GetData() []BrokerTaskData

GetData returns the Data field value

func (*BrokerTaskDataListAllOf) GetDataOk added in v0.4.0

func (o *BrokerTaskDataListAllOf) GetDataOk() (*[]BrokerTaskData, bool)

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

func (BrokerTaskDataListAllOf) MarshalJSON added in v0.4.0

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

func (*BrokerTaskDataListAllOf) Redact added in v0.4.0

func (o *BrokerTaskDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*BrokerTaskDataListAllOf) SetData added in v0.4.0

func (o *BrokerTaskDataListAllOf) SetData(v []BrokerTaskData)

SetData sets field value

type BrokerTaskType

type BrokerTaskType string

BrokerTaskType the model 'BrokerTaskType'

const (
	ADD_BROKER    BrokerTaskType = "add-broker"
	REMOVE_BROKER BrokerTaskType = "remove-broker"
)

List of BrokerTaskType

func NewBrokerTaskTypeFromValue added in v0.4.0

func NewBrokerTaskTypeFromValue(v string) (*BrokerTaskType, error)

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

func (BrokerTaskType) IsValid added in v0.4.0

func (v BrokerTaskType) IsValid() bool

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

func (BrokerTaskType) Ptr added in v0.4.0

func (v BrokerTaskType) Ptr() *BrokerTaskType

Ptr returns reference to BrokerTaskType value

func (*BrokerTaskType) UnmarshalJSON added in v0.4.0

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

type ClusterConfigData

type ClusterConfigData struct {
	Kind        string              `json:"kind,omitempty"`
	Metadata    ResourceMetadata    `json:"metadata,omitempty"`
	ClusterId   string              `json:"cluster_id,omitempty"`
	Name        string              `json:"name,omitempty"`
	Value       NullableString      `json:"value,omitempty"`
	IsDefault   bool                `json:"is_default,omitempty"`
	IsReadOnly  bool                `json:"is_read_only,omitempty"`
	IsSensitive bool                `json:"is_sensitive,omitempty"`
	Source      string              `json:"source,omitempty"`
	Synonyms    []ConfigSynonymData `json:"synonyms,omitempty"`
	ConfigType  string              `json:"config_type,omitempty"`
}

ClusterConfigData struct for ClusterConfigData

func NewClusterConfigData added in v0.4.0

func NewClusterConfigData(kind string, metadata ResourceMetadata, clusterId string, name string, isDefault bool, isReadOnly bool, isSensitive bool, source string, synonyms []ConfigSynonymData, configType string) *ClusterConfigData

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

func NewClusterConfigDataWithDefaults added in v0.4.0

func NewClusterConfigDataWithDefaults() *ClusterConfigData

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

func (*ClusterConfigData) GetClusterId added in v0.4.0

func (o *ClusterConfigData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ClusterConfigData) GetClusterIdOk added in v0.4.0

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

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

func (*ClusterConfigData) GetConfigType added in v0.4.0

func (o *ClusterConfigData) GetConfigType() string

GetConfigType returns the ConfigType field value

func (*ClusterConfigData) GetConfigTypeOk added in v0.4.0

func (o *ClusterConfigData) GetConfigTypeOk() (*string, bool)

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

func (*ClusterConfigData) GetIsDefault added in v0.4.0

func (o *ClusterConfigData) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*ClusterConfigData) GetIsDefaultOk added in v0.4.0

func (o *ClusterConfigData) GetIsDefaultOk() (*bool, bool)

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

func (*ClusterConfigData) GetIsReadOnly added in v0.4.0

func (o *ClusterConfigData) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value

func (*ClusterConfigData) GetIsReadOnlyOk added in v0.4.0

func (o *ClusterConfigData) GetIsReadOnlyOk() (*bool, bool)

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

func (*ClusterConfigData) GetIsSensitive added in v0.4.0

func (o *ClusterConfigData) GetIsSensitive() bool

GetIsSensitive returns the IsSensitive field value

func (*ClusterConfigData) GetIsSensitiveOk added in v0.4.0

func (o *ClusterConfigData) GetIsSensitiveOk() (*bool, bool)

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

func (*ClusterConfigData) GetKind added in v0.4.0

func (o *ClusterConfigData) GetKind() string

GetKind returns the Kind field value

func (*ClusterConfigData) GetKindOk added in v0.4.0

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

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

func (*ClusterConfigData) GetMetadata added in v0.4.0

func (o *ClusterConfigData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ClusterConfigData) GetMetadataOk added in v0.4.0

func (o *ClusterConfigData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ClusterConfigData) GetName added in v0.4.0

func (o *ClusterConfigData) GetName() string

GetName returns the Name field value

func (*ClusterConfigData) GetNameOk added in v0.4.0

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

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

func (*ClusterConfigData) GetSource added in v0.4.0

func (o *ClusterConfigData) GetSource() string

GetSource returns the Source field value

func (*ClusterConfigData) GetSourceOk added in v0.4.0

func (o *ClusterConfigData) GetSourceOk() (*string, bool)

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

func (*ClusterConfigData) GetSynonyms added in v0.4.0

func (o *ClusterConfigData) GetSynonyms() []ConfigSynonymData

GetSynonyms returns the Synonyms field value

func (*ClusterConfigData) GetSynonymsOk added in v0.4.0

func (o *ClusterConfigData) GetSynonymsOk() (*[]ConfigSynonymData, bool)

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

func (*ClusterConfigData) GetValue added in v0.4.0

func (o *ClusterConfigData) GetValue() string

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

func (*ClusterConfigData) GetValueOk added in v0.4.0

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

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

func (*ClusterConfigData) HasValue added in v0.4.0

func (o *ClusterConfigData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ClusterConfigData) MarshalJSON added in v0.4.0

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

func (*ClusterConfigData) Redact added in v0.4.0

func (o *ClusterConfigData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterConfigData) SetClusterId added in v0.4.0

func (o *ClusterConfigData) SetClusterId(v string)

SetClusterId sets field value

func (*ClusterConfigData) SetConfigType added in v0.4.0

func (o *ClusterConfigData) SetConfigType(v string)

SetConfigType sets field value

func (*ClusterConfigData) SetIsDefault added in v0.4.0

func (o *ClusterConfigData) SetIsDefault(v bool)

SetIsDefault sets field value

func (*ClusterConfigData) SetIsReadOnly added in v0.4.0

func (o *ClusterConfigData) SetIsReadOnly(v bool)

SetIsReadOnly sets field value

func (*ClusterConfigData) SetIsSensitive added in v0.4.0

func (o *ClusterConfigData) SetIsSensitive(v bool)

SetIsSensitive sets field value

func (*ClusterConfigData) SetKind added in v0.4.0

func (o *ClusterConfigData) SetKind(v string)

SetKind sets field value

func (*ClusterConfigData) SetMetadata added in v0.4.0

func (o *ClusterConfigData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ClusterConfigData) SetName added in v0.4.0

func (o *ClusterConfigData) SetName(v string)

SetName sets field value

func (*ClusterConfigData) SetSource added in v0.4.0

func (o *ClusterConfigData) SetSource(v string)

SetSource sets field value

func (*ClusterConfigData) SetSynonyms added in v0.4.0

func (o *ClusterConfigData) SetSynonyms(v []ConfigSynonymData)

SetSynonyms sets field value

func (*ClusterConfigData) SetValue added in v0.4.0

func (o *ClusterConfigData) SetValue(v string)

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

func (*ClusterConfigData) SetValueNil added in v0.4.0

func (o *ClusterConfigData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*ClusterConfigData) UnsetValue added in v0.4.0

func (o *ClusterConfigData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ClusterConfigDataAllOf

type ClusterConfigDataAllOf struct {
	ConfigType string `json:"config_type,omitempty"`
}

ClusterConfigDataAllOf struct for ClusterConfigDataAllOf

func NewClusterConfigDataAllOf added in v0.4.0

func NewClusterConfigDataAllOf(configType string) *ClusterConfigDataAllOf

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

func NewClusterConfigDataAllOfWithDefaults added in v0.4.0

func NewClusterConfigDataAllOfWithDefaults() *ClusterConfigDataAllOf

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

func (*ClusterConfigDataAllOf) GetConfigType added in v0.4.0

func (o *ClusterConfigDataAllOf) GetConfigType() string

GetConfigType returns the ConfigType field value

func (*ClusterConfigDataAllOf) GetConfigTypeOk added in v0.4.0

func (o *ClusterConfigDataAllOf) GetConfigTypeOk() (*string, bool)

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

func (ClusterConfigDataAllOf) MarshalJSON added in v0.4.0

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

func (*ClusterConfigDataAllOf) Redact added in v0.4.0

func (o *ClusterConfigDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterConfigDataAllOf) SetConfigType added in v0.4.0

func (o *ClusterConfigDataAllOf) SetConfigType(v string)

SetConfigType sets field value

type ClusterConfigDataList

type ClusterConfigDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ClusterConfigData        `json:"data,omitempty"`
}

ClusterConfigDataList struct for ClusterConfigDataList

func NewClusterConfigDataList added in v0.4.0

func NewClusterConfigDataList(kind string, metadata ResourceCollectionMetadata, data []ClusterConfigData) *ClusterConfigDataList

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

func NewClusterConfigDataListWithDefaults added in v0.4.0

func NewClusterConfigDataListWithDefaults() *ClusterConfigDataList

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

func (*ClusterConfigDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ClusterConfigDataList) GetDataOk added in v0.4.0

func (o *ClusterConfigDataList) GetDataOk() (*[]ClusterConfigData, bool)

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

func (*ClusterConfigDataList) GetKind added in v0.4.0

func (o *ClusterConfigDataList) GetKind() string

GetKind returns the Kind field value

func (*ClusterConfigDataList) GetKindOk added in v0.4.0

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

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

func (*ClusterConfigDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ClusterConfigDataList) GetMetadataOk added in v0.4.0

func (o *ClusterConfigDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (ClusterConfigDataList) MarshalJSON added in v0.4.0

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

func (*ClusterConfigDataList) Redact added in v0.4.0

func (o *ClusterConfigDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterConfigDataList) SetData added in v0.4.0

func (o *ClusterConfigDataList) SetData(v []ClusterConfigData)

SetData sets field value

func (*ClusterConfigDataList) SetKind added in v0.4.0

func (o *ClusterConfigDataList) SetKind(v string)

SetKind sets field value

func (*ClusterConfigDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ClusterConfigDataListAllOf

type ClusterConfigDataListAllOf struct {
	Data []ClusterConfigData `json:"data,omitempty"`
}

ClusterConfigDataListAllOf struct for ClusterConfigDataListAllOf

func NewClusterConfigDataListAllOf added in v0.4.0

func NewClusterConfigDataListAllOf(data []ClusterConfigData) *ClusterConfigDataListAllOf

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

func NewClusterConfigDataListAllOfWithDefaults added in v0.4.0

func NewClusterConfigDataListAllOfWithDefaults() *ClusterConfigDataListAllOf

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

func (*ClusterConfigDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ClusterConfigDataListAllOf) GetDataOk added in v0.4.0

func (o *ClusterConfigDataListAllOf) GetDataOk() (*[]ClusterConfigData, bool)

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

func (ClusterConfigDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ClusterConfigDataListAllOf) Redact added in v0.4.0

func (o *ClusterConfigDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterConfigDataListAllOf) SetData added in v0.4.0

SetData sets field value

type ClusterData

type ClusterData struct {
	Kind                   string           `json:"kind,omitempty"`
	Metadata               ResourceMetadata `json:"metadata,omitempty"`
	ClusterId              string           `json:"cluster_id,omitempty"`
	Controller             *Relationship    `json:"controller,omitempty"`
	Acls                   Relationship     `json:"acls,omitempty"`
	Brokers                Relationship     `json:"brokers,omitempty"`
	BrokerConfigs          Relationship     `json:"broker_configs,omitempty"`
	ConsumerGroups         Relationship     `json:"consumer_groups,omitempty"`
	Topics                 Relationship     `json:"topics,omitempty"`
	PartitionReassignments Relationship     `json:"partition_reassignments,omitempty"`
}

ClusterData struct for ClusterData

func NewClusterData added in v0.4.0

func NewClusterData(kind string, metadata ResourceMetadata, clusterId string, acls Relationship, brokers Relationship, brokerConfigs Relationship, consumerGroups Relationship, topics Relationship, partitionReassignments Relationship) *ClusterData

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

func NewClusterDataWithDefaults added in v0.4.0

func NewClusterDataWithDefaults() *ClusterData

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

func (*ClusterData) GetAcls added in v0.4.0

func (o *ClusterData) GetAcls() Relationship

GetAcls returns the Acls field value

func (*ClusterData) GetAclsOk added in v0.4.0

func (o *ClusterData) GetAclsOk() (*Relationship, bool)

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

func (*ClusterData) GetBrokerConfigs added in v0.4.0

func (o *ClusterData) GetBrokerConfigs() Relationship

GetBrokerConfigs returns the BrokerConfigs field value

func (*ClusterData) GetBrokerConfigsOk added in v0.4.0

func (o *ClusterData) GetBrokerConfigsOk() (*Relationship, bool)

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

func (*ClusterData) GetBrokers added in v0.4.0

func (o *ClusterData) GetBrokers() Relationship

GetBrokers returns the Brokers field value

func (*ClusterData) GetBrokersOk added in v0.4.0

func (o *ClusterData) GetBrokersOk() (*Relationship, bool)

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

func (*ClusterData) GetClusterId added in v0.4.0

func (o *ClusterData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ClusterData) GetClusterIdOk added in v0.4.0

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

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

func (*ClusterData) GetConsumerGroups added in v0.4.0

func (o *ClusterData) GetConsumerGroups() Relationship

GetConsumerGroups returns the ConsumerGroups field value

func (*ClusterData) GetConsumerGroupsOk added in v0.4.0

func (o *ClusterData) GetConsumerGroupsOk() (*Relationship, bool)

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

func (*ClusterData) GetController added in v0.4.0

func (o *ClusterData) GetController() Relationship

GetController returns the Controller field value if set, zero value otherwise.

func (*ClusterData) GetControllerOk added in v0.4.0

func (o *ClusterData) GetControllerOk() (*Relationship, bool)

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

func (*ClusterData) GetKind added in v0.4.0

func (o *ClusterData) GetKind() string

GetKind returns the Kind field value

func (*ClusterData) GetKindOk added in v0.4.0

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

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

func (*ClusterData) GetMetadata added in v0.4.0

func (o *ClusterData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ClusterData) GetMetadataOk added in v0.4.0

func (o *ClusterData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ClusterData) GetPartitionReassignments added in v0.4.0

func (o *ClusterData) GetPartitionReassignments() Relationship

GetPartitionReassignments returns the PartitionReassignments field value

func (*ClusterData) GetPartitionReassignmentsOk added in v0.4.0

func (o *ClusterData) GetPartitionReassignmentsOk() (*Relationship, bool)

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

func (*ClusterData) GetTopics added in v0.4.0

func (o *ClusterData) GetTopics() Relationship

GetTopics returns the Topics field value

func (*ClusterData) GetTopicsOk added in v0.4.0

func (o *ClusterData) GetTopicsOk() (*Relationship, bool)

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

func (*ClusterData) HasController added in v0.4.0

func (o *ClusterData) HasController() bool

HasController returns a boolean if a field has been set.

func (ClusterData) MarshalJSON added in v0.4.0

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

func (*ClusterData) Redact added in v0.4.0

func (o *ClusterData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterData) SetAcls added in v0.4.0

func (o *ClusterData) SetAcls(v Relationship)

SetAcls sets field value

func (*ClusterData) SetBrokerConfigs added in v0.4.0

func (o *ClusterData) SetBrokerConfigs(v Relationship)

SetBrokerConfigs sets field value

func (*ClusterData) SetBrokers added in v0.4.0

func (o *ClusterData) SetBrokers(v Relationship)

SetBrokers sets field value

func (*ClusterData) SetClusterId added in v0.4.0

func (o *ClusterData) SetClusterId(v string)

SetClusterId sets field value

func (*ClusterData) SetConsumerGroups added in v0.4.0

func (o *ClusterData) SetConsumerGroups(v Relationship)

SetConsumerGroups sets field value

func (*ClusterData) SetController added in v0.4.0

func (o *ClusterData) SetController(v Relationship)

SetController gets a reference to the given Relationship and assigns it to the Controller field.

func (*ClusterData) SetKind added in v0.4.0

func (o *ClusterData) SetKind(v string)

SetKind sets field value

func (*ClusterData) SetMetadata added in v0.4.0

func (o *ClusterData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ClusterData) SetPartitionReassignments added in v0.4.0

func (o *ClusterData) SetPartitionReassignments(v Relationship)

SetPartitionReassignments sets field value

func (*ClusterData) SetTopics added in v0.4.0

func (o *ClusterData) SetTopics(v Relationship)

SetTopics sets field value

type ClusterDataAllOf

type ClusterDataAllOf struct {
	ClusterId              string        `json:"cluster_id,omitempty"`
	Controller             *Relationship `json:"controller,omitempty"`
	Acls                   Relationship  `json:"acls,omitempty"`
	Brokers                Relationship  `json:"brokers,omitempty"`
	BrokerConfigs          Relationship  `json:"broker_configs,omitempty"`
	ConsumerGroups         Relationship  `json:"consumer_groups,omitempty"`
	Topics                 Relationship  `json:"topics,omitempty"`
	PartitionReassignments Relationship  `json:"partition_reassignments,omitempty"`
}

ClusterDataAllOf struct for ClusterDataAllOf

func NewClusterDataAllOf added in v0.4.0

func NewClusterDataAllOf(clusterId string, acls Relationship, brokers Relationship, brokerConfigs Relationship, consumerGroups Relationship, topics Relationship, partitionReassignments Relationship) *ClusterDataAllOf

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

func NewClusterDataAllOfWithDefaults added in v0.4.0

func NewClusterDataAllOfWithDefaults() *ClusterDataAllOf

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

func (*ClusterDataAllOf) GetAcls added in v0.4.0

func (o *ClusterDataAllOf) GetAcls() Relationship

GetAcls returns the Acls field value

func (*ClusterDataAllOf) GetAclsOk added in v0.4.0

func (o *ClusterDataAllOf) GetAclsOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetBrokerConfigs added in v0.4.0

func (o *ClusterDataAllOf) GetBrokerConfigs() Relationship

GetBrokerConfigs returns the BrokerConfigs field value

func (*ClusterDataAllOf) GetBrokerConfigsOk added in v0.4.0

func (o *ClusterDataAllOf) GetBrokerConfigsOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetBrokers added in v0.4.0

func (o *ClusterDataAllOf) GetBrokers() Relationship

GetBrokers returns the Brokers field value

func (*ClusterDataAllOf) GetBrokersOk added in v0.4.0

func (o *ClusterDataAllOf) GetBrokersOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetClusterId added in v0.4.0

func (o *ClusterDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ClusterDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ClusterDataAllOf) GetConsumerGroups added in v0.4.0

func (o *ClusterDataAllOf) GetConsumerGroups() Relationship

GetConsumerGroups returns the ConsumerGroups field value

func (*ClusterDataAllOf) GetConsumerGroupsOk added in v0.4.0

func (o *ClusterDataAllOf) GetConsumerGroupsOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetController added in v0.4.0

func (o *ClusterDataAllOf) GetController() Relationship

GetController returns the Controller field value if set, zero value otherwise.

func (*ClusterDataAllOf) GetControllerOk added in v0.4.0

func (o *ClusterDataAllOf) GetControllerOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetPartitionReassignments added in v0.4.0

func (o *ClusterDataAllOf) GetPartitionReassignments() Relationship

GetPartitionReassignments returns the PartitionReassignments field value

func (*ClusterDataAllOf) GetPartitionReassignmentsOk added in v0.4.0

func (o *ClusterDataAllOf) GetPartitionReassignmentsOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) GetTopics added in v0.4.0

func (o *ClusterDataAllOf) GetTopics() Relationship

GetTopics returns the Topics field value

func (*ClusterDataAllOf) GetTopicsOk added in v0.4.0

func (o *ClusterDataAllOf) GetTopicsOk() (*Relationship, bool)

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

func (*ClusterDataAllOf) HasController added in v0.4.0

func (o *ClusterDataAllOf) HasController() bool

HasController returns a boolean if a field has been set.

func (ClusterDataAllOf) MarshalJSON added in v0.4.0

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

func (*ClusterDataAllOf) Redact added in v0.4.0

func (o *ClusterDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterDataAllOf) SetAcls added in v0.4.0

func (o *ClusterDataAllOf) SetAcls(v Relationship)

SetAcls sets field value

func (*ClusterDataAllOf) SetBrokerConfigs added in v0.4.0

func (o *ClusterDataAllOf) SetBrokerConfigs(v Relationship)

SetBrokerConfigs sets field value

func (*ClusterDataAllOf) SetBrokers added in v0.4.0

func (o *ClusterDataAllOf) SetBrokers(v Relationship)

SetBrokers sets field value

func (*ClusterDataAllOf) SetClusterId added in v0.4.0

func (o *ClusterDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ClusterDataAllOf) SetConsumerGroups added in v0.4.0

func (o *ClusterDataAllOf) SetConsumerGroups(v Relationship)

SetConsumerGroups sets field value

func (*ClusterDataAllOf) SetController added in v0.4.0

func (o *ClusterDataAllOf) SetController(v Relationship)

SetController gets a reference to the given Relationship and assigns it to the Controller field.

func (*ClusterDataAllOf) SetPartitionReassignments added in v0.4.0

func (o *ClusterDataAllOf) SetPartitionReassignments(v Relationship)

SetPartitionReassignments sets field value

func (*ClusterDataAllOf) SetTopics added in v0.4.0

func (o *ClusterDataAllOf) SetTopics(v Relationship)

SetTopics sets field value

type ClusterDataList

type ClusterDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ClusterData              `json:"data,omitempty"`
}

ClusterDataList struct for ClusterDataList

func NewClusterDataList added in v0.4.0

func NewClusterDataList(kind string, metadata ResourceCollectionMetadata, data []ClusterData) *ClusterDataList

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

func NewClusterDataListWithDefaults added in v0.4.0

func NewClusterDataListWithDefaults() *ClusterDataList

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

func (*ClusterDataList) GetData added in v0.4.0

func (o *ClusterDataList) GetData() []ClusterData

GetData returns the Data field value

func (*ClusterDataList) GetDataOk added in v0.4.0

func (o *ClusterDataList) GetDataOk() (*[]ClusterData, bool)

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

func (*ClusterDataList) GetKind added in v0.4.0

func (o *ClusterDataList) GetKind() string

GetKind returns the Kind field value

func (*ClusterDataList) GetKindOk added in v0.4.0

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

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

func (*ClusterDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ClusterDataList) GetMetadataOk added in v0.4.0

func (o *ClusterDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (ClusterDataList) MarshalJSON added in v0.4.0

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

func (*ClusterDataList) Redact added in v0.4.0

func (o *ClusterDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterDataList) SetData added in v0.4.0

func (o *ClusterDataList) SetData(v []ClusterData)

SetData sets field value

func (*ClusterDataList) SetKind added in v0.4.0

func (o *ClusterDataList) SetKind(v string)

SetKind sets field value

func (*ClusterDataList) SetMetadata added in v0.4.0

func (o *ClusterDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type ClusterDataListAllOf

type ClusterDataListAllOf struct {
	Data []ClusterData `json:"data,omitempty"`
}

ClusterDataListAllOf struct for ClusterDataListAllOf

func NewClusterDataListAllOf added in v0.4.0

func NewClusterDataListAllOf(data []ClusterData) *ClusterDataListAllOf

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

func NewClusterDataListAllOfWithDefaults added in v0.4.0

func NewClusterDataListAllOfWithDefaults() *ClusterDataListAllOf

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

func (*ClusterDataListAllOf) GetData added in v0.4.0

func (o *ClusterDataListAllOf) GetData() []ClusterData

GetData returns the Data field value

func (*ClusterDataListAllOf) GetDataOk added in v0.4.0

func (o *ClusterDataListAllOf) GetDataOk() (*[]ClusterData, bool)

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

func (ClusterDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ClusterDataListAllOf) Redact added in v0.4.0

func (o *ClusterDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ClusterDataListAllOf) SetData added in v0.4.0

func (o *ClusterDataListAllOf) SetData(v []ClusterData)

SetData sets field value

type ClusterLinkingV3Api

type ClusterLinkingV3Api interface {

	/*
		CreateKafkaLink Create a cluster link

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @return ApiCreateKafkaLinkRequest
	*/
	CreateKafkaLink(ctx _context.Context, clusterId string) ApiCreateKafkaLinkRequest

	// CreateKafkaLinkExecute executes the request
	CreateKafkaLinkExecute(r ApiCreateKafkaLinkRequest) (*_nethttp.Response, error)

	/*
			CreateKafkaMirrorTopic Create a mirror topic

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Create a topic in the destination cluster mirroring a topic in
		the source cluster

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param linkName The link name
			 @return ApiCreateKafkaMirrorTopicRequest
	*/
	CreateKafkaMirrorTopic(ctx _context.Context, clusterId string, linkName string) ApiCreateKafkaMirrorTopicRequest

	// CreateKafkaMirrorTopicExecute executes the request
	CreateKafkaMirrorTopicExecute(r ApiCreateKafkaMirrorTopicRequest) (*_nethttp.Response, error)

	/*
		DeleteKafkaLink Delete the cluster link

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiDeleteKafkaLinkRequest
	*/
	DeleteKafkaLink(ctx _context.Context, clusterId string, linkName string) ApiDeleteKafkaLinkRequest

	// DeleteKafkaLinkExecute executes the request
	DeleteKafkaLinkExecute(r ApiDeleteKafkaLinkRequest) (*_nethttp.Response, error)

	/*
		DeleteKafkaLinkConfig Reset the given config to default value

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @param configName The link config name
		 @return ApiDeleteKafkaLinkConfigRequest
	*/
	DeleteKafkaLinkConfig(ctx _context.Context, clusterId string, linkName string, configName string) ApiDeleteKafkaLinkConfigRequest

	// DeleteKafkaLinkConfigExecute executes the request
	DeleteKafkaLinkConfigExecute(r ApiDeleteKafkaLinkConfigRequest) (*_nethttp.Response, error)

	/*
			GetKafkaLink Describe the cluster link

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		“link_id“ in “ListLinksResponseData“ is deprecated and may be removed in a future release. Use the new “cluster_link_id“ instead.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param linkName The link name
			 @return ApiGetKafkaLinkRequest
	*/
	GetKafkaLink(ctx _context.Context, clusterId string, linkName string) ApiGetKafkaLinkRequest

	// GetKafkaLinkExecute executes the request
	//  @return ListLinksResponseData
	GetKafkaLinkExecute(r ApiGetKafkaLinkRequest) (ListLinksResponseData, *_nethttp.Response, error)

	/*
		GetKafkaLinkConfigs Describe the config under the cluster link

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @param configName The link config name
		 @return ApiGetKafkaLinkConfigsRequest
	*/
	GetKafkaLinkConfigs(ctx _context.Context, clusterId string, linkName string, configName string) ApiGetKafkaLinkConfigsRequest

	// GetKafkaLinkConfigsExecute executes the request
	//  @return ListLinkConfigsResponseData
	GetKafkaLinkConfigsExecute(r ApiGetKafkaLinkConfigsRequest) (ListLinkConfigsResponseData, *_nethttp.Response, error)

	/*
		ListKafkaLinkConfigs List all configs of the cluster link

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiListKafkaLinkConfigsRequest
	*/
	ListKafkaLinkConfigs(ctx _context.Context, clusterId string, linkName string) ApiListKafkaLinkConfigsRequest

	// ListKafkaLinkConfigsExecute executes the request
	//  @return ListLinkConfigsResponseDataList
	ListKafkaLinkConfigsExecute(r ApiListKafkaLinkConfigsRequest) (ListLinkConfigsResponseDataList, *_nethttp.Response, error)

	/*
			ListKafkaLinks List all cluster links in the dest cluster

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		“link_id“ in “ListLinksResponseData“ is deprecated and may be removed in a future release. Use the new “cluster_link_id“ instead.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaLinksRequest
	*/
	ListKafkaLinks(ctx _context.Context, clusterId string) ApiListKafkaLinksRequest

	// ListKafkaLinksExecute executes the request
	//  @return ListLinksResponseDataList
	ListKafkaLinksExecute(r ApiListKafkaLinksRequest) (ListLinksResponseDataList, *_nethttp.Response, error)

	/*
			ListKafkaMirrorTopics List mirror topics

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		List all mirror topics in the cluster

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaMirrorTopicsRequest
	*/
	ListKafkaMirrorTopics(ctx _context.Context, clusterId string) ApiListKafkaMirrorTopicsRequest

	// ListKafkaMirrorTopicsExecute executes the request
	//  @return ListMirrorTopicsResponseDataList
	ListKafkaMirrorTopicsExecute(r ApiListKafkaMirrorTopicsRequest) (ListMirrorTopicsResponseDataList, *_nethttp.Response, error)

	/*
			ListKafkaMirrorTopicsUnderLink List mirror topics

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		List all mirror topics under the link

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param linkName The link name
			 @return ApiListKafkaMirrorTopicsUnderLinkRequest
	*/
	ListKafkaMirrorTopicsUnderLink(ctx _context.Context, clusterId string, linkName string) ApiListKafkaMirrorTopicsUnderLinkRequest

	// ListKafkaMirrorTopicsUnderLinkExecute executes the request
	//  @return ListMirrorTopicsResponseDataList
	ListKafkaMirrorTopicsUnderLinkExecute(r ApiListKafkaMirrorTopicsUnderLinkRequest) (ListMirrorTopicsResponseDataList, *_nethttp.Response, error)

	/*
		ReadKafkaMirrorTopic Describe the mirror topic

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @param mirrorTopicName Cluster Linking mirror topic name
		 @return ApiReadKafkaMirrorTopicRequest
	*/
	ReadKafkaMirrorTopic(ctx _context.Context, clusterId string, linkName string, mirrorTopicName string) ApiReadKafkaMirrorTopicRequest

	// ReadKafkaMirrorTopicExecute executes the request
	//  @return ListMirrorTopicsResponseData
	ReadKafkaMirrorTopicExecute(r ApiReadKafkaMirrorTopicRequest) (ListMirrorTopicsResponseData, *_nethttp.Response, error)

	/*
		UpdateKafkaLinkConfig Alter the config under the cluster link

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @param configName The link config name
		 @return ApiUpdateKafkaLinkConfigRequest
	*/
	UpdateKafkaLinkConfig(ctx _context.Context, clusterId string, linkName string, configName string) ApiUpdateKafkaLinkConfigRequest

	// UpdateKafkaLinkConfigExecute executes the request
	UpdateKafkaLinkConfigExecute(r ApiUpdateKafkaLinkConfigRequest) (*_nethttp.Response, error)

	/*
			UpdateKafkaLinkConfigBatch Batch Alter Cluster Link Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Batch Alter Cluster Link Configs

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param linkName The link name
			 @return ApiUpdateKafkaLinkConfigBatchRequest
	*/
	UpdateKafkaLinkConfigBatch(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaLinkConfigBatchRequest

	// UpdateKafkaLinkConfigBatchExecute executes the request
	UpdateKafkaLinkConfigBatchExecute(r ApiUpdateKafkaLinkConfigBatchRequest) (*_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsFailover Failover the mirror topics

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsFailoverRequest
	*/
	UpdateKafkaMirrorTopicsFailover(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsFailoverRequest

	// UpdateKafkaMirrorTopicsFailoverExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsFailoverExecute(r ApiUpdateKafkaMirrorTopicsFailoverRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsPause Pause the mirror topics

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsPauseRequest
	*/
	UpdateKafkaMirrorTopicsPause(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsPauseRequest

	// UpdateKafkaMirrorTopicsPauseExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsPauseExecute(r ApiUpdateKafkaMirrorTopicsPauseRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsPromote Promote the mirror topics

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsPromoteRequest
	*/
	UpdateKafkaMirrorTopicsPromote(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsPromoteRequest

	// UpdateKafkaMirrorTopicsPromoteExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsPromoteExecute(r ApiUpdateKafkaMirrorTopicsPromoteRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsResume Resume the mirror topics

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsResumeRequest
	*/
	UpdateKafkaMirrorTopicsResume(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsResumeRequest

	// UpdateKafkaMirrorTopicsResumeExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsResumeExecute(r ApiUpdateKafkaMirrorTopicsResumeRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsReverseAndPauseMirror Reverse the local mirror topic and Pause the remote mirror topic

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest
	*/
	UpdateKafkaMirrorTopicsReverseAndPauseMirror(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest

	// UpdateKafkaMirrorTopicsReverseAndPauseMirrorExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsReverseAndPauseMirrorExecute(r ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)

	/*
		UpdateKafkaMirrorTopicsReverseAndStartMirror Reverse the local mirror topic and start the remote mirror topic

		[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		 @param clusterId The Kafka cluster ID.
		 @param linkName The link name
		 @return ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest
	*/
	UpdateKafkaMirrorTopicsReverseAndStartMirror(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest

	// UpdateKafkaMirrorTopicsReverseAndStartMirrorExecute executes the request
	//  @return AlterMirrorStatusResponseDataList
	UpdateKafkaMirrorTopicsReverseAndStartMirrorExecute(r ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest) (AlterMirrorStatusResponseDataList, *_nethttp.Response, error)
}

type ClusterLinkingV3ApiService

type ClusterLinkingV3ApiService service

ClusterLinkingV3ApiService ClusterLinkingV3Api service

func (a *ClusterLinkingV3ApiService) CreateKafkaLink(ctx _context.Context, clusterId string) ApiCreateKafkaLinkRequest

CreateKafkaLink Create a cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiCreateKafkaLinkRequest

func (*ClusterLinkingV3ApiService) CreateKafkaLinkExecute added in v0.4.0

Execute executes the request

func (*ClusterLinkingV3ApiService) CreateKafkaMirrorTopic added in v0.4.0

func (a *ClusterLinkingV3ApiService) CreateKafkaMirrorTopic(ctx _context.Context, clusterId string, linkName string) ApiCreateKafkaMirrorTopicRequest

CreateKafkaMirrorTopic Create a mirror topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Create a topic in the destination cluster mirroring a topic in the source cluster

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiCreateKafkaMirrorTopicRequest

func (*ClusterLinkingV3ApiService) CreateKafkaMirrorTopicExecute added in v0.4.0

func (a *ClusterLinkingV3ApiService) CreateKafkaMirrorTopicExecute(r ApiCreateKafkaMirrorTopicRequest) (*_nethttp.Response, error)

Execute executes the request

func (a *ClusterLinkingV3ApiService) DeleteKafkaLink(ctx _context.Context, clusterId string, linkName string) ApiDeleteKafkaLinkRequest

DeleteKafkaLink Delete the cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiDeleteKafkaLinkRequest

func (*ClusterLinkingV3ApiService) DeleteKafkaLinkConfig added in v0.4.0

func (a *ClusterLinkingV3ApiService) DeleteKafkaLinkConfig(ctx _context.Context, clusterId string, linkName string, configName string) ApiDeleteKafkaLinkConfigRequest

DeleteKafkaLinkConfig Reset the given config to default value

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@param configName The link config name
@return ApiDeleteKafkaLinkConfigRequest

func (*ClusterLinkingV3ApiService) DeleteKafkaLinkConfigExecute added in v0.4.0

func (a *ClusterLinkingV3ApiService) DeleteKafkaLinkConfigExecute(r ApiDeleteKafkaLinkConfigRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ClusterLinkingV3ApiService) DeleteKafkaLinkExecute added in v0.4.0

Execute executes the request

func (a *ClusterLinkingV3ApiService) GetKafkaLink(ctx _context.Context, clusterId string, linkName string) ApiGetKafkaLinkRequest

GetKafkaLink Describe the cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

“link_id“ in “ListLinksResponseData“ is deprecated and may be removed in a future release. Use the new “cluster_link_id“ instead.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiGetKafkaLinkRequest

func (*ClusterLinkingV3ApiService) GetKafkaLinkConfigs added in v0.4.0

func (a *ClusterLinkingV3ApiService) GetKafkaLinkConfigs(ctx _context.Context, clusterId string, linkName string, configName string) ApiGetKafkaLinkConfigsRequest

GetKafkaLinkConfigs Describe the config under the cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@param configName The link config name
@return ApiGetKafkaLinkConfigsRequest

func (*ClusterLinkingV3ApiService) GetKafkaLinkConfigsExecute added in v0.4.0

Execute executes the request

@return ListLinkConfigsResponseData

func (*ClusterLinkingV3ApiService) GetKafkaLinkExecute added in v0.4.0

Execute executes the request

@return ListLinksResponseData

func (*ClusterLinkingV3ApiService) ListKafkaLinkConfigs added in v0.4.0

func (a *ClusterLinkingV3ApiService) ListKafkaLinkConfigs(ctx _context.Context, clusterId string, linkName string) ApiListKafkaLinkConfigsRequest

ListKafkaLinkConfigs List all configs of the cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiListKafkaLinkConfigsRequest

func (*ClusterLinkingV3ApiService) ListKafkaLinkConfigsExecute added in v0.4.0

Execute executes the request

@return ListLinkConfigsResponseDataList

ListKafkaLinks List all cluster links in the dest cluster

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

“link_id“ in “ListLinksResponseData“ is deprecated and may be removed in a future release. Use the new “cluster_link_id“ instead.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaLinksRequest

func (*ClusterLinkingV3ApiService) ListKafkaLinksExecute added in v0.4.0

Execute executes the request

@return ListLinksResponseDataList

func (*ClusterLinkingV3ApiService) ListKafkaMirrorTopics added in v0.4.0

func (a *ClusterLinkingV3ApiService) ListKafkaMirrorTopics(ctx _context.Context, clusterId string) ApiListKafkaMirrorTopicsRequest

ListKafkaMirrorTopics List mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

List all mirror topics in the cluster

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaMirrorTopicsRequest

func (*ClusterLinkingV3ApiService) ListKafkaMirrorTopicsExecute added in v0.4.0

Execute executes the request

@return ListMirrorTopicsResponseDataList
func (a *ClusterLinkingV3ApiService) ListKafkaMirrorTopicsUnderLink(ctx _context.Context, clusterId string, linkName string) ApiListKafkaMirrorTopicsUnderLinkRequest

ListKafkaMirrorTopicsUnderLink List mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

List all mirror topics under the link

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiListKafkaMirrorTopicsUnderLinkRequest

func (*ClusterLinkingV3ApiService) ListKafkaMirrorTopicsUnderLinkExecute added in v0.4.0

Execute executes the request

@return ListMirrorTopicsResponseDataList

func (*ClusterLinkingV3ApiService) ReadKafkaMirrorTopic added in v0.4.0

func (a *ClusterLinkingV3ApiService) ReadKafkaMirrorTopic(ctx _context.Context, clusterId string, linkName string, mirrorTopicName string) ApiReadKafkaMirrorTopicRequest

ReadKafkaMirrorTopic Describe the mirror topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@param mirrorTopicName Cluster Linking mirror topic name
@return ApiReadKafkaMirrorTopicRequest

func (*ClusterLinkingV3ApiService) ReadKafkaMirrorTopicExecute added in v0.4.0

Execute executes the request

@return ListMirrorTopicsResponseData

func (*ClusterLinkingV3ApiService) UpdateKafkaLinkConfig added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaLinkConfig(ctx _context.Context, clusterId string, linkName string, configName string) ApiUpdateKafkaLinkConfigRequest

UpdateKafkaLinkConfig Alter the config under the cluster link

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@param configName The link config name
@return ApiUpdateKafkaLinkConfigRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaLinkConfigBatch added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaLinkConfigBatch(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaLinkConfigBatchRequest

UpdateKafkaLinkConfigBatch Batch Alter Cluster Link Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Batch Alter Cluster Link Configs

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaLinkConfigBatchRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaLinkConfigBatchExecute added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaLinkConfigBatchExecute(r ApiUpdateKafkaLinkConfigBatchRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ClusterLinkingV3ApiService) UpdateKafkaLinkConfigExecute added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaLinkConfigExecute(r ApiUpdateKafkaLinkConfigRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsFailover added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsFailover(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsFailoverRequest

UpdateKafkaMirrorTopicsFailover Failover the mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsFailoverRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsFailoverExecute added in v0.4.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPause added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPause(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsPauseRequest

UpdateKafkaMirrorTopicsPause Pause the mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsPauseRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPauseExecute added in v0.4.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPromote added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPromote(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsPromoteRequest

UpdateKafkaMirrorTopicsPromote Promote the mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsPromoteRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsPromoteExecute added in v0.4.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsResume added in v0.4.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsResume(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsResumeRequest

UpdateKafkaMirrorTopicsResume Resume the mirror topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsResumeRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsResumeExecute added in v0.4.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndPauseMirror added in v0.17.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndPauseMirror(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest

UpdateKafkaMirrorTopicsReverseAndPauseMirror Reverse the local mirror topic and Pause the remote mirror topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsReverseAndPauseMirrorRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndPauseMirrorExecute added in v0.17.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndStartMirror added in v0.17.0

func (a *ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndStartMirror(ctx _context.Context, clusterId string, linkName string) ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest

UpdateKafkaMirrorTopicsReverseAndStartMirror Reverse the local mirror topic and start the remote mirror topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param linkName The link name
@return ApiUpdateKafkaMirrorTopicsReverseAndStartMirrorRequest

func (*ClusterLinkingV3ApiService) UpdateKafkaMirrorTopicsReverseAndStartMirrorExecute added in v0.17.0

Execute executes the request

@return AlterMirrorStatusResponseDataList

type ClusterV3Api

type ClusterV3Api interface {

	/*
			GetKafkaCluster Get Cluster

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the Kafka cluster with the specified “cluster_id“.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiGetKafkaClusterRequest
	*/
	GetKafkaCluster(ctx _context.Context, clusterId string) ApiGetKafkaClusterRequest

	// GetKafkaClusterExecute executes the request
	//  @return ClusterData
	GetKafkaClusterExecute(r ApiGetKafkaClusterRequest) (ClusterData, *_nethttp.Response, error)
}

type ClusterV3ApiService

type ClusterV3ApiService service

ClusterV3ApiService ClusterV3Api service

func (*ClusterV3ApiService) GetKafkaCluster added in v0.4.0

func (a *ClusterV3ApiService) GetKafkaCluster(ctx _context.Context, clusterId string) ApiGetKafkaClusterRequest

GetKafkaCluster Get Cluster

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the Kafka cluster with the specified “cluster_id“.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiGetKafkaClusterRequest

func (*ClusterV3ApiService) GetKafkaClusterExecute added in v0.4.0

Execute executes the request

@return ClusterData

type ConfigData

type ConfigData struct {
	Name  string         `json:"name,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

ConfigData struct for ConfigData

func NewConfigData added in v0.4.0

func NewConfigData(name string, value NullableString) *ConfigData

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

func NewConfigDataWithDefaults added in v0.4.0

func NewConfigDataWithDefaults() *ConfigData

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

func (*ConfigData) GetName added in v0.4.0

func (o *ConfigData) GetName() string

GetName returns the Name field value

func (*ConfigData) GetNameOk added in v0.4.0

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

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

func (*ConfigData) GetValue added in v0.4.0

func (o *ConfigData) GetValue() string

GetValue returns the Value field value If the value is explicit nil, the zero value for string will be returned

func (*ConfigData) GetValueOk added in v0.4.0

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

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

func (ConfigData) MarshalJSON added in v0.4.0

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

func (*ConfigData) Redact added in v0.4.0

func (o *ConfigData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConfigData) SetName added in v0.4.0

func (o *ConfigData) SetName(v string)

SetName sets field value

func (*ConfigData) SetValue added in v0.4.0

func (o *ConfigData) SetValue(v string)

SetValue sets field value

type ConfigSynonymData

type ConfigSynonymData struct {
	Name   string         `json:"name,omitempty"`
	Value  NullableString `json:"value,omitempty"`
	Source string         `json:"source,omitempty"`
}

ConfigSynonymData struct for ConfigSynonymData

func NewConfigSynonymData added in v0.4.0

func NewConfigSynonymData(name string, source string) *ConfigSynonymData

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

func NewConfigSynonymDataWithDefaults added in v0.4.0

func NewConfigSynonymDataWithDefaults() *ConfigSynonymData

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

func (*ConfigSynonymData) GetName added in v0.4.0

func (o *ConfigSynonymData) GetName() string

GetName returns the Name field value

func (*ConfigSynonymData) GetNameOk added in v0.4.0

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

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

func (*ConfigSynonymData) GetSource added in v0.4.0

func (o *ConfigSynonymData) GetSource() string

GetSource returns the Source field value

func (*ConfigSynonymData) GetSourceOk added in v0.4.0

func (o *ConfigSynonymData) GetSourceOk() (*string, bool)

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

func (*ConfigSynonymData) GetValue added in v0.4.0

func (o *ConfigSynonymData) GetValue() string

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

func (*ConfigSynonymData) GetValueOk added in v0.4.0

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

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

func (*ConfigSynonymData) HasValue added in v0.4.0

func (o *ConfigSynonymData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ConfigSynonymData) MarshalJSON added in v0.4.0

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

func (*ConfigSynonymData) Redact added in v0.4.0

func (o *ConfigSynonymData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConfigSynonymData) SetName added in v0.4.0

func (o *ConfigSynonymData) SetName(v string)

SetName sets field value

func (*ConfigSynonymData) SetSource added in v0.4.0

func (o *ConfigSynonymData) SetSource(v string)

SetSource sets field value

func (*ConfigSynonymData) SetValue added in v0.4.0

func (o *ConfigSynonymData) SetValue(v string)

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

func (*ConfigSynonymData) SetValueNil added in v0.4.0

func (o *ConfigSynonymData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*ConfigSynonymData) UnsetValue added in v0.4.0

func (o *ConfigSynonymData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ConfigsV3Api

type ConfigsV3Api interface {

	/*
			DeleteKafkaClusterConfig Reset Dynamic Broker Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Reset the configuration parameter specified by “name“ to its
		default value by deleting a dynamic cluster-wide configuration.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param name The configuration parameter name.
			 @return ApiDeleteKafkaClusterConfigRequest
	*/
	DeleteKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiDeleteKafkaClusterConfigRequest

	// DeleteKafkaClusterConfigExecute executes the request
	DeleteKafkaClusterConfigExecute(r ApiDeleteKafkaClusterConfigRequest) (*_nethttp.Response, error)

	/*
			DeleteKafkaTopicConfig Reset Topic Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Reset the configuration parameter with given `name` to its default value.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @param name The configuration parameter name.
			 @return ApiDeleteKafkaTopicConfigRequest
	*/
	DeleteKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiDeleteKafkaTopicConfigRequest

	// DeleteKafkaTopicConfigExecute executes the request
	DeleteKafkaTopicConfigExecute(r ApiDeleteKafkaTopicConfigRequest) (*_nethttp.Response, error)

	/*
			GetKafkaClusterConfig Get Dynamic Broker Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the dynamic cluster-wide broker configuration parameter specified by “name“.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param name The configuration parameter name.
			 @return ApiGetKafkaClusterConfigRequest
	*/
	GetKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiGetKafkaClusterConfigRequest

	// GetKafkaClusterConfigExecute executes the request
	//  @return ClusterConfigData
	GetKafkaClusterConfigExecute(r ApiGetKafkaClusterConfigRequest) (ClusterConfigData, *_nethttp.Response, error)

	/*
			GetKafkaTopicConfig Get Topic Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the configuration parameter with the given `name`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @param name The configuration parameter name.
			 @return ApiGetKafkaTopicConfigRequest
	*/
	GetKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiGetKafkaTopicConfigRequest

	// GetKafkaTopicConfigExecute executes the request
	//  @return TopicConfigData
	GetKafkaTopicConfigExecute(r ApiGetKafkaTopicConfigRequest) (TopicConfigData, *_nethttp.Response, error)

	/*
			ListKafkaAllTopicConfigs List All Topic Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the list of configuration parameters for all topics hosted by the specified
		cluster.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaAllTopicConfigsRequest
	*/
	ListKafkaAllTopicConfigs(ctx _context.Context, clusterId string) ApiListKafkaAllTopicConfigsRequest

	// ListKafkaAllTopicConfigsExecute executes the request
	//  @return TopicConfigDataList
	ListKafkaAllTopicConfigsExecute(r ApiListKafkaAllTopicConfigsRequest) (TopicConfigDataList, *_nethttp.Response, error)

	/*
			ListKafkaClusterConfigs List Dynamic Broker Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return a list of dynamic cluster-wide broker configuration parameters for the specified Kafka
		cluster. Returns an empty list if there are no dynamic cluster-wide broker configuration parameters.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaClusterConfigsRequest
	*/
	ListKafkaClusterConfigs(ctx _context.Context, clusterId string) ApiListKafkaClusterConfigsRequest

	// ListKafkaClusterConfigsExecute executes the request
	//  @return ClusterConfigDataList
	ListKafkaClusterConfigsExecute(r ApiListKafkaClusterConfigsRequest) (ClusterConfigDataList, *_nethttp.Response, error)

	/*
			ListKafkaDefaultTopicConfigs List New Topic Default Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		List the default configuration parameters used if the topic were to be newly created.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiListKafkaDefaultTopicConfigsRequest
	*/
	ListKafkaDefaultTopicConfigs(ctx _context.Context, clusterId string, topicName string) ApiListKafkaDefaultTopicConfigsRequest

	// ListKafkaDefaultTopicConfigsExecute executes the request
	//  @return TopicConfigDataList
	ListKafkaDefaultTopicConfigsExecute(r ApiListKafkaDefaultTopicConfigsRequest) (TopicConfigDataList, *_nethttp.Response, error)

	/*
			ListKafkaTopicConfigs List Topic Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the list of configuration parameters that belong to the specified topic.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiListKafkaTopicConfigsRequest
	*/
	ListKafkaTopicConfigs(ctx _context.Context, clusterId string, topicName string) ApiListKafkaTopicConfigsRequest

	// ListKafkaTopicConfigsExecute executes the request
	//  @return TopicConfigDataList
	ListKafkaTopicConfigsExecute(r ApiListKafkaTopicConfigsRequest) (TopicConfigDataList, *_nethttp.Response, error)

	/*
			UpdateKafkaClusterConfig Update Dynamic Broker Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Update the dynamic cluster-wide broker configuration parameter specified by “name“.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param name The configuration parameter name.
			 @return ApiUpdateKafkaClusterConfigRequest
	*/
	UpdateKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiUpdateKafkaClusterConfigRequest

	// UpdateKafkaClusterConfigExecute executes the request
	UpdateKafkaClusterConfigExecute(r ApiUpdateKafkaClusterConfigRequest) (*_nethttp.Response, error)

	/*
			UpdateKafkaClusterConfigs Batch Alter Dynamic Broker Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Update or delete a set of dynamic cluster-wide broker configuration parameters.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiUpdateKafkaClusterConfigsRequest
	*/
	UpdateKafkaClusterConfigs(ctx _context.Context, clusterId string) ApiUpdateKafkaClusterConfigsRequest

	// UpdateKafkaClusterConfigsExecute executes the request
	UpdateKafkaClusterConfigsExecute(r ApiUpdateKafkaClusterConfigsRequest) (*_nethttp.Response, error)

	/*
			UpdateKafkaTopicConfig Update Topic Config

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Update the configuration parameter with given `name`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @param name The configuration parameter name.
			 @return ApiUpdateKafkaTopicConfigRequest
	*/
	UpdateKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiUpdateKafkaTopicConfigRequest

	// UpdateKafkaTopicConfigExecute executes the request
	UpdateKafkaTopicConfigExecute(r ApiUpdateKafkaTopicConfigRequest) (*_nethttp.Response, error)

	/*
			UpdateKafkaTopicConfigBatch Batch Alter Topic Configs

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Update or delete a set of topic configuration parameters.
		Also supports a dry-run mode that only validates whether the operation would succeed if the
		“validate_only“ request property is explicitly specified and set to true.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiUpdateKafkaTopicConfigBatchRequest
	*/
	UpdateKafkaTopicConfigBatch(ctx _context.Context, clusterId string, topicName string) ApiUpdateKafkaTopicConfigBatchRequest

	// UpdateKafkaTopicConfigBatchExecute executes the request
	UpdateKafkaTopicConfigBatchExecute(r ApiUpdateKafkaTopicConfigBatchRequest) (*_nethttp.Response, error)
}

type ConfigsV3ApiService

type ConfigsV3ApiService service

ConfigsV3ApiService ConfigsV3Api service

func (*ConfigsV3ApiService) DeleteKafkaClusterConfig added in v0.4.0

func (a *ConfigsV3ApiService) DeleteKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiDeleteKafkaClusterConfigRequest

DeleteKafkaClusterConfig Reset Dynamic Broker Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Reset the configuration parameter specified by “name“ to its default value by deleting a dynamic cluster-wide configuration.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param name The configuration parameter name.
@return ApiDeleteKafkaClusterConfigRequest

func (*ConfigsV3ApiService) DeleteKafkaClusterConfigExecute added in v0.4.0

func (a *ConfigsV3ApiService) DeleteKafkaClusterConfigExecute(r ApiDeleteKafkaClusterConfigRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConfigsV3ApiService) DeleteKafkaTopicConfig added in v0.4.0

func (a *ConfigsV3ApiService) DeleteKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiDeleteKafkaTopicConfigRequest

DeleteKafkaTopicConfig Reset Topic Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Reset the configuration parameter with given `name` to its default value.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@param name The configuration parameter name.
@return ApiDeleteKafkaTopicConfigRequest

func (*ConfigsV3ApiService) DeleteKafkaTopicConfigExecute added in v0.4.0

func (a *ConfigsV3ApiService) DeleteKafkaTopicConfigExecute(r ApiDeleteKafkaTopicConfigRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConfigsV3ApiService) GetKafkaClusterConfig added in v0.4.0

func (a *ConfigsV3ApiService) GetKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiGetKafkaClusterConfigRequest

GetKafkaClusterConfig Get Dynamic Broker Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the dynamic cluster-wide broker configuration parameter specified by “name“.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param name The configuration parameter name.
@return ApiGetKafkaClusterConfigRequest

func (*ConfigsV3ApiService) GetKafkaClusterConfigExecute added in v0.4.0

Execute executes the request

@return ClusterConfigData

func (*ConfigsV3ApiService) GetKafkaTopicConfig added in v0.4.0

func (a *ConfigsV3ApiService) GetKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiGetKafkaTopicConfigRequest

GetKafkaTopicConfig Get Topic Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the configuration parameter with the given `name`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@param name The configuration parameter name.
@return ApiGetKafkaTopicConfigRequest

func (*ConfigsV3ApiService) GetKafkaTopicConfigExecute added in v0.4.0

Execute executes the request

@return TopicConfigData

func (*ConfigsV3ApiService) ListKafkaAllTopicConfigs added in v0.4.0

func (a *ConfigsV3ApiService) ListKafkaAllTopicConfigs(ctx _context.Context, clusterId string) ApiListKafkaAllTopicConfigsRequest

ListKafkaAllTopicConfigs List All Topic Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the list of configuration parameters for all topics hosted by the specified cluster.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaAllTopicConfigsRequest

func (*ConfigsV3ApiService) ListKafkaAllTopicConfigsExecute added in v0.4.0

Execute executes the request

@return TopicConfigDataList

func (*ConfigsV3ApiService) ListKafkaClusterConfigs added in v0.4.0

func (a *ConfigsV3ApiService) ListKafkaClusterConfigs(ctx _context.Context, clusterId string) ApiListKafkaClusterConfigsRequest

ListKafkaClusterConfigs List Dynamic Broker Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return a list of dynamic cluster-wide broker configuration parameters for the specified Kafka cluster. Returns an empty list if there are no dynamic cluster-wide broker configuration parameters.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaClusterConfigsRequest

func (*ConfigsV3ApiService) ListKafkaClusterConfigsExecute added in v0.4.0

Execute executes the request

@return ClusterConfigDataList

func (*ConfigsV3ApiService) ListKafkaDefaultTopicConfigs added in v0.4.0

func (a *ConfigsV3ApiService) ListKafkaDefaultTopicConfigs(ctx _context.Context, clusterId string, topicName string) ApiListKafkaDefaultTopicConfigsRequest

ListKafkaDefaultTopicConfigs List New Topic Default Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

List the default configuration parameters used if the topic were to be newly created.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiListKafkaDefaultTopicConfigsRequest

func (*ConfigsV3ApiService) ListKafkaDefaultTopicConfigsExecute added in v0.4.0

Execute executes the request

@return TopicConfigDataList

func (*ConfigsV3ApiService) ListKafkaTopicConfigs added in v0.4.0

func (a *ConfigsV3ApiService) ListKafkaTopicConfigs(ctx _context.Context, clusterId string, topicName string) ApiListKafkaTopicConfigsRequest

ListKafkaTopicConfigs List Topic Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the list of configuration parameters that belong to the specified topic.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiListKafkaTopicConfigsRequest

func (*ConfigsV3ApiService) ListKafkaTopicConfigsExecute added in v0.4.0

Execute executes the request

@return TopicConfigDataList

func (*ConfigsV3ApiService) UpdateKafkaClusterConfig added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaClusterConfig(ctx _context.Context, clusterId string, name string) ApiUpdateKafkaClusterConfigRequest

UpdateKafkaClusterConfig Update Dynamic Broker Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Update the dynamic cluster-wide broker configuration parameter specified by “name“.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param name The configuration parameter name.
@return ApiUpdateKafkaClusterConfigRequest

func (*ConfigsV3ApiService) UpdateKafkaClusterConfigExecute added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaClusterConfigExecute(r ApiUpdateKafkaClusterConfigRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConfigsV3ApiService) UpdateKafkaClusterConfigs added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaClusterConfigs(ctx _context.Context, clusterId string) ApiUpdateKafkaClusterConfigsRequest

UpdateKafkaClusterConfigs Batch Alter Dynamic Broker Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Update or delete a set of dynamic cluster-wide broker configuration parameters.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiUpdateKafkaClusterConfigsRequest

func (*ConfigsV3ApiService) UpdateKafkaClusterConfigsExecute added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaClusterConfigsExecute(r ApiUpdateKafkaClusterConfigsRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConfigsV3ApiService) UpdateKafkaTopicConfig added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaTopicConfig(ctx _context.Context, clusterId string, topicName string, name string) ApiUpdateKafkaTopicConfigRequest

UpdateKafkaTopicConfig Update Topic Config

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Update the configuration parameter with given `name`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@param name The configuration parameter name.
@return ApiUpdateKafkaTopicConfigRequest

func (*ConfigsV3ApiService) UpdateKafkaTopicConfigBatch added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaTopicConfigBatch(ctx _context.Context, clusterId string, topicName string) ApiUpdateKafkaTopicConfigBatchRequest

UpdateKafkaTopicConfigBatch Batch Alter Topic Configs

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Update or delete a set of topic configuration parameters. Also supports a dry-run mode that only validates whether the operation would succeed if the “validate_only“ request property is explicitly specified and set to true.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiUpdateKafkaTopicConfigBatchRequest

func (*ConfigsV3ApiService) UpdateKafkaTopicConfigBatchExecute added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaTopicConfigBatchExecute(r ApiUpdateKafkaTopicConfigBatchRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConfigsV3ApiService) UpdateKafkaTopicConfigExecute added in v0.4.0

func (a *ConfigsV3ApiService) UpdateKafkaTopicConfigExecute(r ApiUpdateKafkaTopicConfigRequest) (*_nethttp.Response, error)

Execute executes the request

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 added in v0.4.0

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext added in v0.4.0

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

ServerURLWithContext returns a new server URL given an endpoint

type ConsumerAssignmentData

type ConsumerAssignmentData struct {
	Kind            string           `json:"kind,omitempty"`
	Metadata        ResourceMetadata `json:"metadata,omitempty"`
	ClusterId       string           `json:"cluster_id,omitempty"`
	ConsumerGroupId string           `json:"consumer_group_id,omitempty"`
	ConsumerId      string           `json:"consumer_id,omitempty"`
	TopicName       string           `json:"topic_name,omitempty"`
	PartitionId     int32            `json:"partition_id,omitempty"`
	Partition       Relationship     `json:"partition,omitempty"`
	Lag             Relationship     `json:"lag,omitempty"`
}

ConsumerAssignmentData struct for ConsumerAssignmentData

func NewConsumerAssignmentData added in v0.4.0

func NewConsumerAssignmentData(kind string, metadata ResourceMetadata, clusterId string, consumerGroupId string, consumerId string, topicName string, partitionId int32, partition Relationship, lag Relationship) *ConsumerAssignmentData

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

func NewConsumerAssignmentDataWithDefaults added in v0.4.0

func NewConsumerAssignmentDataWithDefaults() *ConsumerAssignmentData

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

func (*ConsumerAssignmentData) GetClusterId added in v0.4.0

func (o *ConsumerAssignmentData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerAssignmentData) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerAssignmentData) GetConsumerGroupId added in v0.4.0

func (o *ConsumerAssignmentData) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerAssignmentData) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerAssignmentData) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerAssignmentData) GetConsumerId added in v0.4.0

func (o *ConsumerAssignmentData) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerAssignmentData) GetConsumerIdOk added in v0.4.0

func (o *ConsumerAssignmentData) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerAssignmentData) GetKind added in v0.4.0

func (o *ConsumerAssignmentData) GetKind() string

GetKind returns the Kind field value

func (*ConsumerAssignmentData) GetKindOk added in v0.4.0

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

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

func (*ConsumerAssignmentData) GetLag added in v0.4.0

GetLag returns the Lag field value

func (*ConsumerAssignmentData) GetLagOk added in v0.4.0

func (o *ConsumerAssignmentData) GetLagOk() (*Relationship, bool)

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

func (*ConsumerAssignmentData) GetMetadata added in v0.4.0

func (o *ConsumerAssignmentData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ConsumerAssignmentData) GetMetadataOk added in v0.4.0

func (o *ConsumerAssignmentData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ConsumerAssignmentData) GetPartition added in v0.4.0

func (o *ConsumerAssignmentData) GetPartition() Relationship

GetPartition returns the Partition field value

func (*ConsumerAssignmentData) GetPartitionId added in v0.4.0

func (o *ConsumerAssignmentData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ConsumerAssignmentData) GetPartitionIdOk added in v0.4.0

func (o *ConsumerAssignmentData) GetPartitionIdOk() (*int32, bool)

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

func (*ConsumerAssignmentData) GetPartitionOk added in v0.4.0

func (o *ConsumerAssignmentData) GetPartitionOk() (*Relationship, bool)

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

func (*ConsumerAssignmentData) GetTopicName added in v0.4.0

func (o *ConsumerAssignmentData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ConsumerAssignmentData) GetTopicNameOk added in v0.4.0

func (o *ConsumerAssignmentData) GetTopicNameOk() (*string, bool)

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

func (ConsumerAssignmentData) MarshalJSON added in v0.4.0

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

func (*ConsumerAssignmentData) Redact added in v0.4.0

func (o *ConsumerAssignmentData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerAssignmentData) SetClusterId added in v0.4.0

func (o *ConsumerAssignmentData) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerAssignmentData) SetConsumerGroupId added in v0.4.0

func (o *ConsumerAssignmentData) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerAssignmentData) SetConsumerId added in v0.4.0

func (o *ConsumerAssignmentData) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerAssignmentData) SetKind added in v0.4.0

func (o *ConsumerAssignmentData) SetKind(v string)

SetKind sets field value

func (*ConsumerAssignmentData) SetLag added in v0.4.0

func (o *ConsumerAssignmentData) SetLag(v Relationship)

SetLag sets field value

func (*ConsumerAssignmentData) SetMetadata added in v0.4.0

func (o *ConsumerAssignmentData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ConsumerAssignmentData) SetPartition added in v0.4.0

func (o *ConsumerAssignmentData) SetPartition(v Relationship)

SetPartition sets field value

func (*ConsumerAssignmentData) SetPartitionId added in v0.4.0

func (o *ConsumerAssignmentData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ConsumerAssignmentData) SetTopicName added in v0.4.0

func (o *ConsumerAssignmentData) SetTopicName(v string)

SetTopicName sets field value

type ConsumerAssignmentDataAllOf

type ConsumerAssignmentDataAllOf struct {
	ClusterId       string       `json:"cluster_id,omitempty"`
	ConsumerGroupId string       `json:"consumer_group_id,omitempty"`
	ConsumerId      string       `json:"consumer_id,omitempty"`
	TopicName       string       `json:"topic_name,omitempty"`
	PartitionId     int32        `json:"partition_id,omitempty"`
	Partition       Relationship `json:"partition,omitempty"`
	Lag             Relationship `json:"lag,omitempty"`
}

ConsumerAssignmentDataAllOf struct for ConsumerAssignmentDataAllOf

func NewConsumerAssignmentDataAllOf added in v0.4.0

func NewConsumerAssignmentDataAllOf(clusterId string, consumerGroupId string, consumerId string, topicName string, partitionId int32, partition Relationship, lag Relationship) *ConsumerAssignmentDataAllOf

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

func NewConsumerAssignmentDataAllOfWithDefaults added in v0.4.0

func NewConsumerAssignmentDataAllOfWithDefaults() *ConsumerAssignmentDataAllOf

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

func (*ConsumerAssignmentDataAllOf) GetClusterId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerAssignmentDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerAssignmentDataAllOf) GetConsumerGroupId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerAssignmentDataAllOf) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerAssignmentDataAllOf) GetConsumerId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerAssignmentDataAllOf) GetConsumerIdOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerAssignmentDataAllOf) GetLag added in v0.4.0

GetLag returns the Lag field value

func (*ConsumerAssignmentDataAllOf) GetLagOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetLagOk() (*Relationship, bool)

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

func (*ConsumerAssignmentDataAllOf) GetPartition added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetPartition() Relationship

GetPartition returns the Partition field value

func (*ConsumerAssignmentDataAllOf) GetPartitionId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ConsumerAssignmentDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetPartitionIdOk() (*int32, bool)

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

func (*ConsumerAssignmentDataAllOf) GetPartitionOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetPartitionOk() (*Relationship, bool)

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

func (*ConsumerAssignmentDataAllOf) GetTopicName added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ConsumerAssignmentDataAllOf) GetTopicNameOk added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) GetTopicNameOk() (*string, bool)

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

func (ConsumerAssignmentDataAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerAssignmentDataAllOf) Redact added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerAssignmentDataAllOf) SetClusterId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerAssignmentDataAllOf) SetConsumerGroupId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerAssignmentDataAllOf) SetConsumerId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerAssignmentDataAllOf) SetLag added in v0.4.0

SetLag sets field value

func (*ConsumerAssignmentDataAllOf) SetPartition added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetPartition(v Relationship)

SetPartition sets field value

func (*ConsumerAssignmentDataAllOf) SetPartitionId added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ConsumerAssignmentDataAllOf) SetTopicName added in v0.4.0

func (o *ConsumerAssignmentDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type ConsumerAssignmentDataList

type ConsumerAssignmentDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ConsumerAssignmentData   `json:"data,omitempty"`
}

ConsumerAssignmentDataList struct for ConsumerAssignmentDataList

func NewConsumerAssignmentDataList added in v0.4.0

func NewConsumerAssignmentDataList(kind string, metadata ResourceCollectionMetadata, data []ConsumerAssignmentData) *ConsumerAssignmentDataList

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

func NewConsumerAssignmentDataListWithDefaults added in v0.4.0

func NewConsumerAssignmentDataListWithDefaults() *ConsumerAssignmentDataList

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

func (*ConsumerAssignmentDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ConsumerAssignmentDataList) GetDataOk added in v0.4.0

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

func (*ConsumerAssignmentDataList) GetKind added in v0.4.0

func (o *ConsumerAssignmentDataList) GetKind() string

GetKind returns the Kind field value

func (*ConsumerAssignmentDataList) GetKindOk added in v0.4.0

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

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

func (*ConsumerAssignmentDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ConsumerAssignmentDataList) GetMetadataOk added in v0.4.0

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

func (ConsumerAssignmentDataList) MarshalJSON added in v0.4.0

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

func (*ConsumerAssignmentDataList) Redact added in v0.4.0

func (o *ConsumerAssignmentDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerAssignmentDataList) SetData added in v0.4.0

SetData sets field value

func (*ConsumerAssignmentDataList) SetKind added in v0.4.0

func (o *ConsumerAssignmentDataList) SetKind(v string)

SetKind sets field value

func (*ConsumerAssignmentDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ConsumerAssignmentDataListAllOf

type ConsumerAssignmentDataListAllOf struct {
	Data []ConsumerAssignmentData `json:"data,omitempty"`
}

ConsumerAssignmentDataListAllOf struct for ConsumerAssignmentDataListAllOf

func NewConsumerAssignmentDataListAllOf added in v0.4.0

func NewConsumerAssignmentDataListAllOf(data []ConsumerAssignmentData) *ConsumerAssignmentDataListAllOf

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

func NewConsumerAssignmentDataListAllOfWithDefaults added in v0.4.0

func NewConsumerAssignmentDataListAllOfWithDefaults() *ConsumerAssignmentDataListAllOf

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

func (*ConsumerAssignmentDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ConsumerAssignmentDataListAllOf) GetDataOk added in v0.4.0

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

func (ConsumerAssignmentDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerAssignmentDataListAllOf) Redact added in v0.4.0

func (o *ConsumerAssignmentDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerAssignmentDataListAllOf) SetData added in v0.4.0

SetData sets field value

type ConsumerData

type ConsumerData struct {
	Kind            string           `json:"kind,omitempty"`
	Metadata        ResourceMetadata `json:"metadata,omitempty"`
	ClusterId       string           `json:"cluster_id,omitempty"`
	ConsumerGroupId string           `json:"consumer_group_id,omitempty"`
	ConsumerId      string           `json:"consumer_id,omitempty"`
	InstanceId      NullableString   `json:"instance_id,omitempty"`
	ClientId        string           `json:"client_id,omitempty"`
	Assignments     Relationship     `json:"assignments,omitempty"`
}

ConsumerData struct for ConsumerData

func NewConsumerData added in v0.4.0

func NewConsumerData(kind string, metadata ResourceMetadata, clusterId string, consumerGroupId string, consumerId string, clientId string, assignments Relationship) *ConsumerData

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

func NewConsumerDataWithDefaults added in v0.4.0

func NewConsumerDataWithDefaults() *ConsumerData

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

func (*ConsumerData) GetAssignments added in v0.4.0

func (o *ConsumerData) GetAssignments() Relationship

GetAssignments returns the Assignments field value

func (*ConsumerData) GetAssignmentsOk added in v0.4.0

func (o *ConsumerData) GetAssignmentsOk() (*Relationship, bool)

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

func (*ConsumerData) GetClientId added in v0.4.0

func (o *ConsumerData) GetClientId() string

GetClientId returns the ClientId field value

func (*ConsumerData) GetClientIdOk added in v0.4.0

func (o *ConsumerData) GetClientIdOk() (*string, bool)

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

func (*ConsumerData) GetClusterId added in v0.4.0

func (o *ConsumerData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerData) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerData) GetConsumerGroupId added in v0.4.0

func (o *ConsumerData) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerData) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerData) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerData) GetConsumerId added in v0.4.0

func (o *ConsumerData) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerData) GetConsumerIdOk added in v0.4.0

func (o *ConsumerData) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerData) GetInstanceId added in v0.4.0

func (o *ConsumerData) GetInstanceId() string

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

func (*ConsumerData) GetInstanceIdOk added in v0.4.0

func (o *ConsumerData) GetInstanceIdOk() (*string, bool)

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

func (*ConsumerData) GetKind added in v0.4.0

func (o *ConsumerData) GetKind() string

GetKind returns the Kind field value

func (*ConsumerData) GetKindOk added in v0.4.0

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

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

func (*ConsumerData) GetMetadata added in v0.4.0

func (o *ConsumerData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ConsumerData) GetMetadataOk added in v0.4.0

func (o *ConsumerData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ConsumerData) HasInstanceId added in v0.4.0

func (o *ConsumerData) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (ConsumerData) MarshalJSON added in v0.4.0

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

func (*ConsumerData) Redact added in v0.4.0

func (o *ConsumerData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerData) SetAssignments added in v0.4.0

func (o *ConsumerData) SetAssignments(v Relationship)

SetAssignments sets field value

func (*ConsumerData) SetClientId added in v0.4.0

func (o *ConsumerData) SetClientId(v string)

SetClientId sets field value

func (*ConsumerData) SetClusterId added in v0.4.0

func (o *ConsumerData) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerData) SetConsumerGroupId added in v0.4.0

func (o *ConsumerData) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerData) SetConsumerId added in v0.4.0

func (o *ConsumerData) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerData) SetInstanceId added in v0.4.0

func (o *ConsumerData) SetInstanceId(v string)

SetInstanceId gets a reference to the given NullableString and assigns it to the InstanceId field.

func (*ConsumerData) SetInstanceIdNil added in v0.4.0

func (o *ConsumerData) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*ConsumerData) SetKind added in v0.4.0

func (o *ConsumerData) SetKind(v string)

SetKind sets field value

func (*ConsumerData) SetMetadata added in v0.4.0

func (o *ConsumerData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ConsumerData) UnsetInstanceId added in v0.4.0

func (o *ConsumerData) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

type ConsumerDataAllOf

type ConsumerDataAllOf struct {
	ClusterId       string         `json:"cluster_id,omitempty"`
	ConsumerGroupId string         `json:"consumer_group_id,omitempty"`
	ConsumerId      string         `json:"consumer_id,omitempty"`
	InstanceId      NullableString `json:"instance_id,omitempty"`
	ClientId        string         `json:"client_id,omitempty"`
	Assignments     Relationship   `json:"assignments,omitempty"`
}

ConsumerDataAllOf struct for ConsumerDataAllOf

func NewConsumerDataAllOf added in v0.4.0

func NewConsumerDataAllOf(clusterId string, consumerGroupId string, consumerId string, clientId string, assignments Relationship) *ConsumerDataAllOf

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

func NewConsumerDataAllOfWithDefaults added in v0.4.0

func NewConsumerDataAllOfWithDefaults() *ConsumerDataAllOf

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

func (*ConsumerDataAllOf) GetAssignments added in v0.4.0

func (o *ConsumerDataAllOf) GetAssignments() Relationship

GetAssignments returns the Assignments field value

func (*ConsumerDataAllOf) GetAssignmentsOk added in v0.4.0

func (o *ConsumerDataAllOf) GetAssignmentsOk() (*Relationship, bool)

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

func (*ConsumerDataAllOf) GetClientId added in v0.4.0

func (o *ConsumerDataAllOf) GetClientId() string

GetClientId returns the ClientId field value

func (*ConsumerDataAllOf) GetClientIdOk added in v0.4.0

func (o *ConsumerDataAllOf) GetClientIdOk() (*string, bool)

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

func (*ConsumerDataAllOf) GetClusterId added in v0.4.0

func (o *ConsumerDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerDataAllOf) GetConsumerGroupId added in v0.4.0

func (o *ConsumerDataAllOf) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerDataAllOf) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerDataAllOf) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerDataAllOf) GetConsumerId added in v0.4.0

func (o *ConsumerDataAllOf) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerDataAllOf) GetConsumerIdOk added in v0.4.0

func (o *ConsumerDataAllOf) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerDataAllOf) GetInstanceId added in v0.4.0

func (o *ConsumerDataAllOf) GetInstanceId() string

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

func (*ConsumerDataAllOf) GetInstanceIdOk added in v0.4.0

func (o *ConsumerDataAllOf) GetInstanceIdOk() (*string, bool)

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

func (*ConsumerDataAllOf) HasInstanceId added in v0.4.0

func (o *ConsumerDataAllOf) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (ConsumerDataAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerDataAllOf) Redact added in v0.4.0

func (o *ConsumerDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerDataAllOf) SetAssignments added in v0.4.0

func (o *ConsumerDataAllOf) SetAssignments(v Relationship)

SetAssignments sets field value

func (*ConsumerDataAllOf) SetClientId added in v0.4.0

func (o *ConsumerDataAllOf) SetClientId(v string)

SetClientId sets field value

func (*ConsumerDataAllOf) SetClusterId added in v0.4.0

func (o *ConsumerDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerDataAllOf) SetConsumerGroupId added in v0.4.0

func (o *ConsumerDataAllOf) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerDataAllOf) SetConsumerId added in v0.4.0

func (o *ConsumerDataAllOf) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerDataAllOf) SetInstanceId added in v0.4.0

func (o *ConsumerDataAllOf) SetInstanceId(v string)

SetInstanceId gets a reference to the given NullableString and assigns it to the InstanceId field.

func (*ConsumerDataAllOf) SetInstanceIdNil added in v0.4.0

func (o *ConsumerDataAllOf) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*ConsumerDataAllOf) UnsetInstanceId added in v0.4.0

func (o *ConsumerDataAllOf) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

type ConsumerDataList

type ConsumerDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ConsumerData             `json:"data,omitempty"`
}

ConsumerDataList struct for ConsumerDataList

func NewConsumerDataList added in v0.4.0

func NewConsumerDataList(kind string, metadata ResourceCollectionMetadata, data []ConsumerData) *ConsumerDataList

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

func NewConsumerDataListWithDefaults added in v0.4.0

func NewConsumerDataListWithDefaults() *ConsumerDataList

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

func (*ConsumerDataList) GetData added in v0.4.0

func (o *ConsumerDataList) GetData() []ConsumerData

GetData returns the Data field value

func (*ConsumerDataList) GetDataOk added in v0.4.0

func (o *ConsumerDataList) GetDataOk() (*[]ConsumerData, bool)

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

func (*ConsumerDataList) GetKind added in v0.4.0

func (o *ConsumerDataList) GetKind() string

GetKind returns the Kind field value

func (*ConsumerDataList) GetKindOk added in v0.4.0

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

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

func (*ConsumerDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ConsumerDataList) GetMetadataOk added in v0.4.0

func (o *ConsumerDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (ConsumerDataList) MarshalJSON added in v0.4.0

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

func (*ConsumerDataList) Redact added in v0.4.0

func (o *ConsumerDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerDataList) SetData added in v0.4.0

func (o *ConsumerDataList) SetData(v []ConsumerData)

SetData sets field value

func (*ConsumerDataList) SetKind added in v0.4.0

func (o *ConsumerDataList) SetKind(v string)

SetKind sets field value

func (*ConsumerDataList) SetMetadata added in v0.4.0

func (o *ConsumerDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type ConsumerDataListAllOf

type ConsumerDataListAllOf struct {
	Data []ConsumerData `json:"data,omitempty"`
}

ConsumerDataListAllOf struct for ConsumerDataListAllOf

func NewConsumerDataListAllOf added in v0.4.0

func NewConsumerDataListAllOf(data []ConsumerData) *ConsumerDataListAllOf

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

func NewConsumerDataListAllOfWithDefaults added in v0.4.0

func NewConsumerDataListAllOfWithDefaults() *ConsumerDataListAllOf

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

func (*ConsumerDataListAllOf) GetData added in v0.4.0

func (o *ConsumerDataListAllOf) GetData() []ConsumerData

GetData returns the Data field value

func (*ConsumerDataListAllOf) GetDataOk added in v0.4.0

func (o *ConsumerDataListAllOf) GetDataOk() (*[]ConsumerData, bool)

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

func (ConsumerDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerDataListAllOf) Redact added in v0.4.0

func (o *ConsumerDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerDataListAllOf) SetData added in v0.4.0

func (o *ConsumerDataListAllOf) SetData(v []ConsumerData)

SetData sets field value

type ConsumerGroupData

type ConsumerGroupData struct {
	Kind              string           `json:"kind,omitempty"`
	Metadata          ResourceMetadata `json:"metadata,omitempty"`
	ClusterId         string           `json:"cluster_id,omitempty"`
	ConsumerGroupId   string           `json:"consumer_group_id,omitempty"`
	IsSimple          bool             `json:"is_simple,omitempty"`
	PartitionAssignor string           `json:"partition_assignor,omitempty"`
	State             string           `json:"state,omitempty"`
	Coordinator       Relationship     `json:"coordinator,omitempty"`
	Consumer          *Relationship    `json:"consumer,omitempty"`
	LagSummary        Relationship     `json:"lag_summary,omitempty"`
}

ConsumerGroupData struct for ConsumerGroupData

func NewConsumerGroupData added in v0.4.0

func NewConsumerGroupData(kind string, metadata ResourceMetadata, clusterId string, consumerGroupId string, isSimple bool, partitionAssignor string, state string, coordinator Relationship, lagSummary Relationship) *ConsumerGroupData

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

func NewConsumerGroupDataWithDefaults added in v0.4.0

func NewConsumerGroupDataWithDefaults() *ConsumerGroupData

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

func (*ConsumerGroupData) GetClusterId added in v0.4.0

func (o *ConsumerGroupData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerGroupData) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerGroupData) GetConsumer added in v0.4.0

func (o *ConsumerGroupData) GetConsumer() Relationship

GetConsumer returns the Consumer field value if set, zero value otherwise.

func (*ConsumerGroupData) GetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupData) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerGroupData) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerGroupData) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerGroupData) GetConsumerOk added in v0.4.0

func (o *ConsumerGroupData) GetConsumerOk() (*Relationship, bool)

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

func (*ConsumerGroupData) GetCoordinator added in v0.4.0

func (o *ConsumerGroupData) GetCoordinator() Relationship

GetCoordinator returns the Coordinator field value

func (*ConsumerGroupData) GetCoordinatorOk added in v0.4.0

func (o *ConsumerGroupData) GetCoordinatorOk() (*Relationship, bool)

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

func (*ConsumerGroupData) GetIsSimple added in v0.4.0

func (o *ConsumerGroupData) GetIsSimple() bool

GetIsSimple returns the IsSimple field value

func (*ConsumerGroupData) GetIsSimpleOk added in v0.4.0

func (o *ConsumerGroupData) GetIsSimpleOk() (*bool, bool)

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

func (*ConsumerGroupData) GetKind added in v0.4.0

func (o *ConsumerGroupData) GetKind() string

GetKind returns the Kind field value

func (*ConsumerGroupData) GetKindOk added in v0.4.0

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

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

func (*ConsumerGroupData) GetLagSummary added in v0.4.0

func (o *ConsumerGroupData) GetLagSummary() Relationship

GetLagSummary returns the LagSummary field value

func (*ConsumerGroupData) GetLagSummaryOk added in v0.4.0

func (o *ConsumerGroupData) GetLagSummaryOk() (*Relationship, bool)

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

func (*ConsumerGroupData) GetMetadata added in v0.4.0

func (o *ConsumerGroupData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ConsumerGroupData) GetMetadataOk added in v0.4.0

func (o *ConsumerGroupData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ConsumerGroupData) GetPartitionAssignor added in v0.4.0

func (o *ConsumerGroupData) GetPartitionAssignor() string

GetPartitionAssignor returns the PartitionAssignor field value

func (*ConsumerGroupData) GetPartitionAssignorOk added in v0.4.0

func (o *ConsumerGroupData) GetPartitionAssignorOk() (*string, bool)

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

func (*ConsumerGroupData) GetState added in v0.4.0

func (o *ConsumerGroupData) GetState() string

GetState returns the State field value

func (*ConsumerGroupData) GetStateOk added in v0.4.0

func (o *ConsumerGroupData) GetStateOk() (*string, bool)

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

func (*ConsumerGroupData) HasConsumer added in v0.4.0

func (o *ConsumerGroupData) HasConsumer() bool

HasConsumer returns a boolean if a field has been set.

func (ConsumerGroupData) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupData) Redact added in v0.4.0

func (o *ConsumerGroupData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupData) SetClusterId added in v0.4.0

func (o *ConsumerGroupData) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerGroupData) SetConsumer added in v0.4.0

func (o *ConsumerGroupData) SetConsumer(v Relationship)

SetConsumer gets a reference to the given Relationship and assigns it to the Consumer field.

func (*ConsumerGroupData) SetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupData) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerGroupData) SetCoordinator added in v0.4.0

func (o *ConsumerGroupData) SetCoordinator(v Relationship)

SetCoordinator sets field value

func (*ConsumerGroupData) SetIsSimple added in v0.4.0

func (o *ConsumerGroupData) SetIsSimple(v bool)

SetIsSimple sets field value

func (*ConsumerGroupData) SetKind added in v0.4.0

func (o *ConsumerGroupData) SetKind(v string)

SetKind sets field value

func (*ConsumerGroupData) SetLagSummary added in v0.4.0

func (o *ConsumerGroupData) SetLagSummary(v Relationship)

SetLagSummary sets field value

func (*ConsumerGroupData) SetMetadata added in v0.4.0

func (o *ConsumerGroupData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ConsumerGroupData) SetPartitionAssignor added in v0.4.0

func (o *ConsumerGroupData) SetPartitionAssignor(v string)

SetPartitionAssignor sets field value

func (*ConsumerGroupData) SetState added in v0.4.0

func (o *ConsumerGroupData) SetState(v string)

SetState sets field value

type ConsumerGroupDataAllOf

type ConsumerGroupDataAllOf struct {
	ClusterId         string        `json:"cluster_id,omitempty"`
	ConsumerGroupId   string        `json:"consumer_group_id,omitempty"`
	IsSimple          bool          `json:"is_simple,omitempty"`
	PartitionAssignor string        `json:"partition_assignor,omitempty"`
	State             string        `json:"state,omitempty"`
	Coordinator       Relationship  `json:"coordinator,omitempty"`
	Consumer          *Relationship `json:"consumer,omitempty"`
	LagSummary        Relationship  `json:"lag_summary,omitempty"`
}

ConsumerGroupDataAllOf struct for ConsumerGroupDataAllOf

func NewConsumerGroupDataAllOf added in v0.4.0

func NewConsumerGroupDataAllOf(clusterId string, consumerGroupId string, isSimple bool, partitionAssignor string, state string, coordinator Relationship, lagSummary Relationship) *ConsumerGroupDataAllOf

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

func NewConsumerGroupDataAllOfWithDefaults added in v0.4.0

func NewConsumerGroupDataAllOfWithDefaults() *ConsumerGroupDataAllOf

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

func (*ConsumerGroupDataAllOf) GetClusterId added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerGroupDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerGroupDataAllOf) GetConsumer added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetConsumer() Relationship

GetConsumer returns the Consumer field value if set, zero value otherwise.

func (*ConsumerGroupDataAllOf) GetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerGroupDataAllOf) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerGroupDataAllOf) GetConsumerOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetConsumerOk() (*Relationship, bool)

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

func (*ConsumerGroupDataAllOf) GetCoordinator added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetCoordinator() Relationship

GetCoordinator returns the Coordinator field value

func (*ConsumerGroupDataAllOf) GetCoordinatorOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetCoordinatorOk() (*Relationship, bool)

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

func (*ConsumerGroupDataAllOf) GetIsSimple added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetIsSimple() bool

GetIsSimple returns the IsSimple field value

func (*ConsumerGroupDataAllOf) GetIsSimpleOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetIsSimpleOk() (*bool, bool)

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

func (*ConsumerGroupDataAllOf) GetLagSummary added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetLagSummary() Relationship

GetLagSummary returns the LagSummary field value

func (*ConsumerGroupDataAllOf) GetLagSummaryOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetLagSummaryOk() (*Relationship, bool)

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

func (*ConsumerGroupDataAllOf) GetPartitionAssignor added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetPartitionAssignor() string

GetPartitionAssignor returns the PartitionAssignor field value

func (*ConsumerGroupDataAllOf) GetPartitionAssignorOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetPartitionAssignorOk() (*string, bool)

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

func (*ConsumerGroupDataAllOf) GetState added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetState() string

GetState returns the State field value

func (*ConsumerGroupDataAllOf) GetStateOk added in v0.4.0

func (o *ConsumerGroupDataAllOf) GetStateOk() (*string, bool)

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

func (*ConsumerGroupDataAllOf) HasConsumer added in v0.4.0

func (o *ConsumerGroupDataAllOf) HasConsumer() bool

HasConsumer returns a boolean if a field has been set.

func (ConsumerGroupDataAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupDataAllOf) Redact added in v0.4.0

func (o *ConsumerGroupDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupDataAllOf) SetClusterId added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerGroupDataAllOf) SetConsumer added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetConsumer(v Relationship)

SetConsumer gets a reference to the given Relationship and assigns it to the Consumer field.

func (*ConsumerGroupDataAllOf) SetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerGroupDataAllOf) SetCoordinator added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetCoordinator(v Relationship)

SetCoordinator sets field value

func (*ConsumerGroupDataAllOf) SetIsSimple added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetIsSimple(v bool)

SetIsSimple sets field value

func (*ConsumerGroupDataAllOf) SetLagSummary added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetLagSummary(v Relationship)

SetLagSummary sets field value

func (*ConsumerGroupDataAllOf) SetPartitionAssignor added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetPartitionAssignor(v string)

SetPartitionAssignor sets field value

func (*ConsumerGroupDataAllOf) SetState added in v0.4.0

func (o *ConsumerGroupDataAllOf) SetState(v string)

SetState sets field value

type ConsumerGroupDataList

type ConsumerGroupDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ConsumerGroupData        `json:"data,omitempty"`
}

ConsumerGroupDataList struct for ConsumerGroupDataList

func NewConsumerGroupDataList added in v0.4.0

func NewConsumerGroupDataList(kind string, metadata ResourceCollectionMetadata, data []ConsumerGroupData) *ConsumerGroupDataList

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

func NewConsumerGroupDataListWithDefaults added in v0.4.0

func NewConsumerGroupDataListWithDefaults() *ConsumerGroupDataList

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

func (*ConsumerGroupDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ConsumerGroupDataList) GetDataOk added in v0.4.0

func (o *ConsumerGroupDataList) GetDataOk() (*[]ConsumerGroupData, bool)

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

func (*ConsumerGroupDataList) GetKind added in v0.4.0

func (o *ConsumerGroupDataList) GetKind() string

GetKind returns the Kind field value

func (*ConsumerGroupDataList) GetKindOk added in v0.4.0

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

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

func (*ConsumerGroupDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ConsumerGroupDataList) GetMetadataOk added in v0.4.0

func (o *ConsumerGroupDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (ConsumerGroupDataList) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupDataList) Redact added in v0.4.0

func (o *ConsumerGroupDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupDataList) SetData added in v0.4.0

func (o *ConsumerGroupDataList) SetData(v []ConsumerGroupData)

SetData sets field value

func (*ConsumerGroupDataList) SetKind added in v0.4.0

func (o *ConsumerGroupDataList) SetKind(v string)

SetKind sets field value

func (*ConsumerGroupDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ConsumerGroupDataListAllOf

type ConsumerGroupDataListAllOf struct {
	Data []ConsumerGroupData `json:"data,omitempty"`
}

ConsumerGroupDataListAllOf struct for ConsumerGroupDataListAllOf

func NewConsumerGroupDataListAllOf added in v0.4.0

func NewConsumerGroupDataListAllOf(data []ConsumerGroupData) *ConsumerGroupDataListAllOf

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

func NewConsumerGroupDataListAllOfWithDefaults added in v0.4.0

func NewConsumerGroupDataListAllOfWithDefaults() *ConsumerGroupDataListAllOf

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

func (*ConsumerGroupDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ConsumerGroupDataListAllOf) GetDataOk added in v0.4.0

func (o *ConsumerGroupDataListAllOf) GetDataOk() (*[]ConsumerGroupData, bool)

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

func (ConsumerGroupDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupDataListAllOf) Redact added in v0.4.0

func (o *ConsumerGroupDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupDataListAllOf) SetData added in v0.4.0

SetData sets field value

type ConsumerGroupLagSummaryData

type ConsumerGroupLagSummaryData struct {
	Kind              string           `json:"kind,omitempty"`
	Metadata          ResourceMetadata `json:"metadata,omitempty"`
	ClusterId         string           `json:"cluster_id,omitempty"`
	ConsumerGroupId   string           `json:"consumer_group_id,omitempty"`
	MaxLagConsumerId  string           `json:"max_lag_consumer_id,omitempty"`
	MaxLagInstanceId  NullableString   `json:"max_lag_instance_id,omitempty"`
	MaxLagClientId    string           `json:"max_lag_client_id,omitempty"`
	MaxLagTopicName   string           `json:"max_lag_topic_name,omitempty"`
	MaxLagPartitionId int32            `json:"max_lag_partition_id,omitempty"`
	MaxLag            int64            `json:"max_lag,omitempty"`
	TotalLag          int64            `json:"total_lag,omitempty"`
	MaxLagConsumer    Relationship     `json:"max_lag_consumer,omitempty"`
	MaxLagPartition   Relationship     `json:"max_lag_partition,omitempty"`
}

ConsumerGroupLagSummaryData struct for ConsumerGroupLagSummaryData

func NewConsumerGroupLagSummaryData added in v0.4.0

func NewConsumerGroupLagSummaryData(kind string, metadata ResourceMetadata, clusterId string, consumerGroupId string, maxLagConsumerId string, maxLagClientId string, maxLagTopicName string, maxLagPartitionId int32, maxLag int64, totalLag int64, maxLagConsumer Relationship, maxLagPartition Relationship) *ConsumerGroupLagSummaryData

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

func NewConsumerGroupLagSummaryDataWithDefaults added in v0.4.0

func NewConsumerGroupLagSummaryDataWithDefaults() *ConsumerGroupLagSummaryData

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

func (*ConsumerGroupLagSummaryData) GetClusterId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerGroupLagSummaryData) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerGroupLagSummaryData) GetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerGroupLagSummaryData) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryData) GetKind added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetKind() string

GetKind returns the Kind field value

func (*ConsumerGroupLagSummaryData) GetKindOk added in v0.4.0

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

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

func (*ConsumerGroupLagSummaryData) GetMaxLag added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLag() int64

GetMaxLag returns the MaxLag field value

func (*ConsumerGroupLagSummaryData) GetMaxLagClientId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagClientId() string

GetMaxLagClientId returns the MaxLagClientId field value

func (*ConsumerGroupLagSummaryData) GetMaxLagClientIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagClientIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagConsumer added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagConsumer() Relationship

GetMaxLagConsumer returns the MaxLagConsumer field value

func (*ConsumerGroupLagSummaryData) GetMaxLagConsumerId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagConsumerId() string

GetMaxLagConsumerId returns the MaxLagConsumerId field value

func (*ConsumerGroupLagSummaryData) GetMaxLagConsumerIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagConsumerIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagConsumerOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagConsumerOk() (*Relationship, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagInstanceId() string

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

func (*ConsumerGroupLagSummaryData) GetMaxLagInstanceIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagInstanceIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagOk() (*int64, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagPartition added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagPartition() Relationship

GetMaxLagPartition returns the MaxLagPartition field value

func (*ConsumerGroupLagSummaryData) GetMaxLagPartitionId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagPartitionId() int32

GetMaxLagPartitionId returns the MaxLagPartitionId field value

func (*ConsumerGroupLagSummaryData) GetMaxLagPartitionIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagPartitionIdOk() (*int32, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagPartitionOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagPartitionOk() (*Relationship, bool)

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

func (*ConsumerGroupLagSummaryData) GetMaxLagTopicName added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagTopicName() string

GetMaxLagTopicName returns the MaxLagTopicName field value

func (*ConsumerGroupLagSummaryData) GetMaxLagTopicNameOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMaxLagTopicNameOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ConsumerGroupLagSummaryData) GetMetadataOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ConsumerGroupLagSummaryData) GetTotalLag added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetTotalLag() int64

GetTotalLag returns the TotalLag field value

func (*ConsumerGroupLagSummaryData) GetTotalLagOk added in v0.4.0

func (o *ConsumerGroupLagSummaryData) GetTotalLagOk() (*int64, bool)

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

func (*ConsumerGroupLagSummaryData) HasMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) HasMaxLagInstanceId() bool

HasMaxLagInstanceId returns a boolean if a field has been set.

func (ConsumerGroupLagSummaryData) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupLagSummaryData) Redact added in v0.4.0

func (o *ConsumerGroupLagSummaryData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupLagSummaryData) SetClusterId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerGroupLagSummaryData) SetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerGroupLagSummaryData) SetKind added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetKind(v string)

SetKind sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLag added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLag(v int64)

SetMaxLag sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagClientId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagClientId(v string)

SetMaxLagClientId sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagConsumer added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagConsumer(v Relationship)

SetMaxLagConsumer sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagConsumerId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagConsumerId(v string)

SetMaxLagConsumerId sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagInstanceId(v string)

SetMaxLagInstanceId gets a reference to the given NullableString and assigns it to the MaxLagInstanceId field.

func (*ConsumerGroupLagSummaryData) SetMaxLagInstanceIdNil added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagInstanceIdNil()

SetMaxLagInstanceIdNil sets the value for MaxLagInstanceId to be an explicit nil

func (*ConsumerGroupLagSummaryData) SetMaxLagPartition added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagPartition(v Relationship)

SetMaxLagPartition sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagPartitionId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagPartitionId(v int32)

SetMaxLagPartitionId sets field value

func (*ConsumerGroupLagSummaryData) SetMaxLagTopicName added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetMaxLagTopicName(v string)

SetMaxLagTopicName sets field value

func (*ConsumerGroupLagSummaryData) SetMetadata added in v0.4.0

SetMetadata sets field value

func (*ConsumerGroupLagSummaryData) SetTotalLag added in v0.4.0

func (o *ConsumerGroupLagSummaryData) SetTotalLag(v int64)

SetTotalLag sets field value

func (*ConsumerGroupLagSummaryData) UnsetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryData) UnsetMaxLagInstanceId()

UnsetMaxLagInstanceId ensures that no value is present for MaxLagInstanceId, not even an explicit nil

type ConsumerGroupLagSummaryDataAllOf

type ConsumerGroupLagSummaryDataAllOf struct {
	ClusterId         string         `json:"cluster_id,omitempty"`
	ConsumerGroupId   string         `json:"consumer_group_id,omitempty"`
	MaxLagConsumerId  string         `json:"max_lag_consumer_id,omitempty"`
	MaxLagInstanceId  NullableString `json:"max_lag_instance_id,omitempty"`
	MaxLagClientId    string         `json:"max_lag_client_id,omitempty"`
	MaxLagTopicName   string         `json:"max_lag_topic_name,omitempty"`
	MaxLagPartitionId int32          `json:"max_lag_partition_id,omitempty"`
	MaxLag            int64          `json:"max_lag,omitempty"`
	TotalLag          int64          `json:"total_lag,omitempty"`
	MaxLagConsumer    Relationship   `json:"max_lag_consumer,omitempty"`
	MaxLagPartition   Relationship   `json:"max_lag_partition,omitempty"`
}

ConsumerGroupLagSummaryDataAllOf struct for ConsumerGroupLagSummaryDataAllOf

func NewConsumerGroupLagSummaryDataAllOf added in v0.4.0

func NewConsumerGroupLagSummaryDataAllOf(clusterId string, consumerGroupId string, maxLagConsumerId string, maxLagClientId string, maxLagTopicName string, maxLagPartitionId int32, maxLag int64, totalLag int64, maxLagConsumer Relationship, maxLagPartition Relationship) *ConsumerGroupLagSummaryDataAllOf

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

func NewConsumerGroupLagSummaryDataAllOfWithDefaults added in v0.4.0

func NewConsumerGroupLagSummaryDataAllOfWithDefaults() *ConsumerGroupLagSummaryDataAllOf

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

func (*ConsumerGroupLagSummaryDataAllOf) GetClusterId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerGroupLagSummaryDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerGroupLagSummaryDataAllOf) GetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerGroupLagSummaryDataAllOf) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLag added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLag() int64

GetMaxLag returns the MaxLag field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagClientId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagClientId() string

GetMaxLagClientId returns the MaxLagClientId field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagClientIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagClientIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumer added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumer() Relationship

GetMaxLagConsumer returns the MaxLagConsumer field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerId() string

GetMaxLagConsumerId returns the MaxLagConsumerId field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagConsumerOk() (*Relationship, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagInstanceId() string

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagInstanceIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagInstanceIdOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagOk() (*int64, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartition added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartition() Relationship

GetMaxLagPartition returns the MaxLagPartition field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionId() int32

GetMaxLagPartitionId returns the MaxLagPartitionId field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionIdOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionIdOk() (*int32, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagPartitionOk() (*Relationship, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagTopicName added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagTopicName() string

GetMaxLagTopicName returns the MaxLagTopicName field value

func (*ConsumerGroupLagSummaryDataAllOf) GetMaxLagTopicNameOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetMaxLagTopicNameOk() (*string, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) GetTotalLag added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetTotalLag() int64

GetTotalLag returns the TotalLag field value

func (*ConsumerGroupLagSummaryDataAllOf) GetTotalLagOk added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) GetTotalLagOk() (*int64, bool)

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

func (*ConsumerGroupLagSummaryDataAllOf) HasMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) HasMaxLagInstanceId() bool

HasMaxLagInstanceId returns a boolean if a field has been set.

func (ConsumerGroupLagSummaryDataAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerGroupLagSummaryDataAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ConsumerGroupLagSummaryDataAllOf) SetClusterId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetConsumerGroupId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLag added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLag(v int64)

SetMaxLag sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagClientId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagClientId(v string)

SetMaxLagClientId sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagConsumer added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagConsumer(v Relationship)

SetMaxLagConsumer sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagConsumerId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagConsumerId(v string)

SetMaxLagConsumerId sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagInstanceId(v string)

SetMaxLagInstanceId gets a reference to the given NullableString and assigns it to the MaxLagInstanceId field.

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagInstanceIdNil added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagInstanceIdNil()

SetMaxLagInstanceIdNil sets the value for MaxLagInstanceId to be an explicit nil

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagPartition added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagPartition(v Relationship)

SetMaxLagPartition sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagPartitionId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagPartitionId(v int32)

SetMaxLagPartitionId sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetMaxLagTopicName added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetMaxLagTopicName(v string)

SetMaxLagTopicName sets field value

func (*ConsumerGroupLagSummaryDataAllOf) SetTotalLag added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) SetTotalLag(v int64)

SetTotalLag sets field value

func (*ConsumerGroupLagSummaryDataAllOf) UnsetMaxLagInstanceId added in v0.4.0

func (o *ConsumerGroupLagSummaryDataAllOf) UnsetMaxLagInstanceId()

UnsetMaxLagInstanceId ensures that no value is present for MaxLagInstanceId, not even an explicit nil

type ConsumerGroupV3Api

type ConsumerGroupV3Api interface {

	/*
			GetKafkaConsumer Get Consumer

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the consumer specified by the “consumer_id“.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @param consumerId The consumer ID.
			 @return ApiGetKafkaConsumerRequest
	*/
	GetKafkaConsumer(ctx _context.Context, clusterId string, consumerGroupId string, consumerId string) ApiGetKafkaConsumerRequest

	// GetKafkaConsumerExecute executes the request
	//  @return ConsumerData
	GetKafkaConsumerExecute(r ApiGetKafkaConsumerRequest) (ConsumerData, *_nethttp.Response, error)

	/*
			GetKafkaConsumerGroup Get Consumer Group

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the consumer group specified by the “consumer_group_id“.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @return ApiGetKafkaConsumerGroupRequest
	*/
	GetKafkaConsumerGroup(ctx _context.Context, clusterId string, consumerGroupId string) ApiGetKafkaConsumerGroupRequest

	// GetKafkaConsumerGroupExecute executes the request
	//  @return ConsumerGroupData
	GetKafkaConsumerGroupExecute(r ApiGetKafkaConsumerGroupRequest) (ConsumerGroupData, *_nethttp.Response, error)

	/*
			GetKafkaConsumerGroupLagSummary Get Consumer Group Lag Summary

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

		Return the maximum and total lag of the consumers belonging to the
		specified consumer group.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @return ApiGetKafkaConsumerGroupLagSummaryRequest
	*/
	GetKafkaConsumerGroupLagSummary(ctx _context.Context, clusterId string, consumerGroupId string) ApiGetKafkaConsumerGroupLagSummaryRequest

	// GetKafkaConsumerGroupLagSummaryExecute executes the request
	//  @return ConsumerGroupLagSummaryData
	GetKafkaConsumerGroupLagSummaryExecute(r ApiGetKafkaConsumerGroupLagSummaryRequest) (ConsumerGroupLagSummaryData, *_nethttp.Response, error)

	/*
			GetKafkaConsumerLag Get Consumer Lag

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

		Return the consumer lag on a partition with the given `partition_id`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @param topicName The topic name.
			 @param partitionId The partition ID.
			 @return ApiGetKafkaConsumerLagRequest
	*/
	GetKafkaConsumerLag(ctx _context.Context, clusterId string, consumerGroupId string, topicName string, partitionId int32) ApiGetKafkaConsumerLagRequest

	// GetKafkaConsumerLagExecute executes the request
	//  @return ConsumerLagData
	GetKafkaConsumerLagExecute(r ApiGetKafkaConsumerLagRequest) (ConsumerLagData, *_nethttp.Response, error)

	/*
			ListKafkaConsumerGroups List Consumer Groups

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the list of consumer groups that belong to the specified
		Kafka cluster.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaConsumerGroupsRequest
	*/
	ListKafkaConsumerGroups(ctx _context.Context, clusterId string) ApiListKafkaConsumerGroupsRequest

	// ListKafkaConsumerGroupsExecute executes the request
	//  @return ConsumerGroupDataList
	ListKafkaConsumerGroupsExecute(r ApiListKafkaConsumerGroupsRequest) (ConsumerGroupDataList, *_nethttp.Response, error)

	/*
			ListKafkaConsumerLags List Consumer Lags

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

		Return a list of consumer lags of the consumers belonging to the
		specified consumer group.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @return ApiListKafkaConsumerLagsRequest
	*/
	ListKafkaConsumerLags(ctx _context.Context, clusterId string, consumerGroupId string) ApiListKafkaConsumerLagsRequest

	// ListKafkaConsumerLagsExecute executes the request
	//  @return ConsumerLagDataList
	ListKafkaConsumerLagsExecute(r ApiListKafkaConsumerLagsRequest) (ConsumerLagDataList, *_nethttp.Response, error)

	/*
			ListKafkaConsumers List Consumers

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return a list of consumers that belong to the specified consumer
		group.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param consumerGroupId The consumer group ID.
			 @return ApiListKafkaConsumersRequest
	*/
	ListKafkaConsumers(ctx _context.Context, clusterId string, consumerGroupId string) ApiListKafkaConsumersRequest

	// ListKafkaConsumersExecute executes the request
	//  @return ConsumerDataList
	ListKafkaConsumersExecute(r ApiListKafkaConsumersRequest) (ConsumerDataList, *_nethttp.Response, error)
}

type ConsumerGroupV3ApiService

type ConsumerGroupV3ApiService service

ConsumerGroupV3ApiService ConsumerGroupV3Api service

func (*ConsumerGroupV3ApiService) GetKafkaConsumer added in v0.4.0

func (a *ConsumerGroupV3ApiService) GetKafkaConsumer(ctx _context.Context, clusterId string, consumerGroupId string, consumerId string) ApiGetKafkaConsumerRequest

GetKafkaConsumer Get Consumer

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the consumer specified by the “consumer_id“.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@param consumerId The consumer ID.
@return ApiGetKafkaConsumerRequest

func (*ConsumerGroupV3ApiService) GetKafkaConsumerExecute added in v0.4.0

Execute executes the request

@return ConsumerData

func (*ConsumerGroupV3ApiService) GetKafkaConsumerGroup added in v0.4.0

func (a *ConsumerGroupV3ApiService) GetKafkaConsumerGroup(ctx _context.Context, clusterId string, consumerGroupId string) ApiGetKafkaConsumerGroupRequest

GetKafkaConsumerGroup Get Consumer Group

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the consumer group specified by the “consumer_group_id“.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@return ApiGetKafkaConsumerGroupRequest

func (*ConsumerGroupV3ApiService) GetKafkaConsumerGroupExecute added in v0.4.0

Execute executes the request

@return ConsumerGroupData

func (*ConsumerGroupV3ApiService) GetKafkaConsumerGroupLagSummary added in v0.4.0

func (a *ConsumerGroupV3ApiService) GetKafkaConsumerGroupLagSummary(ctx _context.Context, clusterId string, consumerGroupId string) ApiGetKafkaConsumerGroupLagSummaryRequest

GetKafkaConsumerGroupLagSummary Get Consumer Group Lag Summary

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

Return the maximum and total lag of the consumers belonging to the specified consumer group.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@return ApiGetKafkaConsumerGroupLagSummaryRequest

func (*ConsumerGroupV3ApiService) GetKafkaConsumerGroupLagSummaryExecute added in v0.4.0

Execute executes the request

@return ConsumerGroupLagSummaryData

func (*ConsumerGroupV3ApiService) GetKafkaConsumerLag added in v0.14.0

func (a *ConsumerGroupV3ApiService) GetKafkaConsumerLag(ctx _context.Context, clusterId string, consumerGroupId string, topicName string, partitionId int32) ApiGetKafkaConsumerLagRequest

GetKafkaConsumerLag Get Consumer Lag

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

Return the consumer lag on a partition with the given `partition_id`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@param topicName The topic name.
@param partitionId The partition ID.
@return ApiGetKafkaConsumerLagRequest

func (*ConsumerGroupV3ApiService) GetKafkaConsumerLagExecute added in v0.14.0

Execute executes the request

@return ConsumerLagData

func (*ConsumerGroupV3ApiService) ListKafkaConsumerGroups added in v0.4.0

func (a *ConsumerGroupV3ApiService) ListKafkaConsumerGroups(ctx _context.Context, clusterId string) ApiListKafkaConsumerGroupsRequest

ListKafkaConsumerGroups List Consumer Groups

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the list of consumer groups that belong to the specified Kafka cluster.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaConsumerGroupsRequest

func (*ConsumerGroupV3ApiService) ListKafkaConsumerGroupsExecute added in v0.4.0

Execute executes the request

@return ConsumerGroupDataList

func (*ConsumerGroupV3ApiService) ListKafkaConsumerLags added in v0.4.0

func (a *ConsumerGroupV3ApiService) ListKafkaConsumerLags(ctx _context.Context, clusterId string, consumerGroupId string) ApiListKafkaConsumerLagsRequest

ListKafkaConsumerLags List Consumer Lags

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy) [![Available in dedicated clusters only](https://img.shields.io/badge/-Available%20in%20dedicated%20clusters%20only-%23bc8540)](https://docs.confluent.io/cloud/current/clusters/cluster-types.html#dedicated-cluster)

Return a list of consumer lags of the consumers belonging to the specified consumer group.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@return ApiListKafkaConsumerLagsRequest

func (*ConsumerGroupV3ApiService) ListKafkaConsumerLagsExecute added in v0.4.0

Execute executes the request

@return ConsumerLagDataList

func (*ConsumerGroupV3ApiService) ListKafkaConsumers added in v0.4.0

func (a *ConsumerGroupV3ApiService) ListKafkaConsumers(ctx _context.Context, clusterId string, consumerGroupId string) ApiListKafkaConsumersRequest

ListKafkaConsumers List Consumers

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return a list of consumers that belong to the specified consumer group.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param consumerGroupId The consumer group ID.
@return ApiListKafkaConsumersRequest

func (*ConsumerGroupV3ApiService) ListKafkaConsumersExecute added in v0.4.0

Execute executes the request

@return ConsumerDataList

type ConsumerLagData

type ConsumerLagData struct {
	Kind            string           `json:"kind,omitempty"`
	Metadata        ResourceMetadata `json:"metadata,omitempty"`
	ClusterId       string           `json:"cluster_id,omitempty"`
	ConsumerGroupId string           `json:"consumer_group_id,omitempty"`
	TopicName       string           `json:"topic_name,omitempty"`
	PartitionId     int32            `json:"partition_id,omitempty"`
	CurrentOffset   int64            `json:"current_offset,omitempty"`
	LogEndOffset    int64            `json:"log_end_offset,omitempty"`
	Lag             int64            `json:"lag,omitempty"`
	ConsumerId      string           `json:"consumer_id,omitempty"`
	InstanceId      NullableString   `json:"instance_id,omitempty"`
	ClientId        string           `json:"client_id,omitempty"`
}

ConsumerLagData struct for ConsumerLagData

func NewConsumerLagData added in v0.4.0

func NewConsumerLagData(kind string, metadata ResourceMetadata, clusterId string, consumerGroupId string, topicName string, partitionId int32, currentOffset int64, logEndOffset int64, lag int64, consumerId string, clientId string) *ConsumerLagData

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

func NewConsumerLagDataWithDefaults added in v0.4.0

func NewConsumerLagDataWithDefaults() *ConsumerLagData

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

func (*ConsumerLagData) GetClientId added in v0.4.0

func (o *ConsumerLagData) GetClientId() string

GetClientId returns the ClientId field value

func (*ConsumerLagData) GetClientIdOk added in v0.4.0

func (o *ConsumerLagData) GetClientIdOk() (*string, bool)

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

func (*ConsumerLagData) GetClusterId added in v0.4.0

func (o *ConsumerLagData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerLagData) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerLagData) GetConsumerGroupId added in v0.4.0

func (o *ConsumerLagData) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerLagData) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerLagData) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerLagData) GetConsumerId added in v0.4.0

func (o *ConsumerLagData) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerLagData) GetConsumerIdOk added in v0.4.0

func (o *ConsumerLagData) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerLagData) GetCurrentOffset added in v0.4.0

func (o *ConsumerLagData) GetCurrentOffset() int64

GetCurrentOffset returns the CurrentOffset field value

func (*ConsumerLagData) GetCurrentOffsetOk added in v0.4.0

func (o *ConsumerLagData) GetCurrentOffsetOk() (*int64, bool)

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

func (*ConsumerLagData) GetInstanceId added in v0.4.0

func (o *ConsumerLagData) GetInstanceId() string

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

func (*ConsumerLagData) GetInstanceIdOk added in v0.4.0

func (o *ConsumerLagData) GetInstanceIdOk() (*string, bool)

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

func (*ConsumerLagData) GetKind added in v0.4.0

func (o *ConsumerLagData) GetKind() string

GetKind returns the Kind field value

func (*ConsumerLagData) GetKindOk added in v0.4.0

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

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

func (*ConsumerLagData) GetLag added in v0.4.0

func (o *ConsumerLagData) GetLag() int64

GetLag returns the Lag field value

func (*ConsumerLagData) GetLagOk added in v0.4.0

func (o *ConsumerLagData) GetLagOk() (*int64, bool)

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

func (*ConsumerLagData) GetLogEndOffset added in v0.4.0

func (o *ConsumerLagData) GetLogEndOffset() int64

GetLogEndOffset returns the LogEndOffset field value

func (*ConsumerLagData) GetLogEndOffsetOk added in v0.4.0

func (o *ConsumerLagData) GetLogEndOffsetOk() (*int64, bool)

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

func (*ConsumerLagData) GetMetadata added in v0.4.0

func (o *ConsumerLagData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ConsumerLagData) GetMetadataOk added in v0.4.0

func (o *ConsumerLagData) GetMetadataOk() (*ResourceMetadata, bool)

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

func (*ConsumerLagData) GetPartitionId added in v0.4.0

func (o *ConsumerLagData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ConsumerLagData) GetPartitionIdOk added in v0.4.0

func (o *ConsumerLagData) GetPartitionIdOk() (*int32, bool)

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

func (*ConsumerLagData) GetTopicName added in v0.4.0

func (o *ConsumerLagData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ConsumerLagData) GetTopicNameOk added in v0.4.0

func (o *ConsumerLagData) GetTopicNameOk() (*string, bool)

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

func (*ConsumerLagData) HasInstanceId added in v0.4.0

func (o *ConsumerLagData) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (ConsumerLagData) MarshalJSON added in v0.4.0

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

func (*ConsumerLagData) Redact added in v0.4.0

func (o *ConsumerLagData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerLagData) SetClientId added in v0.4.0

func (o *ConsumerLagData) SetClientId(v string)

SetClientId sets field value

func (*ConsumerLagData) SetClusterId added in v0.4.0

func (o *ConsumerLagData) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerLagData) SetConsumerGroupId added in v0.4.0

func (o *ConsumerLagData) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerLagData) SetConsumerId added in v0.4.0

func (o *ConsumerLagData) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerLagData) SetCurrentOffset added in v0.4.0

func (o *ConsumerLagData) SetCurrentOffset(v int64)

SetCurrentOffset sets field value

func (*ConsumerLagData) SetInstanceId added in v0.4.0

func (o *ConsumerLagData) SetInstanceId(v string)

SetInstanceId gets a reference to the given NullableString and assigns it to the InstanceId field.

func (*ConsumerLagData) SetInstanceIdNil added in v0.4.0

func (o *ConsumerLagData) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*ConsumerLagData) SetKind added in v0.4.0

func (o *ConsumerLagData) SetKind(v string)

SetKind sets field value

func (*ConsumerLagData) SetLag added in v0.4.0

func (o *ConsumerLagData) SetLag(v int64)

SetLag sets field value

func (*ConsumerLagData) SetLogEndOffset added in v0.4.0

func (o *ConsumerLagData) SetLogEndOffset(v int64)

SetLogEndOffset sets field value

func (*ConsumerLagData) SetMetadata added in v0.4.0

func (o *ConsumerLagData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ConsumerLagData) SetPartitionId added in v0.4.0

func (o *ConsumerLagData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ConsumerLagData) SetTopicName added in v0.4.0

func (o *ConsumerLagData) SetTopicName(v string)

SetTopicName sets field value

func (*ConsumerLagData) UnsetInstanceId added in v0.4.0

func (o *ConsumerLagData) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

type ConsumerLagDataAllOf

type ConsumerLagDataAllOf struct {
	ClusterId       string         `json:"cluster_id,omitempty"`
	ConsumerGroupId string         `json:"consumer_group_id,omitempty"`
	TopicName       string         `json:"topic_name,omitempty"`
	PartitionId     int32          `json:"partition_id,omitempty"`
	CurrentOffset   int64          `json:"current_offset,omitempty"`
	LogEndOffset    int64          `json:"log_end_offset,omitempty"`
	Lag             int64          `json:"lag,omitempty"`
	ConsumerId      string         `json:"consumer_id,omitempty"`
	InstanceId      NullableString `json:"instance_id,omitempty"`
	ClientId        string         `json:"client_id,omitempty"`
}

ConsumerLagDataAllOf struct for ConsumerLagDataAllOf

func NewConsumerLagDataAllOf added in v0.4.0

func NewConsumerLagDataAllOf(clusterId string, consumerGroupId string, topicName string, partitionId int32, currentOffset int64, logEndOffset int64, lag int64, consumerId string, clientId string) *ConsumerLagDataAllOf

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

func NewConsumerLagDataAllOfWithDefaults added in v0.4.0

func NewConsumerLagDataAllOfWithDefaults() *ConsumerLagDataAllOf

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

func (*ConsumerLagDataAllOf) GetClientId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetClientId() string

GetClientId returns the ClientId field value

func (*ConsumerLagDataAllOf) GetClientIdOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetClientIdOk() (*string, bool)

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

func (*ConsumerLagDataAllOf) GetClusterId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConsumerLagDataAllOf) GetClusterIdOk added in v0.4.0

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

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

func (*ConsumerLagDataAllOf) GetConsumerGroupId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetConsumerGroupId() string

GetConsumerGroupId returns the ConsumerGroupId field value

func (*ConsumerLagDataAllOf) GetConsumerGroupIdOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetConsumerGroupIdOk() (*string, bool)

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

func (*ConsumerLagDataAllOf) GetConsumerId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetConsumerId() string

GetConsumerId returns the ConsumerId field value

func (*ConsumerLagDataAllOf) GetConsumerIdOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetConsumerIdOk() (*string, bool)

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

func (*ConsumerLagDataAllOf) GetCurrentOffset added in v0.4.0

func (o *ConsumerLagDataAllOf) GetCurrentOffset() int64

GetCurrentOffset returns the CurrentOffset field value

func (*ConsumerLagDataAllOf) GetCurrentOffsetOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetCurrentOffsetOk() (*int64, bool)

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

func (*ConsumerLagDataAllOf) GetInstanceId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetInstanceId() string

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

func (*ConsumerLagDataAllOf) GetInstanceIdOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetInstanceIdOk() (*string, bool)

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

func (*ConsumerLagDataAllOf) GetLag added in v0.4.0

func (o *ConsumerLagDataAllOf) GetLag() int64

GetLag returns the Lag field value

func (*ConsumerLagDataAllOf) GetLagOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetLagOk() (*int64, bool)

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

func (*ConsumerLagDataAllOf) GetLogEndOffset added in v0.4.0

func (o *ConsumerLagDataAllOf) GetLogEndOffset() int64

GetLogEndOffset returns the LogEndOffset field value

func (*ConsumerLagDataAllOf) GetLogEndOffsetOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetLogEndOffsetOk() (*int64, bool)

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

func (*ConsumerLagDataAllOf) GetPartitionId added in v0.4.0

func (o *ConsumerLagDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ConsumerLagDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetPartitionIdOk() (*int32, bool)

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

func (*ConsumerLagDataAllOf) GetTopicName added in v0.4.0

func (o *ConsumerLagDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ConsumerLagDataAllOf) GetTopicNameOk added in v0.4.0

func (o *ConsumerLagDataAllOf) GetTopicNameOk() (*string, bool)

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

func (*ConsumerLagDataAllOf) HasInstanceId added in v0.4.0

func (o *ConsumerLagDataAllOf) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (ConsumerLagDataAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerLagDataAllOf) Redact added in v0.4.0

func (o *ConsumerLagDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerLagDataAllOf) SetClientId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetClientId(v string)

SetClientId sets field value

func (*ConsumerLagDataAllOf) SetClusterId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConsumerLagDataAllOf) SetConsumerGroupId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetConsumerGroupId(v string)

SetConsumerGroupId sets field value

func (*ConsumerLagDataAllOf) SetConsumerId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetConsumerId(v string)

SetConsumerId sets field value

func (*ConsumerLagDataAllOf) SetCurrentOffset added in v0.4.0

func (o *ConsumerLagDataAllOf) SetCurrentOffset(v int64)

SetCurrentOffset sets field value

func (*ConsumerLagDataAllOf) SetInstanceId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetInstanceId(v string)

SetInstanceId gets a reference to the given NullableString and assigns it to the InstanceId field.

func (*ConsumerLagDataAllOf) SetInstanceIdNil added in v0.4.0

func (o *ConsumerLagDataAllOf) SetInstanceIdNil()

SetInstanceIdNil sets the value for InstanceId to be an explicit nil

func (*ConsumerLagDataAllOf) SetLag added in v0.4.0

func (o *ConsumerLagDataAllOf) SetLag(v int64)

SetLag sets field value

func (*ConsumerLagDataAllOf) SetLogEndOffset added in v0.4.0

func (o *ConsumerLagDataAllOf) SetLogEndOffset(v int64)

SetLogEndOffset sets field value

func (*ConsumerLagDataAllOf) SetPartitionId added in v0.4.0

func (o *ConsumerLagDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ConsumerLagDataAllOf) SetTopicName added in v0.4.0

func (o *ConsumerLagDataAllOf) SetTopicName(v string)

SetTopicName sets field value

func (*ConsumerLagDataAllOf) UnsetInstanceId added in v0.4.0

func (o *ConsumerLagDataAllOf) UnsetInstanceId()

UnsetInstanceId ensures that no value is present for InstanceId, not even an explicit nil

type ConsumerLagDataList

type ConsumerLagDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ConsumerLagData          `json:"data,omitempty"`
}

ConsumerLagDataList struct for ConsumerLagDataList

func NewConsumerLagDataList added in v0.4.0

func NewConsumerLagDataList(kind string, metadata ResourceCollectionMetadata, data []ConsumerLagData) *ConsumerLagDataList

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

func NewConsumerLagDataListWithDefaults added in v0.4.0

func NewConsumerLagDataListWithDefaults() *ConsumerLagDataList

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

func (*ConsumerLagDataList) GetData added in v0.4.0

func (o *ConsumerLagDataList) GetData() []ConsumerLagData

GetData returns the Data field value

func (*ConsumerLagDataList) GetDataOk added in v0.4.0

func (o *ConsumerLagDataList) GetDataOk() (*[]ConsumerLagData, bool)

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

func (*ConsumerLagDataList) GetKind added in v0.4.0

func (o *ConsumerLagDataList) GetKind() string

GetKind returns the Kind field value

func (*ConsumerLagDataList) GetKindOk added in v0.4.0

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

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

func (*ConsumerLagDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ConsumerLagDataList) GetMetadataOk added in v0.4.0

func (o *ConsumerLagDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

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

func (ConsumerLagDataList) MarshalJSON added in v0.4.0

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

func (*ConsumerLagDataList) Redact added in v0.4.0

func (o *ConsumerLagDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerLagDataList) SetData added in v0.4.0

func (o *ConsumerLagDataList) SetData(v []ConsumerLagData)

SetData sets field value

func (*ConsumerLagDataList) SetKind added in v0.4.0

func (o *ConsumerLagDataList) SetKind(v string)

SetKind sets field value

func (*ConsumerLagDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ConsumerLagDataListAllOf

type ConsumerLagDataListAllOf struct {
	Data []ConsumerLagData `json:"data,omitempty"`
}

ConsumerLagDataListAllOf struct for ConsumerLagDataListAllOf

func NewConsumerLagDataListAllOf added in v0.4.0

func NewConsumerLagDataListAllOf(data []ConsumerLagData) *ConsumerLagDataListAllOf

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

func NewConsumerLagDataListAllOfWithDefaults added in v0.4.0

func NewConsumerLagDataListAllOfWithDefaults() *ConsumerLagDataListAllOf

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

func (*ConsumerLagDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ConsumerLagDataListAllOf) GetDataOk added in v0.4.0

func (o *ConsumerLagDataListAllOf) GetDataOk() (*[]ConsumerLagData, bool)

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

func (ConsumerLagDataListAllOf) MarshalJSON added in v0.4.0

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

func (*ConsumerLagDataListAllOf) Redact added in v0.4.0

func (o *ConsumerLagDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ConsumerLagDataListAllOf) SetData added in v0.4.0

func (o *ConsumerLagDataListAllOf) SetData(v []ConsumerLagData)

SetData sets field value

type CreateAclRequestData

type CreateAclRequestData struct {
	ResourceType AclResourceType `json:"resource_type,omitempty"`
	ResourceName string          `json:"resource_name,omitempty"`
	PatternType  string          `json:"pattern_type,omitempty"`
	Principal    string          `json:"principal,omitempty"`
	Host         string          `json:"host,omitempty"`
	Operation    string          `json:"operation,omitempty"`
	Permission   string          `json:"permission,omitempty"`
}

CreateAclRequestData struct for CreateAclRequestData

func NewCreateAclRequestData added in v0.4.0

func NewCreateAclRequestData(resourceType AclResourceType, resourceName string, patternType string, principal string, host string, operation string, permission string) *CreateAclRequestData

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

func NewCreateAclRequestDataWithDefaults added in v0.4.0

func NewCreateAclRequestDataWithDefaults() *CreateAclRequestData

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

func (*CreateAclRequestData) GetHost added in v0.4.0

func (o *CreateAclRequestData) GetHost() string

GetHost returns the Host field value

func (*CreateAclRequestData) GetHostOk added in v0.4.0

func (o *CreateAclRequestData) GetHostOk() (*string, bool)

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

func (*CreateAclRequestData) GetOperation added in v0.4.0

func (o *CreateAclRequestData) GetOperation() string

GetOperation returns the Operation field value

func (*CreateAclRequestData) GetOperationOk added in v0.4.0

func (o *CreateAclRequestData) GetOperationOk() (*string, bool)

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

func (*CreateAclRequestData) GetPatternType added in v0.4.0

func (o *CreateAclRequestData) GetPatternType() string

GetPatternType returns the PatternType field value

func (*CreateAclRequestData) GetPatternTypeOk added in v0.4.0

func (o *CreateAclRequestData) GetPatternTypeOk() (*string, bool)

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

func (*CreateAclRequestData) GetPermission added in v0.4.0

func (o *CreateAclRequestData) GetPermission() string

GetPermission returns the Permission field value

func (*CreateAclRequestData) GetPermissionOk added in v0.4.0

func (o *CreateAclRequestData) GetPermissionOk() (*string, bool)

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

func (*CreateAclRequestData) GetPrincipal added in v0.4.0

func (o *CreateAclRequestData) GetPrincipal() string

GetPrincipal returns the Principal field value

func (*CreateAclRequestData) GetPrincipalOk added in v0.4.0

func (o *CreateAclRequestData) GetPrincipalOk() (*string, bool)

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

func (*CreateAclRequestData) GetResourceName added in v0.4.0

func (o *CreateAclRequestData) GetResourceName() string

GetResourceName returns the ResourceName field value

func (*CreateAclRequestData) GetResourceNameOk added in v0.4.0

func (o *CreateAclRequestData) GetResourceNameOk() (*string, bool)

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

func (*CreateAclRequestData) GetResourceType added in v0.4.0

func (o *CreateAclRequestData) GetResourceType() AclResourceType

GetResourceType returns the ResourceType field value

func (*CreateAclRequestData) GetResourceTypeOk added in v0.4.0

func (o *CreateAclRequestData) GetResourceTypeOk() (*AclResourceType, bool)

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

func (CreateAclRequestData) MarshalJSON added in v0.4.0

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

func (*CreateAclRequestData) Redact added in v0.4.0

func (o *CreateAclRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateAclRequestData) SetHost added in v0.4.0

func (o *CreateAclRequestData) SetHost(v string)

SetHost sets field value

func (*CreateAclRequestData) SetOperation added in v0.4.0

func (o *CreateAclRequestData) SetOperation(v string)

SetOperation sets field value

func (*CreateAclRequestData) SetPatternType added in v0.4.0

func (o *CreateAclRequestData) SetPatternType(v string)

SetPatternType sets field value

func (*CreateAclRequestData) SetPermission added in v0.4.0

func (o *CreateAclRequestData) SetPermission(v string)

SetPermission sets field value

func (*CreateAclRequestData) SetPrincipal added in v0.4.0

func (o *CreateAclRequestData) SetPrincipal(v string)

SetPrincipal sets field value

func (*CreateAclRequestData) SetResourceName added in v0.4.0

func (o *CreateAclRequestData) SetResourceName(v string)

SetResourceName sets field value

func (*CreateAclRequestData) SetResourceType added in v0.4.0

func (o *CreateAclRequestData) SetResourceType(v AclResourceType)

SetResourceType sets field value

type CreateAclRequestDataList added in v0.10.0

type CreateAclRequestDataList struct {
	Data []CreateAclRequestData `json:"data,omitempty"`
}

CreateAclRequestDataList struct for CreateAclRequestDataList

func NewCreateAclRequestDataList added in v0.10.0

func NewCreateAclRequestDataList(data []CreateAclRequestData) *CreateAclRequestDataList

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

func NewCreateAclRequestDataListWithDefaults added in v0.10.0

func NewCreateAclRequestDataListWithDefaults() *CreateAclRequestDataList

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

func (*CreateAclRequestDataList) GetData added in v0.10.0

GetData returns the Data field value

func (*CreateAclRequestDataList) GetDataOk added in v0.10.0

func (o *CreateAclRequestDataList) GetDataOk() (*[]CreateAclRequestData, bool)

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

func (CreateAclRequestDataList) MarshalJSON added in v0.10.0

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

func (*CreateAclRequestDataList) Redact added in v0.10.0

func (o *CreateAclRequestDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateAclRequestDataList) SetData added in v0.10.0

SetData sets field value

type CreateAclRequestDataListAllOf added in v0.10.0

type CreateAclRequestDataListAllOf struct {
	Data []CreateAclRequestData `json:"data,omitempty"`
}

CreateAclRequestDataListAllOf struct for CreateAclRequestDataListAllOf

func NewCreateAclRequestDataListAllOf added in v0.10.0

func NewCreateAclRequestDataListAllOf(data []CreateAclRequestData) *CreateAclRequestDataListAllOf

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

func NewCreateAclRequestDataListAllOfWithDefaults added in v0.10.0

func NewCreateAclRequestDataListAllOfWithDefaults() *CreateAclRequestDataListAllOf

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

func (*CreateAclRequestDataListAllOf) GetData added in v0.10.0

GetData returns the Data field value

func (*CreateAclRequestDataListAllOf) GetDataOk added in v0.10.0

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

func (CreateAclRequestDataListAllOf) MarshalJSON added in v0.10.0

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

func (*CreateAclRequestDataListAllOf) Redact added in v0.10.0

func (o *CreateAclRequestDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateAclRequestDataListAllOf) SetData added in v0.10.0

SetData sets field value

type CreateLinkRequestData

type CreateLinkRequestData struct {
	SourceClusterId      *string `json:"source_cluster_id,omitempty"`
	DestinationClusterId *string `json:"destination_cluster_id,omitempty"`
	// The expected remote cluster ID.
	RemoteClusterId *string `json:"remote_cluster_id,omitempty"`
	// The expected cluster link ID. Can be provided when creating the second side of a bidirectional link for validating the link ID is as expected. If it's not provided, it's inferred from the remote cluster.
	ClusterLinkId *string       `json:"cluster_link_id,omitempty"`
	Configs       *[]ConfigData `json:"configs,omitempty"`
}

CreateLinkRequestData struct for CreateLinkRequestData

func NewCreateLinkRequestData added in v0.4.0

func NewCreateLinkRequestData() *CreateLinkRequestData

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

func NewCreateLinkRequestDataWithDefaults added in v0.4.0

func NewCreateLinkRequestDataWithDefaults() *CreateLinkRequestData

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

func (*CreateLinkRequestData) GetClusterLinkId added in v0.14.0

func (o *CreateLinkRequestData) GetClusterLinkId() string

GetClusterLinkId returns the ClusterLinkId field value if set, zero value otherwise.

func (*CreateLinkRequestData) GetClusterLinkIdOk added in v0.14.0

func (o *CreateLinkRequestData) GetClusterLinkIdOk() (*string, bool)

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

func (*CreateLinkRequestData) GetConfigs added in v0.4.0

func (o *CreateLinkRequestData) GetConfigs() []ConfigData

GetConfigs returns the Configs field value if set, zero value otherwise.

func (*CreateLinkRequestData) GetConfigsOk added in v0.4.0

func (o *CreateLinkRequestData) GetConfigsOk() (*[]ConfigData, bool)

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

func (*CreateLinkRequestData) GetDestinationClusterId added in v0.7.0

func (o *CreateLinkRequestData) GetDestinationClusterId() string

GetDestinationClusterId returns the DestinationClusterId field value if set, zero value otherwise.

func (*CreateLinkRequestData) GetDestinationClusterIdOk added in v0.7.0

func (o *CreateLinkRequestData) GetDestinationClusterIdOk() (*string, bool)

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

func (*CreateLinkRequestData) GetRemoteClusterId added in v0.14.0

func (o *CreateLinkRequestData) GetRemoteClusterId() string

GetRemoteClusterId returns the RemoteClusterId field value if set, zero value otherwise.

func (*CreateLinkRequestData) GetRemoteClusterIdOk added in v0.14.0

func (o *CreateLinkRequestData) GetRemoteClusterIdOk() (*string, bool)

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

func (*CreateLinkRequestData) GetSourceClusterId added in v0.4.0

func (o *CreateLinkRequestData) GetSourceClusterId() string

GetSourceClusterId returns the SourceClusterId field value if set, zero value otherwise.

func (*CreateLinkRequestData) GetSourceClusterIdOk added in v0.4.0

func (o *CreateLinkRequestData) GetSourceClusterIdOk() (*string, bool)

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

func (*CreateLinkRequestData) HasClusterLinkId added in v0.14.0

func (o *CreateLinkRequestData) HasClusterLinkId() bool

HasClusterLinkId returns a boolean if a field has been set.

func (*CreateLinkRequestData) HasConfigs added in v0.4.0

func (o *CreateLinkRequestData) HasConfigs() bool

HasConfigs returns a boolean if a field has been set.

func (*CreateLinkRequestData) HasDestinationClusterId added in v0.7.0

func (o *CreateLinkRequestData) HasDestinationClusterId() bool

HasDestinationClusterId returns a boolean if a field has been set.

func (*CreateLinkRequestData) HasRemoteClusterId added in v0.14.0

func (o *CreateLinkRequestData) HasRemoteClusterId() bool

HasRemoteClusterId returns a boolean if a field has been set.

func (*CreateLinkRequestData) HasSourceClusterId added in v0.4.0

func (o *CreateLinkRequestData) HasSourceClusterId() bool

HasSourceClusterId returns a boolean if a field has been set.

func (CreateLinkRequestData) MarshalJSON added in v0.4.0

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

func (*CreateLinkRequestData) Redact added in v0.4.0

func (o *CreateLinkRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateLinkRequestData) SetClusterLinkId added in v0.14.0

func (o *CreateLinkRequestData) SetClusterLinkId(v string)

SetClusterLinkId gets a reference to the given string and assigns it to the ClusterLinkId field.

func (*CreateLinkRequestData) SetConfigs added in v0.4.0

func (o *CreateLinkRequestData) SetConfigs(v []ConfigData)

SetConfigs gets a reference to the given []ConfigData and assigns it to the Configs field.

func (*CreateLinkRequestData) SetDestinationClusterId added in v0.7.0

func (o *CreateLinkRequestData) SetDestinationClusterId(v string)

SetDestinationClusterId gets a reference to the given string and assigns it to the DestinationClusterId field.

func (*CreateLinkRequestData) SetRemoteClusterId added in v0.14.0

func (o *CreateLinkRequestData) SetRemoteClusterId(v string)

SetRemoteClusterId gets a reference to the given string and assigns it to the RemoteClusterId field.

func (*CreateLinkRequestData) SetSourceClusterId added in v0.4.0

func (o *CreateLinkRequestData) SetSourceClusterId(v string)

SetSourceClusterId gets a reference to the given string and assigns it to the SourceClusterId field.

type CreateMirrorTopicRequestData

type CreateMirrorTopicRequestData struct {
	SourceTopicName   string        `json:"source_topic_name,omitempty"`
	MirrorTopicName   *string       `json:"mirror_topic_name,omitempty"`
	ReplicationFactor *int32        `json:"replication_factor,omitempty"`
	Configs           *[]ConfigData `json:"configs,omitempty"`
}

CreateMirrorTopicRequestData struct for CreateMirrorTopicRequestData

func NewCreateMirrorTopicRequestData added in v0.4.0

func NewCreateMirrorTopicRequestData(sourceTopicName string) *CreateMirrorTopicRequestData

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

func NewCreateMirrorTopicRequestDataWithDefaults added in v0.4.0

func NewCreateMirrorTopicRequestDataWithDefaults() *CreateMirrorTopicRequestData

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

func (*CreateMirrorTopicRequestData) GetConfigs added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetConfigs() []ConfigData

GetConfigs returns the Configs field value if set, zero value otherwise.

func (*CreateMirrorTopicRequestData) GetConfigsOk added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetConfigsOk() (*[]ConfigData, bool)

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

func (*CreateMirrorTopicRequestData) GetMirrorTopicName added in v0.7.0

func (o *CreateMirrorTopicRequestData) GetMirrorTopicName() string

GetMirrorTopicName returns the MirrorTopicName field value if set, zero value otherwise.

func (*CreateMirrorTopicRequestData) GetMirrorTopicNameOk added in v0.7.0

func (o *CreateMirrorTopicRequestData) GetMirrorTopicNameOk() (*string, bool)

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

func (*CreateMirrorTopicRequestData) GetReplicationFactor added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetReplicationFactor() int32

GetReplicationFactor returns the ReplicationFactor field value if set, zero value otherwise.

func (*CreateMirrorTopicRequestData) GetReplicationFactorOk added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetReplicationFactorOk() (*int32, bool)

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

func (*CreateMirrorTopicRequestData) GetSourceTopicName added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetSourceTopicName() string

GetSourceTopicName returns the SourceTopicName field value

func (*CreateMirrorTopicRequestData) GetSourceTopicNameOk added in v0.4.0

func (o *CreateMirrorTopicRequestData) GetSourceTopicNameOk() (*string, bool)

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

func (*CreateMirrorTopicRequestData) HasConfigs added in v0.4.0

func (o *CreateMirrorTopicRequestData) HasConfigs() bool

HasConfigs returns a boolean if a field has been set.

func (*CreateMirrorTopicRequestData) HasMirrorTopicName added in v0.7.0

func (o *CreateMirrorTopicRequestData) HasMirrorTopicName() bool

HasMirrorTopicName returns a boolean if a field has been set.

func (*CreateMirrorTopicRequestData) HasReplicationFactor added in v0.4.0

func (o *CreateMirrorTopicRequestData) HasReplicationFactor() bool

HasReplicationFactor returns a boolean if a field has been set.

func (CreateMirrorTopicRequestData) MarshalJSON added in v0.4.0

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

func (*CreateMirrorTopicRequestData) Redact added in v0.4.0

func (o *CreateMirrorTopicRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateMirrorTopicRequestData) SetConfigs added in v0.4.0

func (o *CreateMirrorTopicRequestData) SetConfigs(v []ConfigData)

SetConfigs gets a reference to the given []ConfigData and assigns it to the Configs field.

func (*CreateMirrorTopicRequestData) SetMirrorTopicName added in v0.7.0

func (o *CreateMirrorTopicRequestData) SetMirrorTopicName(v string)

SetMirrorTopicName gets a reference to the given string and assigns it to the MirrorTopicName field.

func (*CreateMirrorTopicRequestData) SetReplicationFactor added in v0.4.0

func (o *CreateMirrorTopicRequestData) SetReplicationFactor(v int32)

SetReplicationFactor gets a reference to the given int32 and assigns it to the ReplicationFactor field.

func (*CreateMirrorTopicRequestData) SetSourceTopicName added in v0.4.0

func (o *CreateMirrorTopicRequestData) SetSourceTopicName(v string)

SetSourceTopicName sets field value

type CreateTopicRequestData

type CreateTopicRequestData struct {
	TopicName         string                           `json:"topic_name,omitempty"`
	PartitionsCount   *int32                           `json:"partitions_count,omitempty"`
	ReplicationFactor *int32                           `json:"replication_factor,omitempty"`
	Configs           *[]CreateTopicRequestDataConfigs `json:"configs,omitempty"`
	ValidateOnly      *bool                            `json:"validate_only,omitempty"`
}

CreateTopicRequestData struct for CreateTopicRequestData

func NewCreateTopicRequestData added in v0.4.0

func NewCreateTopicRequestData(topicName string) *CreateTopicRequestData

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

func NewCreateTopicRequestDataWithDefaults added in v0.4.0

func NewCreateTopicRequestDataWithDefaults() *CreateTopicRequestData

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

func (*CreateTopicRequestData) GetConfigs added in v0.4.0

GetConfigs returns the Configs field value if set, zero value otherwise.

func (*CreateTopicRequestData) GetConfigsOk added in v0.4.0

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

func (*CreateTopicRequestData) GetPartitionsCount added in v0.4.0

func (o *CreateTopicRequestData) GetPartitionsCount() int32

GetPartitionsCount returns the PartitionsCount field value if set, zero value otherwise.

func (*CreateTopicRequestData) GetPartitionsCountOk added in v0.4.0

func (o *CreateTopicRequestData) GetPartitionsCountOk() (*int32, bool)

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

func (*CreateTopicRequestData) GetReplicationFactor added in v0.4.0

func (o *CreateTopicRequestData) GetReplicationFactor() int32

GetReplicationFactor returns the ReplicationFactor field value if set, zero value otherwise.

func (*CreateTopicRequestData) GetReplicationFactorOk added in v0.4.0

func (o *CreateTopicRequestData) GetReplicationFactorOk() (*int32, bool)

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

func (*CreateTopicRequestData) GetTopicName added in v0.4.0

func (o *CreateTopicRequestData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*CreateTopicRequestData) GetTopicNameOk added in v0.4.0

func (o *CreateTopicRequestData) GetTopicNameOk() (*string, bool)

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

func (*CreateTopicRequestData) GetValidateOnly added in v0.12.0

func (o *CreateTopicRequestData) GetValidateOnly() bool

GetValidateOnly returns the ValidateOnly field value if set, zero value otherwise.

func (*CreateTopicRequestData) GetValidateOnlyOk added in v0.12.0

func (o *CreateTopicRequestData) GetValidateOnlyOk() (*bool, bool)

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

func (*CreateTopicRequestData) HasConfigs added in v0.4.0

func (o *CreateTopicRequestData) HasConfigs() bool

HasConfigs returns a boolean if a field has been set.

func (*CreateTopicRequestData) HasPartitionsCount added in v0.4.0

func (o *CreateTopicRequestData) HasPartitionsCount() bool

HasPartitionsCount returns a boolean if a field has been set.

func (*CreateTopicRequestData) HasReplicationFactor added in v0.4.0

func (o *CreateTopicRequestData) HasReplicationFactor() bool

HasReplicationFactor returns a boolean if a field has been set.

func (*CreateTopicRequestData) HasValidateOnly added in v0.12.0

func (o *CreateTopicRequestData) HasValidateOnly() bool

HasValidateOnly returns a boolean if a field has been set.

func (CreateTopicRequestData) MarshalJSON added in v0.4.0

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

func (*CreateTopicRequestData) Redact added in v0.4.0

func (o *CreateTopicRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateTopicRequestData) SetConfigs added in v0.4.0

SetConfigs gets a reference to the given []CreateTopicRequestDataConfigs and assigns it to the Configs field.

func (*CreateTopicRequestData) SetPartitionsCount added in v0.4.0

func (o *CreateTopicRequestData) SetPartitionsCount(v int32)

SetPartitionsCount gets a reference to the given int32 and assigns it to the PartitionsCount field.

func (*CreateTopicRequestData) SetReplicationFactor added in v0.4.0

func (o *CreateTopicRequestData) SetReplicationFactor(v int32)

SetReplicationFactor gets a reference to the given int32 and assigns it to the ReplicationFactor field.

func (*CreateTopicRequestData) SetTopicName added in v0.4.0

func (o *CreateTopicRequestData) SetTopicName(v string)

SetTopicName sets field value

func (*CreateTopicRequestData) SetValidateOnly added in v0.12.0

func (o *CreateTopicRequestData) SetValidateOnly(v bool)

SetValidateOnly gets a reference to the given bool and assigns it to the ValidateOnly field.

type CreateTopicRequestDataConfigs

type CreateTopicRequestDataConfigs struct {
	Name  string         `json:"name,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

CreateTopicRequestDataConfigs struct for CreateTopicRequestDataConfigs

func NewCreateTopicRequestDataConfigs added in v0.4.0

func NewCreateTopicRequestDataConfigs(name string) *CreateTopicRequestDataConfigs

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

func NewCreateTopicRequestDataConfigsWithDefaults added in v0.4.0

func NewCreateTopicRequestDataConfigsWithDefaults() *CreateTopicRequestDataConfigs

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

func (*CreateTopicRequestDataConfigs) GetName added in v0.4.0

GetName returns the Name field value

func (*CreateTopicRequestDataConfigs) GetNameOk added in v0.4.0

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

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

func (*CreateTopicRequestDataConfigs) GetValue added in v0.4.0

func (o *CreateTopicRequestDataConfigs) GetValue() string

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

func (*CreateTopicRequestDataConfigs) GetValueOk added in v0.4.0

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

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

func (*CreateTopicRequestDataConfigs) HasValue added in v0.4.0

func (o *CreateTopicRequestDataConfigs) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CreateTopicRequestDataConfigs) MarshalJSON added in v0.4.0

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

func (*CreateTopicRequestDataConfigs) Redact added in v0.4.0

func (o *CreateTopicRequestDataConfigs) Redact()

Redact resets all sensitive fields to their zero value.

func (*CreateTopicRequestDataConfigs) SetName added in v0.4.0

func (o *CreateTopicRequestDataConfigs) SetName(v string)

SetName sets field value

func (*CreateTopicRequestDataConfigs) SetValue added in v0.4.0

func (o *CreateTopicRequestDataConfigs) SetValue(v string)

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

func (*CreateTopicRequestDataConfigs) SetValueNil added in v0.4.0

func (o *CreateTopicRequestDataConfigs) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*CreateTopicRequestDataConfigs) UnsetValue added in v0.4.0

func (o *CreateTopicRequestDataConfigs) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type Error

type Error struct {
	ErrorCode int32          `json:"error_code,omitempty"`
	Message   NullableString `json:"message,omitempty"`
}

Error struct for Error

func NewError added in v0.4.0

func NewError(errorCode int32, message NullableString) *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 added in v0.4.0

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) GetErrorCode added in v0.4.0

func (o *Error) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value

func (*Error) GetErrorCodeOk added in v0.4.0

func (o *Error) GetErrorCodeOk() (*int32, bool)

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

func (*Error) GetMessage added in v0.4.0

func (o *Error) GetMessage() string

GetMessage returns the Message field value If the value is explicit nil, the zero value for string will be returned

func (*Error) GetMessageOk added in v0.4.0

func (o *Error) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (Error) MarshalJSON added in v0.4.0

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) Redact added in v0.4.0

func (o *Error) Redact()

Redact resets all sensitive fields to their zero value.

func (*Error) SetErrorCode added in v0.4.0

func (o *Error) SetErrorCode(v int32)

SetErrorCode sets field value

func (*Error) SetMessage added in v0.4.0

func (o *Error) SetMessage(v string)

SetMessage sets field value

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type InlineResponse200

type InlineResponse200 struct {
	Data []AclData `json:"data,omitempty"`
}

InlineResponse200 struct for InlineResponse200

func NewInlineResponse200 added in v0.4.0

func NewInlineResponse200(data []AclData) *InlineResponse200

NewInlineResponse200 instantiates a new InlineResponse200 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInlineResponse200WithDefaults added in v0.4.0

func NewInlineResponse200WithDefaults() *InlineResponse200

NewInlineResponse200WithDefaults instantiates a new InlineResponse200 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InlineResponse200) GetData added in v0.4.0

func (o *InlineResponse200) GetData() []AclData

GetData returns the Data field value

func (*InlineResponse200) GetDataOk added in v0.4.0

func (o *InlineResponse200) GetDataOk() (*[]AclData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (InlineResponse200) MarshalJSON added in v0.4.0

func (o InlineResponse200) MarshalJSON() ([]byte, error)

func (*InlineResponse200) Redact added in v0.4.0

func (o *InlineResponse200) Redact()

Redact resets all sensitive fields to their zero value.

func (*InlineResponse200) SetData added in v0.4.0

func (o *InlineResponse200) SetData(v []AclData)

SetData sets field value

type LinkTask added in v0.18.0

type LinkTask struct {
	TaskName string          `json:"task_name,omitempty"`
	State    string          `json:"state,omitempty"`
	Errors   []LinkTaskError `json:"errors,omitempty"`
}

LinkTask struct for LinkTask

func NewLinkTask added in v0.18.0

func NewLinkTask(taskName string, state string, errors []LinkTaskError) *LinkTask

NewLinkTask instantiates a new LinkTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLinkTaskWithDefaults added in v0.18.0

func NewLinkTaskWithDefaults() *LinkTask

NewLinkTaskWithDefaults instantiates a new LinkTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LinkTask) GetErrors added in v0.18.0

func (o *LinkTask) GetErrors() []LinkTaskError

GetErrors returns the Errors field value

func (*LinkTask) GetErrorsOk added in v0.18.0

func (o *LinkTask) GetErrorsOk() (*[]LinkTaskError, bool)

GetErrorsOk returns a tuple with the Errors field value and a boolean to check if the value has been set.

func (*LinkTask) GetState added in v0.18.0

func (o *LinkTask) GetState() string

GetState returns the State field value

func (*LinkTask) GetStateOk added in v0.18.0

func (o *LinkTask) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*LinkTask) GetTaskName added in v0.18.0

func (o *LinkTask) GetTaskName() string

GetTaskName returns the TaskName field value

func (*LinkTask) GetTaskNameOk added in v0.18.0

func (o *LinkTask) GetTaskNameOk() (*string, bool)

GetTaskNameOk returns a tuple with the TaskName field value and a boolean to check if the value has been set.

func (LinkTask) MarshalJSON added in v0.18.0

func (o LinkTask) MarshalJSON() ([]byte, error)

func (*LinkTask) Redact added in v0.18.0

func (o *LinkTask) Redact()

Redact resets all sensitive fields to their zero value.

func (*LinkTask) SetErrors added in v0.18.0

func (o *LinkTask) SetErrors(v []LinkTaskError)

SetErrors sets field value

func (*LinkTask) SetState added in v0.18.0

func (o *LinkTask) SetState(v string)

SetState sets field value

func (*LinkTask) SetTaskName added in v0.18.0

func (o *LinkTask) SetTaskName(v string)

SetTaskName sets field value

type LinkTaskError added in v0.18.0

type LinkTaskError struct {
	ErrorCode    string `json:"error_code,omitempty"`
	ErrorMessage string `json:"error_message,omitempty"`
}

LinkTaskError struct for LinkTaskError

func NewLinkTaskError added in v0.18.0

func NewLinkTaskError(errorCode string, errorMessage string) *LinkTaskError

NewLinkTaskError instantiates a new LinkTaskError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLinkTaskErrorWithDefaults added in v0.18.0

func NewLinkTaskErrorWithDefaults() *LinkTaskError

NewLinkTaskErrorWithDefaults instantiates a new LinkTaskError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LinkTaskError) GetErrorCode added in v0.18.0

func (o *LinkTaskError) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*LinkTaskError) GetErrorCodeOk added in v0.18.0

func (o *LinkTaskError) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*LinkTaskError) GetErrorMessage added in v0.18.0

func (o *LinkTaskError) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value

func (*LinkTaskError) GetErrorMessageOk added in v0.18.0

func (o *LinkTaskError) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value and a boolean to check if the value has been set.

func (LinkTaskError) MarshalJSON added in v0.18.0

func (o LinkTaskError) MarshalJSON() ([]byte, error)

func (*LinkTaskError) Redact added in v0.18.0

func (o *LinkTaskError) Redact()

Redact resets all sensitive fields to their zero value.

func (*LinkTaskError) SetErrorCode added in v0.18.0

func (o *LinkTaskError) SetErrorCode(v string)

SetErrorCode sets field value

func (*LinkTaskError) SetErrorMessage added in v0.18.0

func (o *LinkTaskError) SetErrorMessage(v string)

SetErrorMessage sets field value

type ListLinkConfigsResponseData

type ListLinkConfigsResponseData struct {
	Kind      string           `json:"kind,omitempty"`
	Metadata  ResourceMetadata `json:"metadata,omitempty"`
	ClusterId string           `json:"cluster_id,omitempty"`
	Name      string           `json:"name,omitempty"`
	Value     string           `json:"value,omitempty"`
	ReadOnly  bool             `json:"read_only,omitempty"`
	Sensitive bool             `json:"sensitive,omitempty"`
	Source    string           `json:"source,omitempty"`
	Synonyms  []string         `json:"synonyms,omitempty"`
	LinkName  string           `json:"link_name,omitempty"`
}

ListLinkConfigsResponseData struct for ListLinkConfigsResponseData

func NewListLinkConfigsResponseData added in v0.4.0

func NewListLinkConfigsResponseData(kind string, metadata ResourceMetadata, clusterId string, name string, value string, readOnly bool, sensitive bool, source string, synonyms []string, linkName string) *ListLinkConfigsResponseData

NewListLinkConfigsResponseData instantiates a new ListLinkConfigsResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinkConfigsResponseDataWithDefaults added in v0.4.0

func NewListLinkConfigsResponseDataWithDefaults() *ListLinkConfigsResponseData

NewListLinkConfigsResponseDataWithDefaults instantiates a new ListLinkConfigsResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinkConfigsResponseData) GetClusterId added in v0.4.0

func (o *ListLinkConfigsResponseData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ListLinkConfigsResponseData) GetClusterIdOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetKind added in v0.4.0

func (o *ListLinkConfigsResponseData) GetKind() string

GetKind returns the Kind field value

func (*ListLinkConfigsResponseData) GetKindOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetLinkName added in v0.4.0

func (o *ListLinkConfigsResponseData) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListLinkConfigsResponseData) GetLinkNameOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ListLinkConfigsResponseData) GetMetadataOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetName added in v0.4.0

func (o *ListLinkConfigsResponseData) GetName() string

GetName returns the Name field value

func (*ListLinkConfigsResponseData) GetNameOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetReadOnly added in v0.4.0

func (o *ListLinkConfigsResponseData) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value

func (*ListLinkConfigsResponseData) GetReadOnlyOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetSensitive added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSensitive() bool

GetSensitive returns the Sensitive field value

func (*ListLinkConfigsResponseData) GetSensitiveOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSensitiveOk() (*bool, bool)

GetSensitiveOk returns a tuple with the Sensitive field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetSource added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSource() string

GetSource returns the Source field value

func (*ListLinkConfigsResponseData) GetSourceOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetSynonyms added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSynonyms() []string

GetSynonyms returns the Synonyms field value

func (*ListLinkConfigsResponseData) GetSynonymsOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetSynonymsOk() (*[]string, bool)

GetSynonymsOk returns a tuple with the Synonyms field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseData) GetValue added in v0.4.0

func (o *ListLinkConfigsResponseData) GetValue() string

GetValue returns the Value field value

func (*ListLinkConfigsResponseData) GetValueOk added in v0.4.0

func (o *ListLinkConfigsResponseData) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (ListLinkConfigsResponseData) MarshalJSON added in v0.4.0

func (o ListLinkConfigsResponseData) MarshalJSON() ([]byte, error)

func (*ListLinkConfigsResponseData) Redact added in v0.4.0

func (o *ListLinkConfigsResponseData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinkConfigsResponseData) SetClusterId added in v0.4.0

func (o *ListLinkConfigsResponseData) SetClusterId(v string)

SetClusterId sets field value

func (*ListLinkConfigsResponseData) SetKind added in v0.4.0

func (o *ListLinkConfigsResponseData) SetKind(v string)

SetKind sets field value

func (*ListLinkConfigsResponseData) SetLinkName added in v0.4.0

func (o *ListLinkConfigsResponseData) SetLinkName(v string)

SetLinkName sets field value

func (*ListLinkConfigsResponseData) SetMetadata added in v0.4.0

SetMetadata sets field value

func (*ListLinkConfigsResponseData) SetName added in v0.4.0

func (o *ListLinkConfigsResponseData) SetName(v string)

SetName sets field value

func (*ListLinkConfigsResponseData) SetReadOnly added in v0.4.0

func (o *ListLinkConfigsResponseData) SetReadOnly(v bool)

SetReadOnly sets field value

func (*ListLinkConfigsResponseData) SetSensitive added in v0.4.0

func (o *ListLinkConfigsResponseData) SetSensitive(v bool)

SetSensitive sets field value

func (*ListLinkConfigsResponseData) SetSource added in v0.4.0

func (o *ListLinkConfigsResponseData) SetSource(v string)

SetSource sets field value

func (*ListLinkConfigsResponseData) SetSynonyms added in v0.4.0

func (o *ListLinkConfigsResponseData) SetSynonyms(v []string)

SetSynonyms sets field value

func (*ListLinkConfigsResponseData) SetValue added in v0.4.0

func (o *ListLinkConfigsResponseData) SetValue(v string)

SetValue sets field value

type ListLinkConfigsResponseDataAllOf

type ListLinkConfigsResponseDataAllOf struct {
	ClusterId string   `json:"cluster_id,omitempty"`
	Name      string   `json:"name,omitempty"`
	Value     string   `json:"value,omitempty"`
	ReadOnly  bool     `json:"read_only,omitempty"`
	Sensitive bool     `json:"sensitive,omitempty"`
	Source    string   `json:"source,omitempty"`
	Synonyms  []string `json:"synonyms,omitempty"`
	LinkName  string   `json:"link_name,omitempty"`
}

ListLinkConfigsResponseDataAllOf struct for ListLinkConfigsResponseDataAllOf

func NewListLinkConfigsResponseDataAllOf added in v0.4.0

func NewListLinkConfigsResponseDataAllOf(clusterId string, name string, value string, readOnly bool, sensitive bool, source string, synonyms []string, linkName string) *ListLinkConfigsResponseDataAllOf

NewListLinkConfigsResponseDataAllOf instantiates a new ListLinkConfigsResponseDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinkConfigsResponseDataAllOfWithDefaults added in v0.4.0

func NewListLinkConfigsResponseDataAllOfWithDefaults() *ListLinkConfigsResponseDataAllOf

NewListLinkConfigsResponseDataAllOfWithDefaults instantiates a new ListLinkConfigsResponseDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinkConfigsResponseDataAllOf) GetClusterId added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ListLinkConfigsResponseDataAllOf) GetClusterIdOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetLinkName added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListLinkConfigsResponseDataAllOf) GetLinkNameOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetName added in v0.4.0

GetName returns the Name field value

func (*ListLinkConfigsResponseDataAllOf) GetNameOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetReadOnly added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value

func (*ListLinkConfigsResponseDataAllOf) GetReadOnlyOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetSensitive added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetSensitive() bool

GetSensitive returns the Sensitive field value

func (*ListLinkConfigsResponseDataAllOf) GetSensitiveOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetSensitiveOk() (*bool, bool)

GetSensitiveOk returns a tuple with the Sensitive field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetSource added in v0.4.0

GetSource returns the Source field value

func (*ListLinkConfigsResponseDataAllOf) GetSourceOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetSynonyms added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetSynonyms() []string

GetSynonyms returns the Synonyms field value

func (*ListLinkConfigsResponseDataAllOf) GetSynonymsOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetSynonymsOk() (*[]string, bool)

GetSynonymsOk returns a tuple with the Synonyms field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataAllOf) GetValue added in v0.4.0

GetValue returns the Value field value

func (*ListLinkConfigsResponseDataAllOf) GetValueOk added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (ListLinkConfigsResponseDataAllOf) MarshalJSON added in v0.4.0

func (o ListLinkConfigsResponseDataAllOf) MarshalJSON() ([]byte, error)

func (*ListLinkConfigsResponseDataAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ListLinkConfigsResponseDataAllOf) SetClusterId added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ListLinkConfigsResponseDataAllOf) SetLinkName added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetLinkName(v string)

SetLinkName sets field value

func (*ListLinkConfigsResponseDataAllOf) SetName added in v0.4.0

SetName sets field value

func (*ListLinkConfigsResponseDataAllOf) SetReadOnly added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetReadOnly(v bool)

SetReadOnly sets field value

func (*ListLinkConfigsResponseDataAllOf) SetSensitive added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetSensitive(v bool)

SetSensitive sets field value

func (*ListLinkConfigsResponseDataAllOf) SetSource added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetSource(v string)

SetSource sets field value

func (*ListLinkConfigsResponseDataAllOf) SetSynonyms added in v0.4.0

func (o *ListLinkConfigsResponseDataAllOf) SetSynonyms(v []string)

SetSynonyms sets field value

func (*ListLinkConfigsResponseDataAllOf) SetValue added in v0.4.0

SetValue sets field value

type ListLinkConfigsResponseDataList

type ListLinkConfigsResponseDataList struct {
	Kind     string                        `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata    `json:"metadata,omitempty"`
	Data     []ListLinkConfigsResponseData `json:"data,omitempty"`
}

ListLinkConfigsResponseDataList struct for ListLinkConfigsResponseDataList

func NewListLinkConfigsResponseDataList added in v0.4.0

func NewListLinkConfigsResponseDataList(kind string, metadata ResourceCollectionMetadata, data []ListLinkConfigsResponseData) *ListLinkConfigsResponseDataList

NewListLinkConfigsResponseDataList instantiates a new ListLinkConfigsResponseDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinkConfigsResponseDataListWithDefaults added in v0.4.0

func NewListLinkConfigsResponseDataListWithDefaults() *ListLinkConfigsResponseDataList

NewListLinkConfigsResponseDataListWithDefaults instantiates a new ListLinkConfigsResponseDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinkConfigsResponseDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ListLinkConfigsResponseDataList) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataList) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*ListLinkConfigsResponseDataList) GetKindOk added in v0.4.0

func (o *ListLinkConfigsResponseDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListLinkConfigsResponseDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ListLinkConfigsResponseDataList) GetMetadataOk added in v0.4.0

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ListLinkConfigsResponseDataList) MarshalJSON added in v0.4.0

func (o ListLinkConfigsResponseDataList) MarshalJSON() ([]byte, error)

func (*ListLinkConfigsResponseDataList) Redact added in v0.4.0

func (o *ListLinkConfigsResponseDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinkConfigsResponseDataList) SetData added in v0.4.0

SetData sets field value

func (*ListLinkConfigsResponseDataList) SetKind added in v0.4.0

SetKind sets field value

func (*ListLinkConfigsResponseDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ListLinkConfigsResponseDataListAllOf

type ListLinkConfigsResponseDataListAllOf struct {
	Data []ListLinkConfigsResponseData `json:"data,omitempty"`
}

ListLinkConfigsResponseDataListAllOf struct for ListLinkConfigsResponseDataListAllOf

func NewListLinkConfigsResponseDataListAllOf added in v0.4.0

func NewListLinkConfigsResponseDataListAllOf(data []ListLinkConfigsResponseData) *ListLinkConfigsResponseDataListAllOf

NewListLinkConfigsResponseDataListAllOf instantiates a new ListLinkConfigsResponseDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinkConfigsResponseDataListAllOfWithDefaults added in v0.4.0

func NewListLinkConfigsResponseDataListAllOfWithDefaults() *ListLinkConfigsResponseDataListAllOf

NewListLinkConfigsResponseDataListAllOfWithDefaults instantiates a new ListLinkConfigsResponseDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinkConfigsResponseDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ListLinkConfigsResponseDataListAllOf) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListLinkConfigsResponseDataListAllOf) MarshalJSON added in v0.4.0

func (o ListLinkConfigsResponseDataListAllOf) MarshalJSON() ([]byte, error)

func (*ListLinkConfigsResponseDataListAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ListLinkConfigsResponseDataListAllOf) SetData added in v0.4.0

SetData sets field value

type ListLinksResponseData

type ListLinksResponseData struct {
	Kind                 string           `json:"kind,omitempty"`
	Metadata             ResourceMetadata `json:"metadata,omitempty"`
	SourceClusterId      NullableString   `json:"source_cluster_id,omitempty"`
	DestinationClusterId NullableString   `json:"destination_cluster_id,omitempty"`
	RemoteClusterId      NullableString   `json:"remote_cluster_id,omitempty"`
	LinkName             string           `json:"link_name,omitempty"`
	// Deprecated
	LinkId           *string        `json:"link_id,omitempty"`
	ClusterLinkId    string         `json:"cluster_link_id,omitempty"`
	TopicNames       []string       `json:"topic_names,omitempty"`
	LinkError        *string        `json:"link_error,omitempty"`
	LinkErrorMessage NullableString `json:"link_error_message,omitempty"`
	LinkState        *string        `json:"link_state,omitempty"`
	Tasks            []LinkTask     `json:"tasks,omitempty"`
}

ListLinksResponseData struct for ListLinksResponseData

func NewListLinksResponseData added in v0.4.0

func NewListLinksResponseData(kind string, metadata ResourceMetadata, linkName string, clusterLinkId string, topicNames []string) *ListLinksResponseData

NewListLinksResponseData instantiates a new ListLinksResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinksResponseDataWithDefaults added in v0.4.0

func NewListLinksResponseDataWithDefaults() *ListLinksResponseData

NewListLinksResponseDataWithDefaults instantiates a new ListLinksResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinksResponseData) GetClusterLinkId added in v0.14.0

func (o *ListLinksResponseData) GetClusterLinkId() string

GetClusterLinkId returns the ClusterLinkId field value

func (*ListLinksResponseData) GetClusterLinkIdOk added in v0.14.0

func (o *ListLinksResponseData) GetClusterLinkIdOk() (*string, bool)

GetClusterLinkIdOk returns a tuple with the ClusterLinkId field value and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseData) GetDestinationClusterId() string

GetDestinationClusterId returns the DestinationClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseData) GetDestinationClusterIdOk added in v0.7.0

func (o *ListLinksResponseData) GetDestinationClusterIdOk() (*string, bool)

GetDestinationClusterIdOk returns a tuple with the DestinationClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseData) GetKind added in v0.4.0

func (o *ListLinksResponseData) GetKind() string

GetKind returns the Kind field value

func (*ListLinksResponseData) GetKindOk added in v0.4.0

func (o *ListLinksResponseData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetLinkError added in v0.8.0

func (o *ListLinksResponseData) GetLinkError() string

GetLinkError returns the LinkError field value if set, zero value otherwise.

func (*ListLinksResponseData) GetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseData) GetLinkErrorMessage() string

GetLinkErrorMessage returns the LinkErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseData) GetLinkErrorMessageOk added in v0.8.0

func (o *ListLinksResponseData) GetLinkErrorMessageOk() (*string, bool)

GetLinkErrorMessageOk returns a tuple with the LinkErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseData) GetLinkErrorOk added in v0.8.0

func (o *ListLinksResponseData) GetLinkErrorOk() (*string, bool)

GetLinkErrorOk returns a tuple with the LinkError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetLinkId added in v0.4.0

func (o *ListLinksResponseData) GetLinkId() string

GetLinkId returns the LinkId field value if set, zero value otherwise. Deprecated

func (*ListLinksResponseData) GetLinkIdOk added in v0.4.0

func (o *ListLinksResponseData) GetLinkIdOk() (*string, bool)

GetLinkIdOk returns a tuple with the LinkId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ListLinksResponseData) GetLinkName added in v0.4.0

func (o *ListLinksResponseData) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListLinksResponseData) GetLinkNameOk added in v0.4.0

func (o *ListLinksResponseData) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetLinkState added in v0.8.0

func (o *ListLinksResponseData) GetLinkState() string

GetLinkState returns the LinkState field value if set, zero value otherwise.

func (*ListLinksResponseData) GetLinkStateOk added in v0.8.0

func (o *ListLinksResponseData) GetLinkStateOk() (*string, bool)

GetLinkStateOk returns a tuple with the LinkState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetMetadata added in v0.4.0

func (o *ListLinksResponseData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ListLinksResponseData) GetMetadataOk added in v0.4.0

func (o *ListLinksResponseData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ListLinksResponseData) GetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseData) GetRemoteClusterId() string

GetRemoteClusterId returns the RemoteClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseData) GetRemoteClusterIdOk added in v0.14.0

func (o *ListLinksResponseData) GetRemoteClusterIdOk() (*string, bool)

GetRemoteClusterIdOk returns a tuple with the RemoteClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseData) GetSourceClusterId added in v0.4.0

func (o *ListLinksResponseData) GetSourceClusterId() string

GetSourceClusterId returns the SourceClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseData) GetSourceClusterIdOk added in v0.4.0

func (o *ListLinksResponseData) GetSourceClusterIdOk() (*string, bool)

GetSourceClusterIdOk returns a tuple with the SourceClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseData) GetTasks added in v0.18.0

func (o *ListLinksResponseData) GetTasks() []LinkTask

GetTasks returns the Tasks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseData) GetTasksOk added in v0.18.0

func (o *ListLinksResponseData) GetTasksOk() (*[]LinkTask, bool)

GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseData) GetTopicNames added in v0.14.0

func (o *ListLinksResponseData) GetTopicNames() []string

GetTopicNames returns the TopicNames field value

func (*ListLinksResponseData) GetTopicNamesOk added in v0.14.0

func (o *ListLinksResponseData) GetTopicNamesOk() (*[]string, bool)

GetTopicNamesOk returns a tuple with the TopicNames field value and a boolean to check if the value has been set.

func (*ListLinksResponseData) HasDestinationClusterId added in v0.7.0

func (o *ListLinksResponseData) HasDestinationClusterId() bool

HasDestinationClusterId returns a boolean if a field has been set.

func (*ListLinksResponseData) HasLinkError added in v0.8.0

func (o *ListLinksResponseData) HasLinkError() bool

HasLinkError returns a boolean if a field has been set.

func (*ListLinksResponseData) HasLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseData) HasLinkErrorMessage() bool

HasLinkErrorMessage returns a boolean if a field has been set.

func (*ListLinksResponseData) HasLinkId added in v0.14.0

func (o *ListLinksResponseData) HasLinkId() bool

HasLinkId returns a boolean if a field has been set.

func (*ListLinksResponseData) HasLinkState added in v0.8.0

func (o *ListLinksResponseData) HasLinkState() bool

HasLinkState returns a boolean if a field has been set.

func (*ListLinksResponseData) HasRemoteClusterId added in v0.14.0

func (o *ListLinksResponseData) HasRemoteClusterId() bool

HasRemoteClusterId returns a boolean if a field has been set.

func (*ListLinksResponseData) HasSourceClusterId added in v0.4.0

func (o *ListLinksResponseData) HasSourceClusterId() bool

HasSourceClusterId returns a boolean if a field has been set.

func (*ListLinksResponseData) HasTasks added in v0.18.0

func (o *ListLinksResponseData) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (ListLinksResponseData) MarshalJSON added in v0.4.0

func (o ListLinksResponseData) MarshalJSON() ([]byte, error)

func (*ListLinksResponseData) Redact added in v0.4.0

func (o *ListLinksResponseData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinksResponseData) SetClusterLinkId added in v0.14.0

func (o *ListLinksResponseData) SetClusterLinkId(v string)

SetClusterLinkId sets field value

func (*ListLinksResponseData) SetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseData) SetDestinationClusterId(v string)

SetDestinationClusterId gets a reference to the given NullableString and assigns it to the DestinationClusterId field.

func (*ListLinksResponseData) SetDestinationClusterIdNil added in v0.7.0

func (o *ListLinksResponseData) SetDestinationClusterIdNil()

SetDestinationClusterIdNil sets the value for DestinationClusterId to be an explicit nil

func (*ListLinksResponseData) SetKind added in v0.4.0

func (o *ListLinksResponseData) SetKind(v string)

SetKind sets field value

func (*ListLinksResponseData) SetLinkError added in v0.8.0

func (o *ListLinksResponseData) SetLinkError(v string)

SetLinkError gets a reference to the given string and assigns it to the LinkError field.

func (*ListLinksResponseData) SetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseData) SetLinkErrorMessage(v string)

SetLinkErrorMessage gets a reference to the given NullableString and assigns it to the LinkErrorMessage field.

func (*ListLinksResponseData) SetLinkErrorMessageNil added in v0.8.0

func (o *ListLinksResponseData) SetLinkErrorMessageNil()

SetLinkErrorMessageNil sets the value for LinkErrorMessage to be an explicit nil

func (*ListLinksResponseData) SetLinkId added in v0.4.0

func (o *ListLinksResponseData) SetLinkId(v string)

SetLinkId gets a reference to the given string and assigns it to the LinkId field. Deprecated

func (*ListLinksResponseData) SetLinkName added in v0.4.0

func (o *ListLinksResponseData) SetLinkName(v string)

SetLinkName sets field value

func (*ListLinksResponseData) SetLinkState added in v0.8.0

func (o *ListLinksResponseData) SetLinkState(v string)

SetLinkState gets a reference to the given string and assigns it to the LinkState field.

func (*ListLinksResponseData) SetMetadata added in v0.4.0

func (o *ListLinksResponseData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ListLinksResponseData) SetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseData) SetRemoteClusterId(v string)

SetRemoteClusterId gets a reference to the given NullableString and assigns it to the RemoteClusterId field.

func (*ListLinksResponseData) SetRemoteClusterIdNil added in v0.14.0

func (o *ListLinksResponseData) SetRemoteClusterIdNil()

SetRemoteClusterIdNil sets the value for RemoteClusterId to be an explicit nil

func (*ListLinksResponseData) SetSourceClusterId added in v0.4.0

func (o *ListLinksResponseData) SetSourceClusterId(v string)

SetSourceClusterId gets a reference to the given NullableString and assigns it to the SourceClusterId field.

func (*ListLinksResponseData) SetSourceClusterIdNil added in v0.7.0

func (o *ListLinksResponseData) SetSourceClusterIdNil()

SetSourceClusterIdNil sets the value for SourceClusterId to be an explicit nil

func (*ListLinksResponseData) SetTasks added in v0.18.0

func (o *ListLinksResponseData) SetTasks(v []LinkTask)

SetTasks gets a reference to the given []LinkTask and assigns it to the Tasks field.

func (*ListLinksResponseData) SetTopicNames added in v0.14.0

func (o *ListLinksResponseData) SetTopicNames(v []string)

SetTopicNames sets field value

func (*ListLinksResponseData) UnsetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseData) UnsetDestinationClusterId()

UnsetDestinationClusterId ensures that no value is present for DestinationClusterId, not even an explicit nil

func (*ListLinksResponseData) UnsetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseData) UnsetLinkErrorMessage()

UnsetLinkErrorMessage ensures that no value is present for LinkErrorMessage, not even an explicit nil

func (*ListLinksResponseData) UnsetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseData) UnsetRemoteClusterId()

UnsetRemoteClusterId ensures that no value is present for RemoteClusterId, not even an explicit nil

func (*ListLinksResponseData) UnsetSourceClusterId added in v0.7.0

func (o *ListLinksResponseData) UnsetSourceClusterId()

UnsetSourceClusterId ensures that no value is present for SourceClusterId, not even an explicit nil

type ListLinksResponseDataAllOf

type ListLinksResponseDataAllOf struct {
	SourceClusterId      NullableString `json:"source_cluster_id,omitempty"`
	DestinationClusterId NullableString `json:"destination_cluster_id,omitempty"`
	RemoteClusterId      NullableString `json:"remote_cluster_id,omitempty"`
	LinkName             string         `json:"link_name,omitempty"`
	// Deprecated
	LinkId           *string        `json:"link_id,omitempty"`
	ClusterLinkId    string         `json:"cluster_link_id,omitempty"`
	TopicNames       []string       `json:"topic_names,omitempty"`
	LinkError        *string        `json:"link_error,omitempty"`
	LinkErrorMessage NullableString `json:"link_error_message,omitempty"`
	LinkState        *string        `json:"link_state,omitempty"`
	Tasks            []LinkTask     `json:"tasks,omitempty"`
}

ListLinksResponseDataAllOf struct for ListLinksResponseDataAllOf

func NewListLinksResponseDataAllOf added in v0.4.0

func NewListLinksResponseDataAllOf(linkName string, clusterLinkId string, topicNames []string) *ListLinksResponseDataAllOf

NewListLinksResponseDataAllOf instantiates a new ListLinksResponseDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinksResponseDataAllOfWithDefaults added in v0.4.0

func NewListLinksResponseDataAllOfWithDefaults() *ListLinksResponseDataAllOf

NewListLinksResponseDataAllOfWithDefaults instantiates a new ListLinksResponseDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinksResponseDataAllOf) GetClusterLinkId added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetClusterLinkId() string

GetClusterLinkId returns the ClusterLinkId field value

func (*ListLinksResponseDataAllOf) GetClusterLinkIdOk added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetClusterLinkIdOk() (*string, bool)

GetClusterLinkIdOk returns a tuple with the ClusterLinkId field value and a boolean to check if the value has been set.

func (*ListLinksResponseDataAllOf) GetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseDataAllOf) GetDestinationClusterId() string

GetDestinationClusterId returns the DestinationClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseDataAllOf) GetDestinationClusterIdOk added in v0.7.0

func (o *ListLinksResponseDataAllOf) GetDestinationClusterIdOk() (*string, bool)

GetDestinationClusterIdOk returns a tuple with the DestinationClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseDataAllOf) GetLinkError added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkError() string

GetLinkError returns the LinkError field value if set, zero value otherwise.

func (*ListLinksResponseDataAllOf) GetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkErrorMessage() string

GetLinkErrorMessage returns the LinkErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseDataAllOf) GetLinkErrorMessageOk added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkErrorMessageOk() (*string, bool)

GetLinkErrorMessageOk returns a tuple with the LinkErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseDataAllOf) GetLinkErrorOk added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkErrorOk() (*string, bool)

GetLinkErrorOk returns a tuple with the LinkError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListLinksResponseDataAllOf) GetLinkId added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetLinkId() string

GetLinkId returns the LinkId field value if set, zero value otherwise. Deprecated

func (*ListLinksResponseDataAllOf) GetLinkIdOk added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetLinkIdOk() (*string, bool)

GetLinkIdOk returns a tuple with the LinkId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ListLinksResponseDataAllOf) GetLinkName added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListLinksResponseDataAllOf) GetLinkNameOk added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListLinksResponseDataAllOf) GetLinkState added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkState() string

GetLinkState returns the LinkState field value if set, zero value otherwise.

func (*ListLinksResponseDataAllOf) GetLinkStateOk added in v0.8.0

func (o *ListLinksResponseDataAllOf) GetLinkStateOk() (*string, bool)

GetLinkStateOk returns a tuple with the LinkState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListLinksResponseDataAllOf) GetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetRemoteClusterId() string

GetRemoteClusterId returns the RemoteClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseDataAllOf) GetRemoteClusterIdOk added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetRemoteClusterIdOk() (*string, bool)

GetRemoteClusterIdOk returns a tuple with the RemoteClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseDataAllOf) GetSourceClusterId added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetSourceClusterId() string

GetSourceClusterId returns the SourceClusterId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseDataAllOf) GetSourceClusterIdOk added in v0.4.0

func (o *ListLinksResponseDataAllOf) GetSourceClusterIdOk() (*string, bool)

GetSourceClusterIdOk returns a tuple with the SourceClusterId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseDataAllOf) GetTasks added in v0.18.0

func (o *ListLinksResponseDataAllOf) GetTasks() []LinkTask

GetTasks returns the Tasks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ListLinksResponseDataAllOf) GetTasksOk added in v0.18.0

func (o *ListLinksResponseDataAllOf) GetTasksOk() (*[]LinkTask, bool)

GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ListLinksResponseDataAllOf) GetTopicNames added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetTopicNames() []string

GetTopicNames returns the TopicNames field value

func (*ListLinksResponseDataAllOf) GetTopicNamesOk added in v0.14.0

func (o *ListLinksResponseDataAllOf) GetTopicNamesOk() (*[]string, bool)

GetTopicNamesOk returns a tuple with the TopicNames field value and a boolean to check if the value has been set.

func (*ListLinksResponseDataAllOf) HasDestinationClusterId added in v0.7.0

func (o *ListLinksResponseDataAllOf) HasDestinationClusterId() bool

HasDestinationClusterId returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasLinkError added in v0.8.0

func (o *ListLinksResponseDataAllOf) HasLinkError() bool

HasLinkError returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseDataAllOf) HasLinkErrorMessage() bool

HasLinkErrorMessage returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasLinkId added in v0.14.0

func (o *ListLinksResponseDataAllOf) HasLinkId() bool

HasLinkId returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasLinkState added in v0.8.0

func (o *ListLinksResponseDataAllOf) HasLinkState() bool

HasLinkState returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasRemoteClusterId added in v0.14.0

func (o *ListLinksResponseDataAllOf) HasRemoteClusterId() bool

HasRemoteClusterId returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasSourceClusterId added in v0.4.0

func (o *ListLinksResponseDataAllOf) HasSourceClusterId() bool

HasSourceClusterId returns a boolean if a field has been set.

func (*ListLinksResponseDataAllOf) HasTasks added in v0.18.0

func (o *ListLinksResponseDataAllOf) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (ListLinksResponseDataAllOf) MarshalJSON added in v0.4.0

func (o ListLinksResponseDataAllOf) MarshalJSON() ([]byte, error)

func (*ListLinksResponseDataAllOf) Redact added in v0.4.0

func (o *ListLinksResponseDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinksResponseDataAllOf) SetClusterLinkId added in v0.14.0

func (o *ListLinksResponseDataAllOf) SetClusterLinkId(v string)

SetClusterLinkId sets field value

func (*ListLinksResponseDataAllOf) SetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseDataAllOf) SetDestinationClusterId(v string)

SetDestinationClusterId gets a reference to the given NullableString and assigns it to the DestinationClusterId field.

func (*ListLinksResponseDataAllOf) SetDestinationClusterIdNil added in v0.7.0

func (o *ListLinksResponseDataAllOf) SetDestinationClusterIdNil()

SetDestinationClusterIdNil sets the value for DestinationClusterId to be an explicit nil

func (*ListLinksResponseDataAllOf) SetLinkError added in v0.8.0

func (o *ListLinksResponseDataAllOf) SetLinkError(v string)

SetLinkError gets a reference to the given string and assigns it to the LinkError field.

func (*ListLinksResponseDataAllOf) SetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseDataAllOf) SetLinkErrorMessage(v string)

SetLinkErrorMessage gets a reference to the given NullableString and assigns it to the LinkErrorMessage field.

func (*ListLinksResponseDataAllOf) SetLinkErrorMessageNil added in v0.8.0

func (o *ListLinksResponseDataAllOf) SetLinkErrorMessageNil()

SetLinkErrorMessageNil sets the value for LinkErrorMessage to be an explicit nil

func (*ListLinksResponseDataAllOf) SetLinkId added in v0.4.0

func (o *ListLinksResponseDataAllOf) SetLinkId(v string)

SetLinkId gets a reference to the given string and assigns it to the LinkId field. Deprecated

func (*ListLinksResponseDataAllOf) SetLinkName added in v0.4.0

func (o *ListLinksResponseDataAllOf) SetLinkName(v string)

SetLinkName sets field value

func (*ListLinksResponseDataAllOf) SetLinkState added in v0.8.0

func (o *ListLinksResponseDataAllOf) SetLinkState(v string)

SetLinkState gets a reference to the given string and assigns it to the LinkState field.

func (*ListLinksResponseDataAllOf) SetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseDataAllOf) SetRemoteClusterId(v string)

SetRemoteClusterId gets a reference to the given NullableString and assigns it to the RemoteClusterId field.

func (*ListLinksResponseDataAllOf) SetRemoteClusterIdNil added in v0.14.0

func (o *ListLinksResponseDataAllOf) SetRemoteClusterIdNil()

SetRemoteClusterIdNil sets the value for RemoteClusterId to be an explicit nil

func (*ListLinksResponseDataAllOf) SetSourceClusterId added in v0.4.0

func (o *ListLinksResponseDataAllOf) SetSourceClusterId(v string)

SetSourceClusterId gets a reference to the given NullableString and assigns it to the SourceClusterId field.

func (*ListLinksResponseDataAllOf) SetSourceClusterIdNil added in v0.7.0

func (o *ListLinksResponseDataAllOf) SetSourceClusterIdNil()

SetSourceClusterIdNil sets the value for SourceClusterId to be an explicit nil

func (*ListLinksResponseDataAllOf) SetTasks added in v0.18.0

func (o *ListLinksResponseDataAllOf) SetTasks(v []LinkTask)

SetTasks gets a reference to the given []LinkTask and assigns it to the Tasks field.

func (*ListLinksResponseDataAllOf) SetTopicNames added in v0.14.0

func (o *ListLinksResponseDataAllOf) SetTopicNames(v []string)

SetTopicNames sets field value

func (*ListLinksResponseDataAllOf) UnsetDestinationClusterId added in v0.7.0

func (o *ListLinksResponseDataAllOf) UnsetDestinationClusterId()

UnsetDestinationClusterId ensures that no value is present for DestinationClusterId, not even an explicit nil

func (*ListLinksResponseDataAllOf) UnsetLinkErrorMessage added in v0.8.0

func (o *ListLinksResponseDataAllOf) UnsetLinkErrorMessage()

UnsetLinkErrorMessage ensures that no value is present for LinkErrorMessage, not even an explicit nil

func (*ListLinksResponseDataAllOf) UnsetRemoteClusterId added in v0.14.0

func (o *ListLinksResponseDataAllOf) UnsetRemoteClusterId()

UnsetRemoteClusterId ensures that no value is present for RemoteClusterId, not even an explicit nil

func (*ListLinksResponseDataAllOf) UnsetSourceClusterId added in v0.7.0

func (o *ListLinksResponseDataAllOf) UnsetSourceClusterId()

UnsetSourceClusterId ensures that no value is present for SourceClusterId, not even an explicit nil

type ListLinksResponseDataList

type ListLinksResponseDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ListLinksResponseData    `json:"data,omitempty"`
}

ListLinksResponseDataList struct for ListLinksResponseDataList

func NewListLinksResponseDataList added in v0.4.0

func NewListLinksResponseDataList(kind string, metadata ResourceCollectionMetadata, data []ListLinksResponseData) *ListLinksResponseDataList

NewListLinksResponseDataList instantiates a new ListLinksResponseDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinksResponseDataListWithDefaults added in v0.4.0

func NewListLinksResponseDataListWithDefaults() *ListLinksResponseDataList

NewListLinksResponseDataListWithDefaults instantiates a new ListLinksResponseDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinksResponseDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ListLinksResponseDataList) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ListLinksResponseDataList) GetKind added in v0.4.0

func (o *ListLinksResponseDataList) GetKind() string

GetKind returns the Kind field value

func (*ListLinksResponseDataList) GetKindOk added in v0.4.0

func (o *ListLinksResponseDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListLinksResponseDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ListLinksResponseDataList) GetMetadataOk added in v0.4.0

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ListLinksResponseDataList) MarshalJSON added in v0.4.0

func (o ListLinksResponseDataList) MarshalJSON() ([]byte, error)

func (*ListLinksResponseDataList) Redact added in v0.4.0

func (o *ListLinksResponseDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinksResponseDataList) SetData added in v0.4.0

SetData sets field value

func (*ListLinksResponseDataList) SetKind added in v0.4.0

func (o *ListLinksResponseDataList) SetKind(v string)

SetKind sets field value

func (*ListLinksResponseDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ListLinksResponseDataListAllOf

type ListLinksResponseDataListAllOf struct {
	Data []ListLinksResponseData `json:"data,omitempty"`
}

ListLinksResponseDataListAllOf struct for ListLinksResponseDataListAllOf

func NewListLinksResponseDataListAllOf added in v0.4.0

func NewListLinksResponseDataListAllOf(data []ListLinksResponseData) *ListLinksResponseDataListAllOf

NewListLinksResponseDataListAllOf instantiates a new ListLinksResponseDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListLinksResponseDataListAllOfWithDefaults added in v0.4.0

func NewListLinksResponseDataListAllOfWithDefaults() *ListLinksResponseDataListAllOf

NewListLinksResponseDataListAllOfWithDefaults instantiates a new ListLinksResponseDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListLinksResponseDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ListLinksResponseDataListAllOf) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListLinksResponseDataListAllOf) MarshalJSON added in v0.4.0

func (o ListLinksResponseDataListAllOf) MarshalJSON() ([]byte, error)

func (*ListLinksResponseDataListAllOf) Redact added in v0.4.0

func (o *ListLinksResponseDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListLinksResponseDataListAllOf) SetData added in v0.4.0

SetData sets field value

type ListMirrorTopicsResponseData

type ListMirrorTopicsResponseData struct {
	Kind                        string            `json:"kind,omitempty"`
	Metadata                    ResourceMetadata  `json:"metadata,omitempty"`
	LinkName                    string            `json:"link_name,omitempty"`
	MirrorTopicName             string            `json:"mirror_topic_name,omitempty"`
	SourceTopicName             string            `json:"source_topic_name,omitempty"`
	NumPartitions               int32             `json:"num_partitions,omitempty"`
	MirrorLags                  MirrorLags        `json:"mirror_lags,omitempty"`
	MirrorStatus                MirrorTopicStatus `json:"mirror_status,omitempty"`
	StateTimeMs                 int64             `json:"state_time_ms,omitempty"`
	MirrorStateTransitionErrors *[]LinkTaskError  `json:"mirror_state_transition_errors,omitempty"`
}

ListMirrorTopicsResponseData struct for ListMirrorTopicsResponseData

func NewListMirrorTopicsResponseData added in v0.4.0

func NewListMirrorTopicsResponseData(kind string, metadata ResourceMetadata, linkName string, mirrorTopicName string, sourceTopicName string, numPartitions int32, mirrorLags MirrorLags, mirrorStatus MirrorTopicStatus, stateTimeMs int64) *ListMirrorTopicsResponseData

NewListMirrorTopicsResponseData instantiates a new ListMirrorTopicsResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMirrorTopicsResponseDataWithDefaults added in v0.4.0

func NewListMirrorTopicsResponseDataWithDefaults() *ListMirrorTopicsResponseData

NewListMirrorTopicsResponseDataWithDefaults instantiates a new ListMirrorTopicsResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMirrorTopicsResponseData) GetKind added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetKind() string

GetKind returns the Kind field value

func (*ListMirrorTopicsResponseData) GetKindOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetLinkName added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListMirrorTopicsResponseData) GetLinkNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ListMirrorTopicsResponseData) GetMetadataOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetMirrorLags added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorLags() MirrorLags

GetMirrorLags returns the MirrorLags field value

func (*ListMirrorTopicsResponseData) GetMirrorLagsOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorLagsOk() (*MirrorLags, bool)

GetMirrorLagsOk returns a tuple with the MirrorLags field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseData) GetMirrorStateTransitionErrors() []LinkTaskError

GetMirrorStateTransitionErrors returns the MirrorStateTransitionErrors field value if set, zero value otherwise.

func (*ListMirrorTopicsResponseData) GetMirrorStateTransitionErrorsOk added in v0.18.0

func (o *ListMirrorTopicsResponseData) GetMirrorStateTransitionErrorsOk() (*[]LinkTaskError, bool)

GetMirrorStateTransitionErrorsOk returns a tuple with the MirrorStateTransitionErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetMirrorStatus added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorStatus() MirrorTopicStatus

GetMirrorStatus returns the MirrorStatus field value

func (*ListMirrorTopicsResponseData) GetMirrorStatusOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorStatusOk() (*MirrorTopicStatus, bool)

GetMirrorStatusOk returns a tuple with the MirrorStatus field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetMirrorTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorTopicName() string

GetMirrorTopicName returns the MirrorTopicName field value

func (*ListMirrorTopicsResponseData) GetMirrorTopicNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetMirrorTopicNameOk() (*string, bool)

GetMirrorTopicNameOk returns a tuple with the MirrorTopicName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetNumPartitions added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetNumPartitions() int32

GetNumPartitions returns the NumPartitions field value

func (*ListMirrorTopicsResponseData) GetNumPartitionsOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetNumPartitionsOk() (*int32, bool)

GetNumPartitionsOk returns a tuple with the NumPartitions field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetSourceTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetSourceTopicName() string

GetSourceTopicName returns the SourceTopicName field value

func (*ListMirrorTopicsResponseData) GetSourceTopicNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetSourceTopicNameOk() (*string, bool)

GetSourceTopicNameOk returns a tuple with the SourceTopicName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) GetStateTimeMs added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetStateTimeMs() int64

GetStateTimeMs returns the StateTimeMs field value

func (*ListMirrorTopicsResponseData) GetStateTimeMsOk added in v0.4.0

func (o *ListMirrorTopicsResponseData) GetStateTimeMsOk() (*int64, bool)

GetStateTimeMsOk returns a tuple with the StateTimeMs field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseData) HasMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseData) HasMirrorStateTransitionErrors() bool

HasMirrorStateTransitionErrors returns a boolean if a field has been set.

func (ListMirrorTopicsResponseData) MarshalJSON added in v0.4.0

func (o ListMirrorTopicsResponseData) MarshalJSON() ([]byte, error)

func (*ListMirrorTopicsResponseData) Redact added in v0.4.0

func (o *ListMirrorTopicsResponseData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ListMirrorTopicsResponseData) SetKind added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetKind(v string)

SetKind sets field value

func (*ListMirrorTopicsResponseData) SetLinkName added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetLinkName(v string)

SetLinkName sets field value

func (*ListMirrorTopicsResponseData) SetMetadata added in v0.4.0

SetMetadata sets field value

func (*ListMirrorTopicsResponseData) SetMirrorLags added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetMirrorLags(v MirrorLags)

SetMirrorLags sets field value

func (*ListMirrorTopicsResponseData) SetMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseData) SetMirrorStateTransitionErrors(v []LinkTaskError)

SetMirrorStateTransitionErrors gets a reference to the given []LinkTaskError and assigns it to the MirrorStateTransitionErrors field.

func (*ListMirrorTopicsResponseData) SetMirrorStatus added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetMirrorStatus(v MirrorTopicStatus)

SetMirrorStatus sets field value

func (*ListMirrorTopicsResponseData) SetMirrorTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetMirrorTopicName(v string)

SetMirrorTopicName sets field value

func (*ListMirrorTopicsResponseData) SetNumPartitions added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetNumPartitions(v int32)

SetNumPartitions sets field value

func (*ListMirrorTopicsResponseData) SetSourceTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetSourceTopicName(v string)

SetSourceTopicName sets field value

func (*ListMirrorTopicsResponseData) SetStateTimeMs added in v0.4.0

func (o *ListMirrorTopicsResponseData) SetStateTimeMs(v int64)

SetStateTimeMs sets field value

type ListMirrorTopicsResponseDataAllOf

type ListMirrorTopicsResponseDataAllOf struct {
	LinkName                    string            `json:"link_name,omitempty"`
	MirrorTopicName             string            `json:"mirror_topic_name,omitempty"`
	SourceTopicName             string            `json:"source_topic_name,omitempty"`
	NumPartitions               int32             `json:"num_partitions,omitempty"`
	MirrorLags                  MirrorLags        `json:"mirror_lags,omitempty"`
	MirrorStatus                MirrorTopicStatus `json:"mirror_status,omitempty"`
	StateTimeMs                 int64             `json:"state_time_ms,omitempty"`
	MirrorStateTransitionErrors *[]LinkTaskError  `json:"mirror_state_transition_errors,omitempty"`
}

ListMirrorTopicsResponseDataAllOf struct for ListMirrorTopicsResponseDataAllOf

func NewListMirrorTopicsResponseDataAllOf added in v0.4.0

func NewListMirrorTopicsResponseDataAllOf(linkName string, mirrorTopicName string, sourceTopicName string, numPartitions int32, mirrorLags MirrorLags, mirrorStatus MirrorTopicStatus, stateTimeMs int64) *ListMirrorTopicsResponseDataAllOf

NewListMirrorTopicsResponseDataAllOf instantiates a new ListMirrorTopicsResponseDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMirrorTopicsResponseDataAllOfWithDefaults added in v0.4.0

func NewListMirrorTopicsResponseDataAllOfWithDefaults() *ListMirrorTopicsResponseDataAllOf

NewListMirrorTopicsResponseDataAllOfWithDefaults instantiates a new ListMirrorTopicsResponseDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMirrorTopicsResponseDataAllOf) GetLinkName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetLinkName() string

GetLinkName returns the LinkName field value

func (*ListMirrorTopicsResponseDataAllOf) GetLinkNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorLags added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorLags() MirrorLags

GetMirrorLags returns the MirrorLags field value

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorLagsOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorLagsOk() (*MirrorLags, bool)

GetMirrorLagsOk returns a tuple with the MirrorLags field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorStateTransitionErrors() []LinkTaskError

GetMirrorStateTransitionErrors returns the MirrorStateTransitionErrors field value if set, zero value otherwise.

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorStateTransitionErrorsOk added in v0.18.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorStateTransitionErrorsOk() (*[]LinkTaskError, bool)

GetMirrorStateTransitionErrorsOk returns a tuple with the MirrorStateTransitionErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorStatus added in v0.4.0

GetMirrorStatus returns the MirrorStatus field value

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorStatusOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorStatusOk() (*MirrorTopicStatus, bool)

GetMirrorStatusOk returns a tuple with the MirrorStatus field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorTopicName() string

GetMirrorTopicName returns the MirrorTopicName field value

func (*ListMirrorTopicsResponseDataAllOf) GetMirrorTopicNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetMirrorTopicNameOk() (*string, bool)

GetMirrorTopicNameOk returns a tuple with the MirrorTopicName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetNumPartitions added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetNumPartitions() int32

GetNumPartitions returns the NumPartitions field value

func (*ListMirrorTopicsResponseDataAllOf) GetNumPartitionsOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetNumPartitionsOk() (*int32, bool)

GetNumPartitionsOk returns a tuple with the NumPartitions field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetSourceTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetSourceTopicName() string

GetSourceTopicName returns the SourceTopicName field value

func (*ListMirrorTopicsResponseDataAllOf) GetSourceTopicNameOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetSourceTopicNameOk() (*string, bool)

GetSourceTopicNameOk returns a tuple with the SourceTopicName field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) GetStateTimeMs added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetStateTimeMs() int64

GetStateTimeMs returns the StateTimeMs field value

func (*ListMirrorTopicsResponseDataAllOf) GetStateTimeMsOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) GetStateTimeMsOk() (*int64, bool)

GetStateTimeMsOk returns a tuple with the StateTimeMs field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataAllOf) HasMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseDataAllOf) HasMirrorStateTransitionErrors() bool

HasMirrorStateTransitionErrors returns a boolean if a field has been set.

func (ListMirrorTopicsResponseDataAllOf) MarshalJSON added in v0.4.0

func (o ListMirrorTopicsResponseDataAllOf) MarshalJSON() ([]byte, error)

func (*ListMirrorTopicsResponseDataAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ListMirrorTopicsResponseDataAllOf) SetLinkName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetLinkName(v string)

SetLinkName sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetMirrorLags added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetMirrorLags(v MirrorLags)

SetMirrorLags sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetMirrorStateTransitionErrors added in v0.18.0

func (o *ListMirrorTopicsResponseDataAllOf) SetMirrorStateTransitionErrors(v []LinkTaskError)

SetMirrorStateTransitionErrors gets a reference to the given []LinkTaskError and assigns it to the MirrorStateTransitionErrors field.

func (*ListMirrorTopicsResponseDataAllOf) SetMirrorStatus added in v0.4.0

SetMirrorStatus sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetMirrorTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetMirrorTopicName(v string)

SetMirrorTopicName sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetNumPartitions added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetNumPartitions(v int32)

SetNumPartitions sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetSourceTopicName added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetSourceTopicName(v string)

SetSourceTopicName sets field value

func (*ListMirrorTopicsResponseDataAllOf) SetStateTimeMs added in v0.4.0

func (o *ListMirrorTopicsResponseDataAllOf) SetStateTimeMs(v int64)

SetStateTimeMs sets field value

type ListMirrorTopicsResponseDataList

type ListMirrorTopicsResponseDataList struct {
	Kind     string                         `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata     `json:"metadata,omitempty"`
	Data     []ListMirrorTopicsResponseData `json:"data,omitempty"`
}

ListMirrorTopicsResponseDataList struct for ListMirrorTopicsResponseDataList

func NewListMirrorTopicsResponseDataList added in v0.4.0

func NewListMirrorTopicsResponseDataList(kind string, metadata ResourceCollectionMetadata, data []ListMirrorTopicsResponseData) *ListMirrorTopicsResponseDataList

NewListMirrorTopicsResponseDataList instantiates a new ListMirrorTopicsResponseDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMirrorTopicsResponseDataListWithDefaults added in v0.4.0

func NewListMirrorTopicsResponseDataListWithDefaults() *ListMirrorTopicsResponseDataList

NewListMirrorTopicsResponseDataListWithDefaults instantiates a new ListMirrorTopicsResponseDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMirrorTopicsResponseDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ListMirrorTopicsResponseDataList) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataList) GetKind added in v0.4.0

GetKind returns the Kind field value

func (*ListMirrorTopicsResponseDataList) GetKindOk added in v0.4.0

func (o *ListMirrorTopicsResponseDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ListMirrorTopicsResponseDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ListMirrorTopicsResponseDataList) GetMetadataOk added in v0.4.0

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ListMirrorTopicsResponseDataList) MarshalJSON added in v0.4.0

func (o ListMirrorTopicsResponseDataList) MarshalJSON() ([]byte, error)

func (*ListMirrorTopicsResponseDataList) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ListMirrorTopicsResponseDataList) SetData added in v0.4.0

SetData sets field value

func (*ListMirrorTopicsResponseDataList) SetKind added in v0.4.0

SetKind sets field value

func (*ListMirrorTopicsResponseDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ListMirrorTopicsResponseDataListAllOf

type ListMirrorTopicsResponseDataListAllOf struct {
	Data []ListMirrorTopicsResponseData `json:"data,omitempty"`
}

ListMirrorTopicsResponseDataListAllOf struct for ListMirrorTopicsResponseDataListAllOf

func NewListMirrorTopicsResponseDataListAllOf added in v0.4.0

func NewListMirrorTopicsResponseDataListAllOf(data []ListMirrorTopicsResponseData) *ListMirrorTopicsResponseDataListAllOf

NewListMirrorTopicsResponseDataListAllOf instantiates a new ListMirrorTopicsResponseDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMirrorTopicsResponseDataListAllOfWithDefaults added in v0.4.0

func NewListMirrorTopicsResponseDataListAllOfWithDefaults() *ListMirrorTopicsResponseDataListAllOf

NewListMirrorTopicsResponseDataListAllOfWithDefaults instantiates a new ListMirrorTopicsResponseDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMirrorTopicsResponseDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ListMirrorTopicsResponseDataListAllOf) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ListMirrorTopicsResponseDataListAllOf) MarshalJSON added in v0.4.0

func (o ListMirrorTopicsResponseDataListAllOf) MarshalJSON() ([]byte, error)

func (*ListMirrorTopicsResponseDataListAllOf) Redact added in v0.4.0

Redact resets all sensitive fields to their zero value.

func (*ListMirrorTopicsResponseDataListAllOf) SetData added in v0.4.0

SetData sets field value

type MirrorLag

type MirrorLag struct {
	Partition             int32 `json:"partition,omitempty"`
	Lag                   int64 `json:"lag,omitempty"`
	LastSourceFetchOffset int64 `json:"last_source_fetch_offset,omitempty"`
}

MirrorLag struct for MirrorLag

func NewMirrorLag added in v0.4.0

func NewMirrorLag(partition int32, lag int64, lastSourceFetchOffset int64) *MirrorLag

NewMirrorLag instantiates a new MirrorLag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMirrorLagWithDefaults added in v0.4.0

func NewMirrorLagWithDefaults() *MirrorLag

NewMirrorLagWithDefaults instantiates a new MirrorLag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MirrorLag) GetLag added in v0.4.0

func (o *MirrorLag) GetLag() int64

GetLag returns the Lag field value

func (*MirrorLag) GetLagOk added in v0.4.0

func (o *MirrorLag) GetLagOk() (*int64, bool)

GetLagOk returns a tuple with the Lag field value and a boolean to check if the value has been set.

func (*MirrorLag) GetLastSourceFetchOffset added in v0.4.0

func (o *MirrorLag) GetLastSourceFetchOffset() int64

GetLastSourceFetchOffset returns the LastSourceFetchOffset field value

func (*MirrorLag) GetLastSourceFetchOffsetOk added in v0.4.0

func (o *MirrorLag) GetLastSourceFetchOffsetOk() (*int64, bool)

GetLastSourceFetchOffsetOk returns a tuple with the LastSourceFetchOffset field value and a boolean to check if the value has been set.

func (*MirrorLag) GetPartition added in v0.4.0

func (o *MirrorLag) GetPartition() int32

GetPartition returns the Partition field value

func (*MirrorLag) GetPartitionOk added in v0.4.0

func (o *MirrorLag) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value and a boolean to check if the value has been set.

func (MirrorLag) MarshalJSON added in v0.4.0

func (o MirrorLag) MarshalJSON() ([]byte, error)

func (*MirrorLag) Redact added in v0.4.0

func (o *MirrorLag) Redact()

Redact resets all sensitive fields to their zero value.

func (*MirrorLag) SetLag added in v0.4.0

func (o *MirrorLag) SetLag(v int64)

SetLag sets field value

func (*MirrorLag) SetLastSourceFetchOffset added in v0.4.0

func (o *MirrorLag) SetLastSourceFetchOffset(v int64)

SetLastSourceFetchOffset sets field value

func (*MirrorLag) SetPartition added in v0.4.0

func (o *MirrorLag) SetPartition(v int32)

SetPartition sets field value

type MirrorLags

type MirrorLags struct {
	Items []MirrorLag
}

MirrorLags struct for MirrorLags

func NewMirrorLags added in v0.4.0

func NewMirrorLags() *MirrorLags

NewMirrorLags instantiates a new MirrorLags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMirrorLagsWithDefaults added in v0.4.0

func NewMirrorLagsWithDefaults() *MirrorLags

NewMirrorLagsWithDefaults instantiates a new MirrorLags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (MirrorLags) MarshalJSON added in v0.4.0

func (o MirrorLags) MarshalJSON() ([]byte, error)

func (*MirrorLags) Redact added in v0.4.0

func (o *MirrorLags) Redact()

Redact resets all sensitive fields to their zero value.

func (*MirrorLags) UnmarshalJSON added in v0.4.0

func (o *MirrorLags) UnmarshalJSON(bytes []byte) (err error)

type MirrorTopicStatus

type MirrorTopicStatus string

MirrorTopicStatus the model 'MirrorTopicStatus'

const (
	ACTIVE              MirrorTopicStatus = "ACTIVE"
	FAILED              MirrorTopicStatus = "FAILED"
	LINK_FAILED         MirrorTopicStatus = "LINK_FAILED"
	LINK_PAUSED         MirrorTopicStatus = "LINK_PAUSED"
	PAUSED              MirrorTopicStatus = "PAUSED"
	PENDING_STOPPED     MirrorTopicStatus = "PENDING_STOPPED"
	SOURCE_UNAVAILABLE  MirrorTopicStatus = "SOURCE_UNAVAILABLE"
	STOPPED             MirrorTopicStatus = "STOPPED"
	PENDING_MIRROR      MirrorTopicStatus = "PENDING_MIRROR"
	PENDING_SYNCHRONIZE MirrorTopicStatus = "PENDING_SYNCHRONIZE"
)

List of MirrorTopicStatus

func NewMirrorTopicStatusFromValue added in v0.4.0

func NewMirrorTopicStatusFromValue(v string) (*MirrorTopicStatus, error)

NewMirrorTopicStatusFromValue returns a pointer to a valid MirrorTopicStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MirrorTopicStatus) IsValid added in v0.4.0

func (v MirrorTopicStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MirrorTopicStatus) Ptr added in v0.4.0

Ptr returns reference to MirrorTopicStatus value

func (*MirrorTopicStatus) UnmarshalJSON added in v0.4.0

func (v *MirrorTopicStatus) UnmarshalJSON(src []byte) error

type NullableAbstractConfigData added in v0.4.0

type NullableAbstractConfigData struct {
	// contains filtered or unexported fields
}

func NewNullableAbstractConfigData added in v0.4.0

func NewNullableAbstractConfigData(val *AbstractConfigData) *NullableAbstractConfigData

func (NullableAbstractConfigData) Get added in v0.4.0

func (NullableAbstractConfigData) IsSet added in v0.4.0

func (v NullableAbstractConfigData) IsSet() bool

func (NullableAbstractConfigData) MarshalJSON added in v0.4.0

func (v NullableAbstractConfigData) MarshalJSON() ([]byte, error)

func (*NullableAbstractConfigData) Set added in v0.4.0

func (*NullableAbstractConfigData) UnmarshalJSON added in v0.4.0

func (v *NullableAbstractConfigData) UnmarshalJSON(src []byte) error

func (*NullableAbstractConfigData) Unset added in v0.4.0

func (v *NullableAbstractConfigData) Unset()

type NullableAbstractConfigDataAllOf added in v0.4.0

type NullableAbstractConfigDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAbstractConfigDataAllOf added in v0.4.0

func NewNullableAbstractConfigDataAllOf(val *AbstractConfigDataAllOf) *NullableAbstractConfigDataAllOf

func (NullableAbstractConfigDataAllOf) Get added in v0.4.0

func (NullableAbstractConfigDataAllOf) IsSet added in v0.4.0

func (NullableAbstractConfigDataAllOf) MarshalJSON added in v0.4.0

func (v NullableAbstractConfigDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableAbstractConfigDataAllOf) Set added in v0.4.0

func (*NullableAbstractConfigDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableAbstractConfigDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableAbstractConfigDataAllOf) Unset added in v0.4.0

type NullableAclData added in v0.4.0

type NullableAclData struct {
	// contains filtered or unexported fields
}

func NewNullableAclData added in v0.4.0

func NewNullableAclData(val *AclData) *NullableAclData

func (NullableAclData) Get added in v0.4.0

func (v NullableAclData) Get() *AclData

func (NullableAclData) IsSet added in v0.4.0

func (v NullableAclData) IsSet() bool

func (NullableAclData) MarshalJSON added in v0.4.0

func (v NullableAclData) MarshalJSON() ([]byte, error)

func (*NullableAclData) Set added in v0.4.0

func (v *NullableAclData) Set(val *AclData)

func (*NullableAclData) UnmarshalJSON added in v0.4.0

func (v *NullableAclData) UnmarshalJSON(src []byte) error

func (*NullableAclData) Unset added in v0.4.0

func (v *NullableAclData) Unset()

type NullableAclDataAllOf added in v0.4.0

type NullableAclDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAclDataAllOf added in v0.4.0

func NewNullableAclDataAllOf(val *AclDataAllOf) *NullableAclDataAllOf

func (NullableAclDataAllOf) Get added in v0.4.0

func (NullableAclDataAllOf) IsSet added in v0.4.0

func (v NullableAclDataAllOf) IsSet() bool

func (NullableAclDataAllOf) MarshalJSON added in v0.4.0

func (v NullableAclDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableAclDataAllOf) Set added in v0.4.0

func (v *NullableAclDataAllOf) Set(val *AclDataAllOf)

func (*NullableAclDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableAclDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableAclDataAllOf) Unset added in v0.4.0

func (v *NullableAclDataAllOf) Unset()

type NullableAclDataList added in v0.4.0

type NullableAclDataList struct {
	// contains filtered or unexported fields
}

func NewNullableAclDataList added in v0.4.0

func NewNullableAclDataList(val *AclDataList) *NullableAclDataList

func (NullableAclDataList) Get added in v0.4.0

func (NullableAclDataList) IsSet added in v0.4.0

func (v NullableAclDataList) IsSet() bool

func (NullableAclDataList) MarshalJSON added in v0.4.0

func (v NullableAclDataList) MarshalJSON() ([]byte, error)

func (*NullableAclDataList) Set added in v0.4.0

func (v *NullableAclDataList) Set(val *AclDataList)

func (*NullableAclDataList) UnmarshalJSON added in v0.4.0

func (v *NullableAclDataList) UnmarshalJSON(src []byte) error

func (*NullableAclDataList) Unset added in v0.4.0

func (v *NullableAclDataList) Unset()

type NullableAclResourceType added in v0.4.0

type NullableAclResourceType struct {
	// contains filtered or unexported fields
}

func NewNullableAclResourceType added in v0.4.0

func NewNullableAclResourceType(val *AclResourceType) *NullableAclResourceType

func (NullableAclResourceType) Get added in v0.4.0

func (NullableAclResourceType) IsSet added in v0.4.0

func (v NullableAclResourceType) IsSet() bool

func (NullableAclResourceType) MarshalJSON added in v0.4.0

func (v NullableAclResourceType) MarshalJSON() ([]byte, error)

func (*NullableAclResourceType) Set added in v0.4.0

func (*NullableAclResourceType) UnmarshalJSON added in v0.4.0

func (v *NullableAclResourceType) UnmarshalJSON(src []byte) error

func (*NullableAclResourceType) Unset added in v0.4.0

func (v *NullableAclResourceType) Unset()

type NullableAlterBrokerReplicaExclusionData added in v0.4.0

type NullableAlterBrokerReplicaExclusionData struct {
	// contains filtered or unexported fields
}

func NewNullableAlterBrokerReplicaExclusionData added in v0.4.0

func NewNullableAlterBrokerReplicaExclusionData(val *AlterBrokerReplicaExclusionData) *NullableAlterBrokerReplicaExclusionData

func (NullableAlterBrokerReplicaExclusionData) Get added in v0.4.0

func (NullableAlterBrokerReplicaExclusionData) IsSet added in v0.4.0

func (NullableAlterBrokerReplicaExclusionData) MarshalJSON added in v0.4.0

func (v NullableAlterBrokerReplicaExclusionData) MarshalJSON() ([]byte, error)

func (*NullableAlterBrokerReplicaExclusionData) Set added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionData) UnmarshalJSON added in v0.4.0

func (v *NullableAlterBrokerReplicaExclusionData) UnmarshalJSON(src []byte) error

func (*NullableAlterBrokerReplicaExclusionData) Unset added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataAllOf added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAlterBrokerReplicaExclusionDataAllOf added in v0.4.0

func NewNullableAlterBrokerReplicaExclusionDataAllOf(val *AlterBrokerReplicaExclusionDataAllOf) *NullableAlterBrokerReplicaExclusionDataAllOf

func (NullableAlterBrokerReplicaExclusionDataAllOf) Get added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataAllOf) IsSet added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataAllOf) MarshalJSON added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataAllOf) Set added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataAllOf) UnmarshalJSON added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataAllOf) Unset added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataList added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataList struct {
	// contains filtered or unexported fields
}

func NewNullableAlterBrokerReplicaExclusionDataList added in v0.4.0

func NewNullableAlterBrokerReplicaExclusionDataList(val *AlterBrokerReplicaExclusionDataList) *NullableAlterBrokerReplicaExclusionDataList

func (NullableAlterBrokerReplicaExclusionDataList) Get added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataList) IsSet added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataList) MarshalJSON added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataList) Set added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataList) UnmarshalJSON added in v0.4.0

func (v *NullableAlterBrokerReplicaExclusionDataList) UnmarshalJSON(src []byte) error

func (*NullableAlterBrokerReplicaExclusionDataList) Unset added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataListAllOf added in v0.4.0

type NullableAlterBrokerReplicaExclusionDataListAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAlterBrokerReplicaExclusionDataListAllOf) Get added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataListAllOf) IsSet added in v0.4.0

func (NullableAlterBrokerReplicaExclusionDataListAllOf) MarshalJSON added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataListAllOf) Set added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataListAllOf) UnmarshalJSON added in v0.4.0

func (*NullableAlterBrokerReplicaExclusionDataListAllOf) Unset added in v0.4.0

type NullableAlterConfigBatchRequestData added in v0.4.0

type NullableAlterConfigBatchRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableAlterConfigBatchRequestData added in v0.4.0

func NewNullableAlterConfigBatchRequestData(val *AlterConfigBatchRequestData) *NullableAlterConfigBatchRequestData

func (NullableAlterConfigBatchRequestData) Get added in v0.4.0

func (NullableAlterConfigBatchRequestData) IsSet added in v0.4.0

func (NullableAlterConfigBatchRequestData) MarshalJSON added in v0.4.0

func (v NullableAlterConfigBatchRequestData) MarshalJSON() ([]byte, error)

func (*NullableAlterConfigBatchRequestData) Set added in v0.4.0

func (*NullableAlterConfigBatchRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableAlterConfigBatchRequestData) UnmarshalJSON(src []byte) error

func (*NullableAlterConfigBatchRequestData) Unset added in v0.4.0

type NullableAlterConfigBatchRequestDataData added in v0.4.0

type NullableAlterConfigBatchRequestDataData struct {
	// contains filtered or unexported fields
}

func NewNullableAlterConfigBatchRequestDataData added in v0.4.0

func NewNullableAlterConfigBatchRequestDataData(val *AlterConfigBatchRequestDataData) *NullableAlterConfigBatchRequestDataData

func (NullableAlterConfigBatchRequestDataData) Get added in v0.4.0

func (NullableAlterConfigBatchRequestDataData) IsSet added in v0.4.0

func (NullableAlterConfigBatchRequestDataData) MarshalJSON added in v0.4.0

func (v NullableAlterConfigBatchRequestDataData) MarshalJSON() ([]byte, error)

func (*NullableAlterConfigBatchRequestDataData) Set added in v0.4.0

func (*NullableAlterConfigBatchRequestDataData) UnmarshalJSON added in v0.4.0

func (v *NullableAlterConfigBatchRequestDataData) UnmarshalJSON(src []byte) error

func (*NullableAlterConfigBatchRequestDataData) Unset added in v0.4.0

type NullableAlterMirrorStatusResponseData added in v0.4.0

type NullableAlterMirrorStatusResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableAlterMirrorStatusResponseData added in v0.4.0

func NewNullableAlterMirrorStatusResponseData(val *AlterMirrorStatusResponseData) *NullableAlterMirrorStatusResponseData

func (NullableAlterMirrorStatusResponseData) Get added in v0.4.0

func (NullableAlterMirrorStatusResponseData) IsSet added in v0.4.0

func (NullableAlterMirrorStatusResponseData) MarshalJSON added in v0.4.0

func (v NullableAlterMirrorStatusResponseData) MarshalJSON() ([]byte, error)

func (*NullableAlterMirrorStatusResponseData) Set added in v0.4.0

func (*NullableAlterMirrorStatusResponseData) UnmarshalJSON added in v0.4.0

func (v *NullableAlterMirrorStatusResponseData) UnmarshalJSON(src []byte) error

func (*NullableAlterMirrorStatusResponseData) Unset added in v0.4.0

type NullableAlterMirrorStatusResponseDataAllOf added in v0.4.0

type NullableAlterMirrorStatusResponseDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAlterMirrorStatusResponseDataAllOf added in v0.4.0

func NewNullableAlterMirrorStatusResponseDataAllOf(val *AlterMirrorStatusResponseDataAllOf) *NullableAlterMirrorStatusResponseDataAllOf

func (NullableAlterMirrorStatusResponseDataAllOf) Get added in v0.4.0

func (NullableAlterMirrorStatusResponseDataAllOf) IsSet added in v0.4.0

func (NullableAlterMirrorStatusResponseDataAllOf) MarshalJSON added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataAllOf) Set added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableAlterMirrorStatusResponseDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableAlterMirrorStatusResponseDataAllOf) Unset added in v0.4.0

type NullableAlterMirrorStatusResponseDataList added in v0.4.0

type NullableAlterMirrorStatusResponseDataList struct {
	// contains filtered or unexported fields
}

func NewNullableAlterMirrorStatusResponseDataList added in v0.4.0

func NewNullableAlterMirrorStatusResponseDataList(val *AlterMirrorStatusResponseDataList) *NullableAlterMirrorStatusResponseDataList

func (NullableAlterMirrorStatusResponseDataList) Get added in v0.4.0

func (NullableAlterMirrorStatusResponseDataList) IsSet added in v0.4.0

func (NullableAlterMirrorStatusResponseDataList) MarshalJSON added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataList) Set added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataList) UnmarshalJSON added in v0.4.0

func (v *NullableAlterMirrorStatusResponseDataList) UnmarshalJSON(src []byte) error

func (*NullableAlterMirrorStatusResponseDataList) Unset added in v0.4.0

type NullableAlterMirrorStatusResponseDataListAllOf added in v0.4.0

type NullableAlterMirrorStatusResponseDataListAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAlterMirrorStatusResponseDataListAllOf) Get added in v0.4.0

func (NullableAlterMirrorStatusResponseDataListAllOf) IsSet added in v0.4.0

func (NullableAlterMirrorStatusResponseDataListAllOf) MarshalJSON added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataListAllOf) Set added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataListAllOf) UnmarshalJSON added in v0.4.0

func (*NullableAlterMirrorStatusResponseDataListAllOf) Unset added in v0.4.0

type NullableAlterMirrorsRequestData added in v0.4.0

type NullableAlterMirrorsRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableAlterMirrorsRequestData added in v0.4.0

func NewNullableAlterMirrorsRequestData(val *AlterMirrorsRequestData) *NullableAlterMirrorsRequestData

func (NullableAlterMirrorsRequestData) Get added in v0.4.0

func (NullableAlterMirrorsRequestData) IsSet added in v0.4.0

func (NullableAlterMirrorsRequestData) MarshalJSON added in v0.4.0

func (v NullableAlterMirrorsRequestData) MarshalJSON() ([]byte, error)

func (*NullableAlterMirrorsRequestData) Set added in v0.4.0

func (*NullableAlterMirrorsRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableAlterMirrorsRequestData) UnmarshalJSON(src []byte) error

func (*NullableAlterMirrorsRequestData) Unset added in v0.4.0

type NullableAnyUnevenLoadData added in v0.4.0

type NullableAnyUnevenLoadData struct {
	// contains filtered or unexported fields
}

func NewNullableAnyUnevenLoadData added in v0.4.0

func NewNullableAnyUnevenLoadData(val *AnyUnevenLoadData) *NullableAnyUnevenLoadData

func (NullableAnyUnevenLoadData) Get added in v0.4.0

func (NullableAnyUnevenLoadData) IsSet added in v0.4.0

func (v NullableAnyUnevenLoadData) IsSet() bool

func (NullableAnyUnevenLoadData) MarshalJSON added in v0.4.0

func (v NullableAnyUnevenLoadData) MarshalJSON() ([]byte, error)

func (*NullableAnyUnevenLoadData) Set added in v0.4.0

func (*NullableAnyUnevenLoadData) UnmarshalJSON added in v0.4.0

func (v *NullableAnyUnevenLoadData) UnmarshalJSON(src []byte) error

func (*NullableAnyUnevenLoadData) Unset added in v0.4.0

func (v *NullableAnyUnevenLoadData) Unset()

type NullableAnyUnevenLoadDataAllOf added in v0.4.0

type NullableAnyUnevenLoadDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAnyUnevenLoadDataAllOf added in v0.4.0

func NewNullableAnyUnevenLoadDataAllOf(val *AnyUnevenLoadDataAllOf) *NullableAnyUnevenLoadDataAllOf

func (NullableAnyUnevenLoadDataAllOf) Get added in v0.4.0

func (NullableAnyUnevenLoadDataAllOf) IsSet added in v0.4.0

func (NullableAnyUnevenLoadDataAllOf) MarshalJSON added in v0.4.0

func (v NullableAnyUnevenLoadDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableAnyUnevenLoadDataAllOf) Set added in v0.4.0

func (*NullableAnyUnevenLoadDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableAnyUnevenLoadDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableAnyUnevenLoadDataAllOf) Unset added in v0.4.0

func (v *NullableAnyUnevenLoadDataAllOf) Unset()

type NullableAuthorizedOperations added in v0.14.0

type NullableAuthorizedOperations struct {
	// contains filtered or unexported fields
}

func NewNullableAuthorizedOperations added in v0.14.0

func NewNullableAuthorizedOperations(val *AuthorizedOperations) *NullableAuthorizedOperations

func (NullableAuthorizedOperations) Get added in v0.14.0

func (NullableAuthorizedOperations) IsSet added in v0.14.0

func (NullableAuthorizedOperations) MarshalJSON added in v0.14.0

func (v NullableAuthorizedOperations) MarshalJSON() ([]byte, error)

func (*NullableAuthorizedOperations) Set added in v0.14.0

func (*NullableAuthorizedOperations) UnmarshalJSON added in v0.14.0

func (v *NullableAuthorizedOperations) UnmarshalJSON(src []byte) error

func (*NullableAuthorizedOperations) Unset added in v0.14.0

func (v *NullableAuthorizedOperations) Unset()

type NullableBalancerStatusData added in v0.4.0

type NullableBalancerStatusData struct {
	// contains filtered or unexported fields
}

func NewNullableBalancerStatusData added in v0.4.0

func NewNullableBalancerStatusData(val *BalancerStatusData) *NullableBalancerStatusData

func (NullableBalancerStatusData) Get added in v0.4.0

func (NullableBalancerStatusData) IsSet added in v0.4.0

func (v NullableBalancerStatusData) IsSet() bool

func (NullableBalancerStatusData) MarshalJSON added in v0.4.0

func (v NullableBalancerStatusData) MarshalJSON() ([]byte, error)

func (*NullableBalancerStatusData) Set added in v0.4.0

func (*NullableBalancerStatusData) UnmarshalJSON added in v0.4.0

func (v *NullableBalancerStatusData) UnmarshalJSON(src []byte) error

func (*NullableBalancerStatusData) Unset added in v0.4.0

func (v *NullableBalancerStatusData) Unset()

type NullableBalancerStatusDataAllOf added in v0.4.0

type NullableBalancerStatusDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBalancerStatusDataAllOf added in v0.4.0

func NewNullableBalancerStatusDataAllOf(val *BalancerStatusDataAllOf) *NullableBalancerStatusDataAllOf

func (NullableBalancerStatusDataAllOf) Get added in v0.4.0

func (NullableBalancerStatusDataAllOf) IsSet added in v0.4.0

func (NullableBalancerStatusDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBalancerStatusDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBalancerStatusDataAllOf) Set added in v0.4.0

func (*NullableBalancerStatusDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBalancerStatusDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBalancerStatusDataAllOf) Unset added in v0.4.0

type NullableBool added in v0.4.0

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool added in v0.4.0

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get added in v0.4.0

func (v NullableBool) Get() *bool

func (NullableBool) IsSet added in v0.4.0

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON added in v0.4.0

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set added in v0.4.0

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON added in v0.4.0

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset added in v0.4.0

func (v *NullableBool) Unset()

type NullableBrokerConfigData added in v0.4.0

type NullableBrokerConfigData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerConfigData added in v0.4.0

func NewNullableBrokerConfigData(val *BrokerConfigData) *NullableBrokerConfigData

func (NullableBrokerConfigData) Get added in v0.4.0

func (NullableBrokerConfigData) IsSet added in v0.4.0

func (v NullableBrokerConfigData) IsSet() bool

func (NullableBrokerConfigData) MarshalJSON added in v0.4.0

func (v NullableBrokerConfigData) MarshalJSON() ([]byte, error)

func (*NullableBrokerConfigData) Set added in v0.4.0

func (*NullableBrokerConfigData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerConfigData) UnmarshalJSON(src []byte) error

func (*NullableBrokerConfigData) Unset added in v0.4.0

func (v *NullableBrokerConfigData) Unset()

type NullableBrokerConfigDataAllOf added in v0.4.0

type NullableBrokerConfigDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerConfigDataAllOf added in v0.4.0

func NewNullableBrokerConfigDataAllOf(val *BrokerConfigDataAllOf) *NullableBrokerConfigDataAllOf

func (NullableBrokerConfigDataAllOf) Get added in v0.4.0

func (NullableBrokerConfigDataAllOf) IsSet added in v0.4.0

func (NullableBrokerConfigDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerConfigDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerConfigDataAllOf) Set added in v0.4.0

func (*NullableBrokerConfigDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerConfigDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerConfigDataAllOf) Unset added in v0.4.0

func (v *NullableBrokerConfigDataAllOf) Unset()

type NullableBrokerConfigDataList added in v0.4.0

type NullableBrokerConfigDataList struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerConfigDataList added in v0.4.0

func NewNullableBrokerConfigDataList(val *BrokerConfigDataList) *NullableBrokerConfigDataList

func (NullableBrokerConfigDataList) Get added in v0.4.0

func (NullableBrokerConfigDataList) IsSet added in v0.4.0

func (NullableBrokerConfigDataList) MarshalJSON added in v0.4.0

func (v NullableBrokerConfigDataList) MarshalJSON() ([]byte, error)

func (*NullableBrokerConfigDataList) Set added in v0.4.0

func (*NullableBrokerConfigDataList) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerConfigDataList) UnmarshalJSON(src []byte) error

func (*NullableBrokerConfigDataList) Unset added in v0.4.0

func (v *NullableBrokerConfigDataList) Unset()

type NullableBrokerConfigDataListAllOf added in v0.4.0

type NullableBrokerConfigDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerConfigDataListAllOf added in v0.4.0

func NewNullableBrokerConfigDataListAllOf(val *BrokerConfigDataListAllOf) *NullableBrokerConfigDataListAllOf

func (NullableBrokerConfigDataListAllOf) Get added in v0.4.0

func (NullableBrokerConfigDataListAllOf) IsSet added in v0.4.0

func (NullableBrokerConfigDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerConfigDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerConfigDataListAllOf) Set added in v0.4.0

func (*NullableBrokerConfigDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerConfigDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerConfigDataListAllOf) Unset added in v0.4.0

type NullableBrokerData added in v0.4.0

type NullableBrokerData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerData added in v0.4.0

func NewNullableBrokerData(val *BrokerData) *NullableBrokerData

func (NullableBrokerData) Get added in v0.4.0

func (v NullableBrokerData) Get() *BrokerData

func (NullableBrokerData) IsSet added in v0.4.0

func (v NullableBrokerData) IsSet() bool

func (NullableBrokerData) MarshalJSON added in v0.4.0

func (v NullableBrokerData) MarshalJSON() ([]byte, error)

func (*NullableBrokerData) Set added in v0.4.0

func (v *NullableBrokerData) Set(val *BrokerData)

func (*NullableBrokerData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerData) UnmarshalJSON(src []byte) error

func (*NullableBrokerData) Unset added in v0.4.0

func (v *NullableBrokerData) Unset()

type NullableBrokerDataAllOf added in v0.4.0

type NullableBrokerDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerDataAllOf added in v0.4.0

func NewNullableBrokerDataAllOf(val *BrokerDataAllOf) *NullableBrokerDataAllOf

func (NullableBrokerDataAllOf) Get added in v0.4.0

func (NullableBrokerDataAllOf) IsSet added in v0.4.0

func (v NullableBrokerDataAllOf) IsSet() bool

func (NullableBrokerDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerDataAllOf) Set added in v0.4.0

func (*NullableBrokerDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerDataAllOf) Unset added in v0.4.0

func (v *NullableBrokerDataAllOf) Unset()

type NullableBrokerDataList added in v0.4.0

type NullableBrokerDataList struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerDataList added in v0.4.0

func NewNullableBrokerDataList(val *BrokerDataList) *NullableBrokerDataList

func (NullableBrokerDataList) Get added in v0.4.0

func (NullableBrokerDataList) IsSet added in v0.4.0

func (v NullableBrokerDataList) IsSet() bool

func (NullableBrokerDataList) MarshalJSON added in v0.4.0

func (v NullableBrokerDataList) MarshalJSON() ([]byte, error)

func (*NullableBrokerDataList) Set added in v0.4.0

func (*NullableBrokerDataList) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerDataList) UnmarshalJSON(src []byte) error

func (*NullableBrokerDataList) Unset added in v0.4.0

func (v *NullableBrokerDataList) Unset()

type NullableBrokerDataListAllOf added in v0.4.0

type NullableBrokerDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerDataListAllOf added in v0.4.0

func NewNullableBrokerDataListAllOf(val *BrokerDataListAllOf) *NullableBrokerDataListAllOf

func (NullableBrokerDataListAllOf) Get added in v0.4.0

func (NullableBrokerDataListAllOf) IsSet added in v0.4.0

func (NullableBrokerDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerDataListAllOf) Set added in v0.4.0

func (*NullableBrokerDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerDataListAllOf) Unset added in v0.4.0

func (v *NullableBrokerDataListAllOf) Unset()

type NullableBrokerRemovalData added in v0.4.0

type NullableBrokerRemovalData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerRemovalData added in v0.4.0

func NewNullableBrokerRemovalData(val *BrokerRemovalData) *NullableBrokerRemovalData

func (NullableBrokerRemovalData) Get added in v0.4.0

func (NullableBrokerRemovalData) IsSet added in v0.4.0

func (v NullableBrokerRemovalData) IsSet() bool

func (NullableBrokerRemovalData) MarshalJSON added in v0.4.0

func (v NullableBrokerRemovalData) MarshalJSON() ([]byte, error)

func (*NullableBrokerRemovalData) Set added in v0.4.0

func (*NullableBrokerRemovalData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerRemovalData) UnmarshalJSON(src []byte) error

func (*NullableBrokerRemovalData) Unset added in v0.4.0

func (v *NullableBrokerRemovalData) Unset()

type NullableBrokerRemovalDataAllOf added in v0.4.0

type NullableBrokerRemovalDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerRemovalDataAllOf added in v0.4.0

func NewNullableBrokerRemovalDataAllOf(val *BrokerRemovalDataAllOf) *NullableBrokerRemovalDataAllOf

func (NullableBrokerRemovalDataAllOf) Get added in v0.4.0

func (NullableBrokerRemovalDataAllOf) IsSet added in v0.4.0

func (NullableBrokerRemovalDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerRemovalDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerRemovalDataAllOf) Set added in v0.4.0

func (*NullableBrokerRemovalDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerRemovalDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerRemovalDataAllOf) Unset added in v0.4.0

func (v *NullableBrokerRemovalDataAllOf) Unset()

type NullableBrokerRemovalDataList added in v0.4.0

type NullableBrokerRemovalDataList struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerRemovalDataList added in v0.4.0

func NewNullableBrokerRemovalDataList(val *BrokerRemovalDataList) *NullableBrokerRemovalDataList

func (NullableBrokerRemovalDataList) Get added in v0.4.0

func (NullableBrokerRemovalDataList) IsSet added in v0.4.0

func (NullableBrokerRemovalDataList) MarshalJSON added in v0.4.0

func (v NullableBrokerRemovalDataList) MarshalJSON() ([]byte, error)

func (*NullableBrokerRemovalDataList) Set added in v0.4.0

func (*NullableBrokerRemovalDataList) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerRemovalDataList) UnmarshalJSON(src []byte) error

func (*NullableBrokerRemovalDataList) Unset added in v0.4.0

func (v *NullableBrokerRemovalDataList) Unset()

type NullableBrokerRemovalDataListAllOf added in v0.4.0

type NullableBrokerRemovalDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerRemovalDataListAllOf added in v0.4.0

func NewNullableBrokerRemovalDataListAllOf(val *BrokerRemovalDataListAllOf) *NullableBrokerRemovalDataListAllOf

func (NullableBrokerRemovalDataListAllOf) Get added in v0.4.0

func (NullableBrokerRemovalDataListAllOf) IsSet added in v0.4.0

func (NullableBrokerRemovalDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerRemovalDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerRemovalDataListAllOf) Set added in v0.4.0

func (*NullableBrokerRemovalDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerRemovalDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerRemovalDataListAllOf) Unset added in v0.4.0

type NullableBrokerReplicaExclusionBatchRequestData added in v0.4.0

type NullableBrokerReplicaExclusionBatchRequestData struct {
	// contains filtered or unexported fields
}

func (NullableBrokerReplicaExclusionBatchRequestData) Get added in v0.4.0

func (NullableBrokerReplicaExclusionBatchRequestData) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionBatchRequestData) MarshalJSON added in v0.4.0

func (*NullableBrokerReplicaExclusionBatchRequestData) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionBatchRequestData) UnmarshalJSON added in v0.4.0

func (*NullableBrokerReplicaExclusionBatchRequestData) Unset added in v0.4.0

type NullableBrokerReplicaExclusionData added in v0.4.0

type NullableBrokerReplicaExclusionData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerReplicaExclusionData added in v0.4.0

func NewNullableBrokerReplicaExclusionData(val *BrokerReplicaExclusionData) *NullableBrokerReplicaExclusionData

func (NullableBrokerReplicaExclusionData) Get added in v0.4.0

func (NullableBrokerReplicaExclusionData) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionData) MarshalJSON added in v0.4.0

func (v NullableBrokerReplicaExclusionData) MarshalJSON() ([]byte, error)

func (*NullableBrokerReplicaExclusionData) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerReplicaExclusionData) UnmarshalJSON(src []byte) error

func (*NullableBrokerReplicaExclusionData) Unset added in v0.4.0

type NullableBrokerReplicaExclusionDataAllOf added in v0.4.0

type NullableBrokerReplicaExclusionDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerReplicaExclusionDataAllOf added in v0.4.0

func NewNullableBrokerReplicaExclusionDataAllOf(val *BrokerReplicaExclusionDataAllOf) *NullableBrokerReplicaExclusionDataAllOf

func (NullableBrokerReplicaExclusionDataAllOf) Get added in v0.4.0

func (NullableBrokerReplicaExclusionDataAllOf) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerReplicaExclusionDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerReplicaExclusionDataAllOf) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerReplicaExclusionDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerReplicaExclusionDataAllOf) Unset added in v0.4.0

type NullableBrokerReplicaExclusionDataList added in v0.4.0

type NullableBrokerReplicaExclusionDataList struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerReplicaExclusionDataList added in v0.4.0

func NewNullableBrokerReplicaExclusionDataList(val *BrokerReplicaExclusionDataList) *NullableBrokerReplicaExclusionDataList

func (NullableBrokerReplicaExclusionDataList) Get added in v0.4.0

func (NullableBrokerReplicaExclusionDataList) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionDataList) MarshalJSON added in v0.4.0

func (v NullableBrokerReplicaExclusionDataList) MarshalJSON() ([]byte, error)

func (*NullableBrokerReplicaExclusionDataList) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionDataList) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerReplicaExclusionDataList) UnmarshalJSON(src []byte) error

func (*NullableBrokerReplicaExclusionDataList) Unset added in v0.4.0

type NullableBrokerReplicaExclusionDataListAllOf added in v0.4.0

type NullableBrokerReplicaExclusionDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerReplicaExclusionDataListAllOf added in v0.4.0

func NewNullableBrokerReplicaExclusionDataListAllOf(val *BrokerReplicaExclusionDataListAllOf) *NullableBrokerReplicaExclusionDataListAllOf

func (NullableBrokerReplicaExclusionDataListAllOf) Get added in v0.4.0

func (NullableBrokerReplicaExclusionDataListAllOf) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionDataListAllOf) MarshalJSON added in v0.4.0

func (*NullableBrokerReplicaExclusionDataListAllOf) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerReplicaExclusionDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerReplicaExclusionDataListAllOf) Unset added in v0.4.0

type NullableBrokerReplicaExclusionRequestData added in v0.4.0

type NullableBrokerReplicaExclusionRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerReplicaExclusionRequestData added in v0.4.0

func NewNullableBrokerReplicaExclusionRequestData(val *BrokerReplicaExclusionRequestData) *NullableBrokerReplicaExclusionRequestData

func (NullableBrokerReplicaExclusionRequestData) Get added in v0.4.0

func (NullableBrokerReplicaExclusionRequestData) IsSet added in v0.4.0

func (NullableBrokerReplicaExclusionRequestData) MarshalJSON added in v0.4.0

func (*NullableBrokerReplicaExclusionRequestData) Set added in v0.4.0

func (*NullableBrokerReplicaExclusionRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerReplicaExclusionRequestData) UnmarshalJSON(src []byte) error

func (*NullableBrokerReplicaExclusionRequestData) Unset added in v0.4.0

type NullableBrokerTaskData added in v0.4.0

type NullableBrokerTaskData struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerTaskData added in v0.4.0

func NewNullableBrokerTaskData(val *BrokerTaskData) *NullableBrokerTaskData

func (NullableBrokerTaskData) Get added in v0.4.0

func (NullableBrokerTaskData) IsSet added in v0.4.0

func (v NullableBrokerTaskData) IsSet() bool

func (NullableBrokerTaskData) MarshalJSON added in v0.4.0

func (v NullableBrokerTaskData) MarshalJSON() ([]byte, error)

func (*NullableBrokerTaskData) Set added in v0.4.0

func (*NullableBrokerTaskData) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerTaskData) UnmarshalJSON(src []byte) error

func (*NullableBrokerTaskData) Unset added in v0.4.0

func (v *NullableBrokerTaskData) Unset()

type NullableBrokerTaskDataAllOf added in v0.4.0

type NullableBrokerTaskDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerTaskDataAllOf added in v0.4.0

func NewNullableBrokerTaskDataAllOf(val *BrokerTaskDataAllOf) *NullableBrokerTaskDataAllOf

func (NullableBrokerTaskDataAllOf) Get added in v0.4.0

func (NullableBrokerTaskDataAllOf) IsSet added in v0.4.0

func (NullableBrokerTaskDataAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerTaskDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerTaskDataAllOf) Set added in v0.4.0

func (*NullableBrokerTaskDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerTaskDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerTaskDataAllOf) Unset added in v0.4.0

func (v *NullableBrokerTaskDataAllOf) Unset()

type NullableBrokerTaskDataList added in v0.4.0

type NullableBrokerTaskDataList struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerTaskDataList added in v0.4.0

func NewNullableBrokerTaskDataList(val *BrokerTaskDataList) *NullableBrokerTaskDataList

func (NullableBrokerTaskDataList) Get added in v0.4.0

func (NullableBrokerTaskDataList) IsSet added in v0.4.0

func (v NullableBrokerTaskDataList) IsSet() bool

func (NullableBrokerTaskDataList) MarshalJSON added in v0.4.0

func (v NullableBrokerTaskDataList) MarshalJSON() ([]byte, error)

func (*NullableBrokerTaskDataList) Set added in v0.4.0

func (*NullableBrokerTaskDataList) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerTaskDataList) UnmarshalJSON(src []byte) error

func (*NullableBrokerTaskDataList) Unset added in v0.4.0

func (v *NullableBrokerTaskDataList) Unset()

type NullableBrokerTaskDataListAllOf added in v0.4.0

type NullableBrokerTaskDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerTaskDataListAllOf added in v0.4.0

func NewNullableBrokerTaskDataListAllOf(val *BrokerTaskDataListAllOf) *NullableBrokerTaskDataListAllOf

func (NullableBrokerTaskDataListAllOf) Get added in v0.4.0

func (NullableBrokerTaskDataListAllOf) IsSet added in v0.4.0

func (NullableBrokerTaskDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableBrokerTaskDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableBrokerTaskDataListAllOf) Set added in v0.4.0

func (*NullableBrokerTaskDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerTaskDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableBrokerTaskDataListAllOf) Unset added in v0.4.0

type NullableBrokerTaskType added in v0.4.0

type NullableBrokerTaskType struct {
	// contains filtered or unexported fields
}

func NewNullableBrokerTaskType added in v0.4.0

func NewNullableBrokerTaskType(val *BrokerTaskType) *NullableBrokerTaskType

func (NullableBrokerTaskType) Get added in v0.4.0

func (NullableBrokerTaskType) IsSet added in v0.4.0

func (v NullableBrokerTaskType) IsSet() bool

func (NullableBrokerTaskType) MarshalJSON added in v0.4.0

func (v NullableBrokerTaskType) MarshalJSON() ([]byte, error)

func (*NullableBrokerTaskType) Set added in v0.4.0

func (*NullableBrokerTaskType) UnmarshalJSON added in v0.4.0

func (v *NullableBrokerTaskType) UnmarshalJSON(src []byte) error

func (*NullableBrokerTaskType) Unset added in v0.4.0

func (v *NullableBrokerTaskType) Unset()

type NullableClusterConfigData added in v0.4.0

type NullableClusterConfigData struct {
	// contains filtered or unexported fields
}

func NewNullableClusterConfigData added in v0.4.0

func NewNullableClusterConfigData(val *ClusterConfigData) *NullableClusterConfigData

func (NullableClusterConfigData) Get added in v0.4.0

func (NullableClusterConfigData) IsSet added in v0.4.0

func (v NullableClusterConfigData) IsSet() bool

func (NullableClusterConfigData) MarshalJSON added in v0.4.0

func (v NullableClusterConfigData) MarshalJSON() ([]byte, error)

func (*NullableClusterConfigData) Set added in v0.4.0

func (*NullableClusterConfigData) UnmarshalJSON added in v0.4.0

func (v *NullableClusterConfigData) UnmarshalJSON(src []byte) error

func (*NullableClusterConfigData) Unset added in v0.4.0

func (v *NullableClusterConfigData) Unset()

type NullableClusterConfigDataAllOf added in v0.4.0

type NullableClusterConfigDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableClusterConfigDataAllOf added in v0.4.0

func NewNullableClusterConfigDataAllOf(val *ClusterConfigDataAllOf) *NullableClusterConfigDataAllOf

func (NullableClusterConfigDataAllOf) Get added in v0.4.0

func (NullableClusterConfigDataAllOf) IsSet added in v0.4.0

func (NullableClusterConfigDataAllOf) MarshalJSON added in v0.4.0

func (v NullableClusterConfigDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableClusterConfigDataAllOf) Set added in v0.4.0

func (*NullableClusterConfigDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableClusterConfigDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableClusterConfigDataAllOf) Unset added in v0.4.0

func (v *NullableClusterConfigDataAllOf) Unset()

type NullableClusterConfigDataList added in v0.4.0

type NullableClusterConfigDataList struct {
	// contains filtered or unexported fields
}

func NewNullableClusterConfigDataList added in v0.4.0

func NewNullableClusterConfigDataList(val *ClusterConfigDataList) *NullableClusterConfigDataList

func (NullableClusterConfigDataList) Get added in v0.4.0

func (NullableClusterConfigDataList) IsSet added in v0.4.0

func (NullableClusterConfigDataList) MarshalJSON added in v0.4.0

func (v NullableClusterConfigDataList) MarshalJSON() ([]byte, error)

func (*NullableClusterConfigDataList) Set added in v0.4.0

func (*NullableClusterConfigDataList) UnmarshalJSON added in v0.4.0

func (v *NullableClusterConfigDataList) UnmarshalJSON(src []byte) error

func (*NullableClusterConfigDataList) Unset added in v0.4.0

func (v *NullableClusterConfigDataList) Unset()

type NullableClusterConfigDataListAllOf added in v0.4.0

type NullableClusterConfigDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableClusterConfigDataListAllOf added in v0.4.0

func NewNullableClusterConfigDataListAllOf(val *ClusterConfigDataListAllOf) *NullableClusterConfigDataListAllOf

func (NullableClusterConfigDataListAllOf) Get added in v0.4.0

func (NullableClusterConfigDataListAllOf) IsSet added in v0.4.0

func (NullableClusterConfigDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableClusterConfigDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableClusterConfigDataListAllOf) Set added in v0.4.0

func (*NullableClusterConfigDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableClusterConfigDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableClusterConfigDataListAllOf) Unset added in v0.4.0

type NullableClusterData added in v0.4.0

type NullableClusterData struct {
	// contains filtered or unexported fields
}

func NewNullableClusterData added in v0.4.0

func NewNullableClusterData(val *ClusterData) *NullableClusterData

func (NullableClusterData) Get added in v0.4.0

func (NullableClusterData) IsSet added in v0.4.0

func (v NullableClusterData) IsSet() bool

func (NullableClusterData) MarshalJSON added in v0.4.0

func (v NullableClusterData) MarshalJSON() ([]byte, error)

func (*NullableClusterData) Set added in v0.4.0

func (v *NullableClusterData) Set(val *ClusterData)

func (*NullableClusterData) UnmarshalJSON added in v0.4.0

func (v *NullableClusterData) UnmarshalJSON(src []byte) error

func (*NullableClusterData) Unset added in v0.4.0

func (v *NullableClusterData) Unset()

type NullableClusterDataAllOf added in v0.4.0

type NullableClusterDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableClusterDataAllOf added in v0.4.0

func NewNullableClusterDataAllOf(val *ClusterDataAllOf) *NullableClusterDataAllOf

func (NullableClusterDataAllOf) Get added in v0.4.0

func (NullableClusterDataAllOf) IsSet added in v0.4.0

func (v NullableClusterDataAllOf) IsSet() bool

func (NullableClusterDataAllOf) MarshalJSON added in v0.4.0

func (v NullableClusterDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableClusterDataAllOf) Set added in v0.4.0

func (*NullableClusterDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableClusterDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableClusterDataAllOf) Unset added in v0.4.0

func (v *NullableClusterDataAllOf) Unset()

type NullableClusterDataList added in v0.4.0

type NullableClusterDataList struct {
	// contains filtered or unexported fields
}

func NewNullableClusterDataList added in v0.4.0

func NewNullableClusterDataList(val *ClusterDataList) *NullableClusterDataList

func (NullableClusterDataList) Get added in v0.4.0

func (NullableClusterDataList) IsSet added in v0.4.0

func (v NullableClusterDataList) IsSet() bool

func (NullableClusterDataList) MarshalJSON added in v0.4.0

func (v NullableClusterDataList) MarshalJSON() ([]byte, error)

func (*NullableClusterDataList) Set added in v0.4.0

func (*NullableClusterDataList) UnmarshalJSON added in v0.4.0

func (v *NullableClusterDataList) UnmarshalJSON(src []byte) error

func (*NullableClusterDataList) Unset added in v0.4.0

func (v *NullableClusterDataList) Unset()

type NullableClusterDataListAllOf added in v0.4.0

type NullableClusterDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableClusterDataListAllOf added in v0.4.0

func NewNullableClusterDataListAllOf(val *ClusterDataListAllOf) *NullableClusterDataListAllOf

func (NullableClusterDataListAllOf) Get added in v0.4.0

func (NullableClusterDataListAllOf) IsSet added in v0.4.0

func (NullableClusterDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableClusterDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableClusterDataListAllOf) Set added in v0.4.0

func (*NullableClusterDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableClusterDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableClusterDataListAllOf) Unset added in v0.4.0

func (v *NullableClusterDataListAllOf) Unset()

type NullableConfigData added in v0.4.0

type NullableConfigData struct {
	// contains filtered or unexported fields
}

func NewNullableConfigData added in v0.4.0

func NewNullableConfigData(val *ConfigData) *NullableConfigData

func (NullableConfigData) Get added in v0.4.0

func (v NullableConfigData) Get() *ConfigData

func (NullableConfigData) IsSet added in v0.4.0

func (v NullableConfigData) IsSet() bool

func (NullableConfigData) MarshalJSON added in v0.4.0

func (v NullableConfigData) MarshalJSON() ([]byte, error)

func (*NullableConfigData) Set added in v0.4.0

func (v *NullableConfigData) Set(val *ConfigData)

func (*NullableConfigData) UnmarshalJSON added in v0.4.0

func (v *NullableConfigData) UnmarshalJSON(src []byte) error

func (*NullableConfigData) Unset added in v0.4.0

func (v *NullableConfigData) Unset()

type NullableConfigSynonymData added in v0.4.0

type NullableConfigSynonymData struct {
	// contains filtered or unexported fields
}

func NewNullableConfigSynonymData added in v0.4.0

func NewNullableConfigSynonymData(val *ConfigSynonymData) *NullableConfigSynonymData

func (NullableConfigSynonymData) Get added in v0.4.0

func (NullableConfigSynonymData) IsSet added in v0.4.0

func (v NullableConfigSynonymData) IsSet() bool

func (NullableConfigSynonymData) MarshalJSON added in v0.4.0

func (v NullableConfigSynonymData) MarshalJSON() ([]byte, error)

func (*NullableConfigSynonymData) Set added in v0.4.0

func (*NullableConfigSynonymData) UnmarshalJSON added in v0.4.0

func (v *NullableConfigSynonymData) UnmarshalJSON(src []byte) error

func (*NullableConfigSynonymData) Unset added in v0.4.0

func (v *NullableConfigSynonymData) Unset()

type NullableConsumerAssignmentData added in v0.4.0

type NullableConsumerAssignmentData struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerAssignmentData added in v0.4.0

func NewNullableConsumerAssignmentData(val *ConsumerAssignmentData) *NullableConsumerAssignmentData

func (NullableConsumerAssignmentData) Get added in v0.4.0

func (NullableConsumerAssignmentData) IsSet added in v0.4.0

func (NullableConsumerAssignmentData) MarshalJSON added in v0.4.0

func (v NullableConsumerAssignmentData) MarshalJSON() ([]byte, error)

func (*NullableConsumerAssignmentData) Set added in v0.4.0

func (*NullableConsumerAssignmentData) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerAssignmentData) UnmarshalJSON(src []byte) error

func (*NullableConsumerAssignmentData) Unset added in v0.4.0

func (v *NullableConsumerAssignmentData) Unset()

type NullableConsumerAssignmentDataAllOf added in v0.4.0

type NullableConsumerAssignmentDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerAssignmentDataAllOf added in v0.4.0

func NewNullableConsumerAssignmentDataAllOf(val *ConsumerAssignmentDataAllOf) *NullableConsumerAssignmentDataAllOf

func (NullableConsumerAssignmentDataAllOf) Get added in v0.4.0

func (NullableConsumerAssignmentDataAllOf) IsSet added in v0.4.0

func (NullableConsumerAssignmentDataAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerAssignmentDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerAssignmentDataAllOf) Set added in v0.4.0

func (*NullableConsumerAssignmentDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerAssignmentDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerAssignmentDataAllOf) Unset added in v0.4.0

type NullableConsumerAssignmentDataList added in v0.4.0

type NullableConsumerAssignmentDataList struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerAssignmentDataList added in v0.4.0

func NewNullableConsumerAssignmentDataList(val *ConsumerAssignmentDataList) *NullableConsumerAssignmentDataList

func (NullableConsumerAssignmentDataList) Get added in v0.4.0

func (NullableConsumerAssignmentDataList) IsSet added in v0.4.0

func (NullableConsumerAssignmentDataList) MarshalJSON added in v0.4.0

func (v NullableConsumerAssignmentDataList) MarshalJSON() ([]byte, error)

func (*NullableConsumerAssignmentDataList) Set added in v0.4.0

func (*NullableConsumerAssignmentDataList) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerAssignmentDataList) UnmarshalJSON(src []byte) error

func (*NullableConsumerAssignmentDataList) Unset added in v0.4.0

type NullableConsumerAssignmentDataListAllOf added in v0.4.0

type NullableConsumerAssignmentDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerAssignmentDataListAllOf added in v0.4.0

func NewNullableConsumerAssignmentDataListAllOf(val *ConsumerAssignmentDataListAllOf) *NullableConsumerAssignmentDataListAllOf

func (NullableConsumerAssignmentDataListAllOf) Get added in v0.4.0

func (NullableConsumerAssignmentDataListAllOf) IsSet added in v0.4.0

func (NullableConsumerAssignmentDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerAssignmentDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerAssignmentDataListAllOf) Set added in v0.4.0

func (*NullableConsumerAssignmentDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerAssignmentDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerAssignmentDataListAllOf) Unset added in v0.4.0

type NullableConsumerData added in v0.4.0

type NullableConsumerData struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerData added in v0.4.0

func NewNullableConsumerData(val *ConsumerData) *NullableConsumerData

func (NullableConsumerData) Get added in v0.4.0

func (NullableConsumerData) IsSet added in v0.4.0

func (v NullableConsumerData) IsSet() bool

func (NullableConsumerData) MarshalJSON added in v0.4.0

func (v NullableConsumerData) MarshalJSON() ([]byte, error)

func (*NullableConsumerData) Set added in v0.4.0

func (v *NullableConsumerData) Set(val *ConsumerData)

func (*NullableConsumerData) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerData) UnmarshalJSON(src []byte) error

func (*NullableConsumerData) Unset added in v0.4.0

func (v *NullableConsumerData) Unset()

type NullableConsumerDataAllOf added in v0.4.0

type NullableConsumerDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerDataAllOf added in v0.4.0

func NewNullableConsumerDataAllOf(val *ConsumerDataAllOf) *NullableConsumerDataAllOf

func (NullableConsumerDataAllOf) Get added in v0.4.0

func (NullableConsumerDataAllOf) IsSet added in v0.4.0

func (v NullableConsumerDataAllOf) IsSet() bool

func (NullableConsumerDataAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerDataAllOf) Set added in v0.4.0

func (*NullableConsumerDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerDataAllOf) Unset added in v0.4.0

func (v *NullableConsumerDataAllOf) Unset()

type NullableConsumerDataList added in v0.4.0

type NullableConsumerDataList struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerDataList added in v0.4.0

func NewNullableConsumerDataList(val *ConsumerDataList) *NullableConsumerDataList

func (NullableConsumerDataList) Get added in v0.4.0

func (NullableConsumerDataList) IsSet added in v0.4.0

func (v NullableConsumerDataList) IsSet() bool

func (NullableConsumerDataList) MarshalJSON added in v0.4.0

func (v NullableConsumerDataList) MarshalJSON() ([]byte, error)

func (*NullableConsumerDataList) Set added in v0.4.0

func (*NullableConsumerDataList) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerDataList) UnmarshalJSON(src []byte) error

func (*NullableConsumerDataList) Unset added in v0.4.0

func (v *NullableConsumerDataList) Unset()

type NullableConsumerDataListAllOf added in v0.4.0

type NullableConsumerDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerDataListAllOf added in v0.4.0

func NewNullableConsumerDataListAllOf(val *ConsumerDataListAllOf) *NullableConsumerDataListAllOf

func (NullableConsumerDataListAllOf) Get added in v0.4.0

func (NullableConsumerDataListAllOf) IsSet added in v0.4.0

func (NullableConsumerDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerDataListAllOf) Set added in v0.4.0

func (*NullableConsumerDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerDataListAllOf) Unset added in v0.4.0

func (v *NullableConsumerDataListAllOf) Unset()

type NullableConsumerGroupData added in v0.4.0

type NullableConsumerGroupData struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupData added in v0.4.0

func NewNullableConsumerGroupData(val *ConsumerGroupData) *NullableConsumerGroupData

func (NullableConsumerGroupData) Get added in v0.4.0

func (NullableConsumerGroupData) IsSet added in v0.4.0

func (v NullableConsumerGroupData) IsSet() bool

func (NullableConsumerGroupData) MarshalJSON added in v0.4.0

func (v NullableConsumerGroupData) MarshalJSON() ([]byte, error)

func (*NullableConsumerGroupData) Set added in v0.4.0

func (*NullableConsumerGroupData) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupData) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupData) Unset added in v0.4.0

func (v *NullableConsumerGroupData) Unset()

type NullableConsumerGroupDataAllOf added in v0.4.0

type NullableConsumerGroupDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupDataAllOf added in v0.4.0

func NewNullableConsumerGroupDataAllOf(val *ConsumerGroupDataAllOf) *NullableConsumerGroupDataAllOf

func (NullableConsumerGroupDataAllOf) Get added in v0.4.0

func (NullableConsumerGroupDataAllOf) IsSet added in v0.4.0

func (NullableConsumerGroupDataAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerGroupDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerGroupDataAllOf) Set added in v0.4.0

func (*NullableConsumerGroupDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupDataAllOf) Unset added in v0.4.0

func (v *NullableConsumerGroupDataAllOf) Unset()

type NullableConsumerGroupDataList added in v0.4.0

type NullableConsumerGroupDataList struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupDataList added in v0.4.0

func NewNullableConsumerGroupDataList(val *ConsumerGroupDataList) *NullableConsumerGroupDataList

func (NullableConsumerGroupDataList) Get added in v0.4.0

func (NullableConsumerGroupDataList) IsSet added in v0.4.0

func (NullableConsumerGroupDataList) MarshalJSON added in v0.4.0

func (v NullableConsumerGroupDataList) MarshalJSON() ([]byte, error)

func (*NullableConsumerGroupDataList) Set added in v0.4.0

func (*NullableConsumerGroupDataList) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupDataList) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupDataList) Unset added in v0.4.0

func (v *NullableConsumerGroupDataList) Unset()

type NullableConsumerGroupDataListAllOf added in v0.4.0

type NullableConsumerGroupDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupDataListAllOf added in v0.4.0

func NewNullableConsumerGroupDataListAllOf(val *ConsumerGroupDataListAllOf) *NullableConsumerGroupDataListAllOf

func (NullableConsumerGroupDataListAllOf) Get added in v0.4.0

func (NullableConsumerGroupDataListAllOf) IsSet added in v0.4.0

func (NullableConsumerGroupDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerGroupDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerGroupDataListAllOf) Set added in v0.4.0

func (*NullableConsumerGroupDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupDataListAllOf) Unset added in v0.4.0

type NullableConsumerGroupLagSummaryData added in v0.4.0

type NullableConsumerGroupLagSummaryData struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupLagSummaryData added in v0.4.0

func NewNullableConsumerGroupLagSummaryData(val *ConsumerGroupLagSummaryData) *NullableConsumerGroupLagSummaryData

func (NullableConsumerGroupLagSummaryData) Get added in v0.4.0

func (NullableConsumerGroupLagSummaryData) IsSet added in v0.4.0

func (NullableConsumerGroupLagSummaryData) MarshalJSON added in v0.4.0

func (v NullableConsumerGroupLagSummaryData) MarshalJSON() ([]byte, error)

func (*NullableConsumerGroupLagSummaryData) Set added in v0.4.0

func (*NullableConsumerGroupLagSummaryData) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupLagSummaryData) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupLagSummaryData) Unset added in v0.4.0

type NullableConsumerGroupLagSummaryDataAllOf added in v0.4.0

type NullableConsumerGroupLagSummaryDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerGroupLagSummaryDataAllOf added in v0.4.0

func NewNullableConsumerGroupLagSummaryDataAllOf(val *ConsumerGroupLagSummaryDataAllOf) *NullableConsumerGroupLagSummaryDataAllOf

func (NullableConsumerGroupLagSummaryDataAllOf) Get added in v0.4.0

func (NullableConsumerGroupLagSummaryDataAllOf) IsSet added in v0.4.0

func (NullableConsumerGroupLagSummaryDataAllOf) MarshalJSON added in v0.4.0

func (*NullableConsumerGroupLagSummaryDataAllOf) Set added in v0.4.0

func (*NullableConsumerGroupLagSummaryDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerGroupLagSummaryDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerGroupLagSummaryDataAllOf) Unset added in v0.4.0

type NullableConsumerLagData added in v0.4.0

type NullableConsumerLagData struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerLagData added in v0.4.0

func NewNullableConsumerLagData(val *ConsumerLagData) *NullableConsumerLagData

func (NullableConsumerLagData) Get added in v0.4.0

func (NullableConsumerLagData) IsSet added in v0.4.0

func (v NullableConsumerLagData) IsSet() bool

func (NullableConsumerLagData) MarshalJSON added in v0.4.0

func (v NullableConsumerLagData) MarshalJSON() ([]byte, error)

func (*NullableConsumerLagData) Set added in v0.4.0

func (*NullableConsumerLagData) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerLagData) UnmarshalJSON(src []byte) error

func (*NullableConsumerLagData) Unset added in v0.4.0

func (v *NullableConsumerLagData) Unset()

type NullableConsumerLagDataAllOf added in v0.4.0

type NullableConsumerLagDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerLagDataAllOf added in v0.4.0

func NewNullableConsumerLagDataAllOf(val *ConsumerLagDataAllOf) *NullableConsumerLagDataAllOf

func (NullableConsumerLagDataAllOf) Get added in v0.4.0

func (NullableConsumerLagDataAllOf) IsSet added in v0.4.0

func (NullableConsumerLagDataAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerLagDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerLagDataAllOf) Set added in v0.4.0

func (*NullableConsumerLagDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerLagDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerLagDataAllOf) Unset added in v0.4.0

func (v *NullableConsumerLagDataAllOf) Unset()

type NullableConsumerLagDataList added in v0.4.0

type NullableConsumerLagDataList struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerLagDataList added in v0.4.0

func NewNullableConsumerLagDataList(val *ConsumerLagDataList) *NullableConsumerLagDataList

func (NullableConsumerLagDataList) Get added in v0.4.0

func (NullableConsumerLagDataList) IsSet added in v0.4.0

func (NullableConsumerLagDataList) MarshalJSON added in v0.4.0

func (v NullableConsumerLagDataList) MarshalJSON() ([]byte, error)

func (*NullableConsumerLagDataList) Set added in v0.4.0

func (*NullableConsumerLagDataList) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerLagDataList) UnmarshalJSON(src []byte) error

func (*NullableConsumerLagDataList) Unset added in v0.4.0

func (v *NullableConsumerLagDataList) Unset()

type NullableConsumerLagDataListAllOf added in v0.4.0

type NullableConsumerLagDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableConsumerLagDataListAllOf added in v0.4.0

func NewNullableConsumerLagDataListAllOf(val *ConsumerLagDataListAllOf) *NullableConsumerLagDataListAllOf

func (NullableConsumerLagDataListAllOf) Get added in v0.4.0

func (NullableConsumerLagDataListAllOf) IsSet added in v0.4.0

func (NullableConsumerLagDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableConsumerLagDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableConsumerLagDataListAllOf) Set added in v0.4.0

func (*NullableConsumerLagDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableConsumerLagDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableConsumerLagDataListAllOf) Unset added in v0.4.0

type NullableCreateAclRequestData added in v0.4.0

type NullableCreateAclRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableCreateAclRequestData added in v0.4.0

func NewNullableCreateAclRequestData(val *CreateAclRequestData) *NullableCreateAclRequestData

func (NullableCreateAclRequestData) Get added in v0.4.0

func (NullableCreateAclRequestData) IsSet added in v0.4.0

func (NullableCreateAclRequestData) MarshalJSON added in v0.4.0

func (v NullableCreateAclRequestData) MarshalJSON() ([]byte, error)

func (*NullableCreateAclRequestData) Set added in v0.4.0

func (*NullableCreateAclRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableCreateAclRequestData) UnmarshalJSON(src []byte) error

func (*NullableCreateAclRequestData) Unset added in v0.4.0

func (v *NullableCreateAclRequestData) Unset()

type NullableCreateAclRequestDataList added in v0.10.0

type NullableCreateAclRequestDataList struct {
	// contains filtered or unexported fields
}

func NewNullableCreateAclRequestDataList added in v0.10.0

func NewNullableCreateAclRequestDataList(val *CreateAclRequestDataList) *NullableCreateAclRequestDataList

func (NullableCreateAclRequestDataList) Get added in v0.10.0

func (NullableCreateAclRequestDataList) IsSet added in v0.10.0

func (NullableCreateAclRequestDataList) MarshalJSON added in v0.10.0

func (v NullableCreateAclRequestDataList) MarshalJSON() ([]byte, error)

func (*NullableCreateAclRequestDataList) Set added in v0.10.0

func (*NullableCreateAclRequestDataList) UnmarshalJSON added in v0.10.0

func (v *NullableCreateAclRequestDataList) UnmarshalJSON(src []byte) error

func (*NullableCreateAclRequestDataList) Unset added in v0.10.0

type NullableCreateAclRequestDataListAllOf added in v0.10.0

type NullableCreateAclRequestDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableCreateAclRequestDataListAllOf added in v0.10.0

func NewNullableCreateAclRequestDataListAllOf(val *CreateAclRequestDataListAllOf) *NullableCreateAclRequestDataListAllOf

func (NullableCreateAclRequestDataListAllOf) Get added in v0.10.0

func (NullableCreateAclRequestDataListAllOf) IsSet added in v0.10.0

func (NullableCreateAclRequestDataListAllOf) MarshalJSON added in v0.10.0

func (v NullableCreateAclRequestDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableCreateAclRequestDataListAllOf) Set added in v0.10.0

func (*NullableCreateAclRequestDataListAllOf) UnmarshalJSON added in v0.10.0

func (v *NullableCreateAclRequestDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableCreateAclRequestDataListAllOf) Unset added in v0.10.0

type NullableCreateLinkRequestData added in v0.4.0

type NullableCreateLinkRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableCreateLinkRequestData added in v0.4.0

func NewNullableCreateLinkRequestData(val *CreateLinkRequestData) *NullableCreateLinkRequestData

func (NullableCreateLinkRequestData) Get added in v0.4.0

func (NullableCreateLinkRequestData) IsSet added in v0.4.0

func (NullableCreateLinkRequestData) MarshalJSON added in v0.4.0

func (v NullableCreateLinkRequestData) MarshalJSON() ([]byte, error)

func (*NullableCreateLinkRequestData) Set added in v0.4.0

func (*NullableCreateLinkRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableCreateLinkRequestData) UnmarshalJSON(src []byte) error

func (*NullableCreateLinkRequestData) Unset added in v0.4.0

func (v *NullableCreateLinkRequestData) Unset()

type NullableCreateMirrorTopicRequestData added in v0.4.0

type NullableCreateMirrorTopicRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableCreateMirrorTopicRequestData added in v0.4.0

func NewNullableCreateMirrorTopicRequestData(val *CreateMirrorTopicRequestData) *NullableCreateMirrorTopicRequestData

func (NullableCreateMirrorTopicRequestData) Get added in v0.4.0

func (NullableCreateMirrorTopicRequestData) IsSet added in v0.4.0

func (NullableCreateMirrorTopicRequestData) MarshalJSON added in v0.4.0

func (v NullableCreateMirrorTopicRequestData) MarshalJSON() ([]byte, error)

func (*NullableCreateMirrorTopicRequestData) Set added in v0.4.0

func (*NullableCreateMirrorTopicRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableCreateMirrorTopicRequestData) UnmarshalJSON(src []byte) error

func (*NullableCreateMirrorTopicRequestData) Unset added in v0.4.0

type NullableCreateTopicRequestData added in v0.4.0

type NullableCreateTopicRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableCreateTopicRequestData added in v0.4.0

func NewNullableCreateTopicRequestData(val *CreateTopicRequestData) *NullableCreateTopicRequestData

func (NullableCreateTopicRequestData) Get added in v0.4.0

func (NullableCreateTopicRequestData) IsSet added in v0.4.0

func (NullableCreateTopicRequestData) MarshalJSON added in v0.4.0

func (v NullableCreateTopicRequestData) MarshalJSON() ([]byte, error)

func (*NullableCreateTopicRequestData) Set added in v0.4.0

func (*NullableCreateTopicRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableCreateTopicRequestData) UnmarshalJSON(src []byte) error

func (*NullableCreateTopicRequestData) Unset added in v0.4.0

func (v *NullableCreateTopicRequestData) Unset()

type NullableCreateTopicRequestDataConfigs added in v0.4.0

type NullableCreateTopicRequestDataConfigs struct {
	// contains filtered or unexported fields
}

func NewNullableCreateTopicRequestDataConfigs added in v0.4.0

func NewNullableCreateTopicRequestDataConfigs(val *CreateTopicRequestDataConfigs) *NullableCreateTopicRequestDataConfigs

func (NullableCreateTopicRequestDataConfigs) Get added in v0.4.0

func (NullableCreateTopicRequestDataConfigs) IsSet added in v0.4.0

func (NullableCreateTopicRequestDataConfigs) MarshalJSON added in v0.4.0

func (v NullableCreateTopicRequestDataConfigs) MarshalJSON() ([]byte, error)

func (*NullableCreateTopicRequestDataConfigs) Set added in v0.4.0

func (*NullableCreateTopicRequestDataConfigs) UnmarshalJSON added in v0.4.0

func (v *NullableCreateTopicRequestDataConfigs) UnmarshalJSON(src []byte) error

func (*NullableCreateTopicRequestDataConfigs) Unset added in v0.4.0

type NullableError added in v0.4.0

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError added in v0.4.0

func NewNullableError(val *Error) *NullableError

func (NullableError) Get added in v0.4.0

func (v NullableError) Get() *Error

func (NullableError) IsSet added in v0.4.0

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON added in v0.4.0

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set added in v0.4.0

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON added in v0.4.0

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset added in v0.4.0

func (v *NullableError) Unset()

type NullableFloat32 added in v0.4.0

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 added in v0.4.0

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get added in v0.4.0

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet added in v0.4.0

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON added in v0.4.0

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set added in v0.4.0

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON added in v0.4.0

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset added in v0.4.0

func (v *NullableFloat32) Unset()

type NullableFloat64 added in v0.4.0

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 added in v0.4.0

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get added in v0.4.0

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet added in v0.4.0

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON added in v0.4.0

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set added in v0.4.0

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON added in v0.4.0

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset added in v0.4.0

func (v *NullableFloat64) Unset()

type NullableInlineResponse200 added in v0.4.0

type NullableInlineResponse200 struct {
	// contains filtered or unexported fields
}

func NewNullableInlineResponse200 added in v0.4.0

func NewNullableInlineResponse200(val *InlineResponse200) *NullableInlineResponse200

func (NullableInlineResponse200) Get added in v0.4.0

func (NullableInlineResponse200) IsSet added in v0.4.0

func (v NullableInlineResponse200) IsSet() bool

func (NullableInlineResponse200) MarshalJSON added in v0.4.0

func (v NullableInlineResponse200) MarshalJSON() ([]byte, error)

func (*NullableInlineResponse200) Set added in v0.4.0

func (*NullableInlineResponse200) UnmarshalJSON added in v0.4.0

func (v *NullableInlineResponse200) UnmarshalJSON(src []byte) error

func (*NullableInlineResponse200) Unset added in v0.4.0

func (v *NullableInlineResponse200) Unset()

type NullableInt added in v0.4.0

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt added in v0.4.0

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get added in v0.4.0

func (v NullableInt) Get() *int

func (NullableInt) IsSet added in v0.4.0

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON added in v0.4.0

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set added in v0.4.0

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON added in v0.4.0

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset added in v0.4.0

func (v *NullableInt) Unset()

type NullableInt32 added in v0.4.0

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 added in v0.4.0

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get added in v0.4.0

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet added in v0.4.0

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON added in v0.4.0

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set added in v0.4.0

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON added in v0.4.0

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset added in v0.4.0

func (v *NullableInt32) Unset()

type NullableInt64 added in v0.4.0

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 added in v0.4.0

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get added in v0.4.0

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet added in v0.4.0

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON added in v0.4.0

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set added in v0.4.0

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON added in v0.4.0

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset added in v0.4.0

func (v *NullableInt64) Unset()

type NullableLinkTask added in v0.18.0

type NullableLinkTask struct {
	// contains filtered or unexported fields
}

func NewNullableLinkTask added in v0.18.0

func NewNullableLinkTask(val *LinkTask) *NullableLinkTask

func (NullableLinkTask) Get added in v0.18.0

func (v NullableLinkTask) Get() *LinkTask

func (NullableLinkTask) IsSet added in v0.18.0

func (v NullableLinkTask) IsSet() bool

func (NullableLinkTask) MarshalJSON added in v0.18.0

func (v NullableLinkTask) MarshalJSON() ([]byte, error)

func (*NullableLinkTask) Set added in v0.18.0

func (v *NullableLinkTask) Set(val *LinkTask)

func (*NullableLinkTask) UnmarshalJSON added in v0.18.0

func (v *NullableLinkTask) UnmarshalJSON(src []byte) error

func (*NullableLinkTask) Unset added in v0.18.0

func (v *NullableLinkTask) Unset()

type NullableLinkTaskError added in v0.18.0

type NullableLinkTaskError struct {
	// contains filtered or unexported fields
}

func NewNullableLinkTaskError added in v0.18.0

func NewNullableLinkTaskError(val *LinkTaskError) *NullableLinkTaskError

func (NullableLinkTaskError) Get added in v0.18.0

func (NullableLinkTaskError) IsSet added in v0.18.0

func (v NullableLinkTaskError) IsSet() bool

func (NullableLinkTaskError) MarshalJSON added in v0.18.0

func (v NullableLinkTaskError) MarshalJSON() ([]byte, error)

func (*NullableLinkTaskError) Set added in v0.18.0

func (v *NullableLinkTaskError) Set(val *LinkTaskError)

func (*NullableLinkTaskError) UnmarshalJSON added in v0.18.0

func (v *NullableLinkTaskError) UnmarshalJSON(src []byte) error

func (*NullableLinkTaskError) Unset added in v0.18.0

func (v *NullableLinkTaskError) Unset()

type NullableListLinkConfigsResponseData added in v0.4.0

type NullableListLinkConfigsResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableListLinkConfigsResponseData added in v0.4.0

func NewNullableListLinkConfigsResponseData(val *ListLinkConfigsResponseData) *NullableListLinkConfigsResponseData

func (NullableListLinkConfigsResponseData) Get added in v0.4.0

func (NullableListLinkConfigsResponseData) IsSet added in v0.4.0

func (NullableListLinkConfigsResponseData) MarshalJSON added in v0.4.0

func (v NullableListLinkConfigsResponseData) MarshalJSON() ([]byte, error)

func (*NullableListLinkConfigsResponseData) Set added in v0.4.0

func (*NullableListLinkConfigsResponseData) UnmarshalJSON added in v0.4.0

func (v *NullableListLinkConfigsResponseData) UnmarshalJSON(src []byte) error

func (*NullableListLinkConfigsResponseData) Unset added in v0.4.0

type NullableListLinkConfigsResponseDataAllOf added in v0.4.0

type NullableListLinkConfigsResponseDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableListLinkConfigsResponseDataAllOf added in v0.4.0

func NewNullableListLinkConfigsResponseDataAllOf(val *ListLinkConfigsResponseDataAllOf) *NullableListLinkConfigsResponseDataAllOf

func (NullableListLinkConfigsResponseDataAllOf) Get added in v0.4.0

func (NullableListLinkConfigsResponseDataAllOf) IsSet added in v0.4.0

func (NullableListLinkConfigsResponseDataAllOf) MarshalJSON added in v0.4.0

func (*NullableListLinkConfigsResponseDataAllOf) Set added in v0.4.0

func (*NullableListLinkConfigsResponseDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableListLinkConfigsResponseDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableListLinkConfigsResponseDataAllOf) Unset added in v0.4.0

type NullableListLinkConfigsResponseDataList added in v0.4.0

type NullableListLinkConfigsResponseDataList struct {
	// contains filtered or unexported fields
}

func NewNullableListLinkConfigsResponseDataList added in v0.4.0

func NewNullableListLinkConfigsResponseDataList(val *ListLinkConfigsResponseDataList) *NullableListLinkConfigsResponseDataList

func (NullableListLinkConfigsResponseDataList) Get added in v0.4.0

func (NullableListLinkConfigsResponseDataList) IsSet added in v0.4.0

func (NullableListLinkConfigsResponseDataList) MarshalJSON added in v0.4.0

func (v NullableListLinkConfigsResponseDataList) MarshalJSON() ([]byte, error)

func (*NullableListLinkConfigsResponseDataList) Set added in v0.4.0

func (*NullableListLinkConfigsResponseDataList) UnmarshalJSON added in v0.4.0

func (v *NullableListLinkConfigsResponseDataList) UnmarshalJSON(src []byte) error

func (*NullableListLinkConfigsResponseDataList) Unset added in v0.4.0

type NullableListLinkConfigsResponseDataListAllOf added in v0.4.0

type NullableListLinkConfigsResponseDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableListLinkConfigsResponseDataListAllOf added in v0.4.0

func NewNullableListLinkConfigsResponseDataListAllOf(val *ListLinkConfigsResponseDataListAllOf) *NullableListLinkConfigsResponseDataListAllOf

func (NullableListLinkConfigsResponseDataListAllOf) Get added in v0.4.0

func (NullableListLinkConfigsResponseDataListAllOf) IsSet added in v0.4.0

func (NullableListLinkConfigsResponseDataListAllOf) MarshalJSON added in v0.4.0

func (*NullableListLinkConfigsResponseDataListAllOf) Set added in v0.4.0

func (*NullableListLinkConfigsResponseDataListAllOf) UnmarshalJSON added in v0.4.0

func (*NullableListLinkConfigsResponseDataListAllOf) Unset added in v0.4.0

type NullableListLinksResponseData added in v0.4.0

type NullableListLinksResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableListLinksResponseData added in v0.4.0

func NewNullableListLinksResponseData(val *ListLinksResponseData) *NullableListLinksResponseData

func (NullableListLinksResponseData) Get added in v0.4.0

func (NullableListLinksResponseData) IsSet added in v0.4.0

func (NullableListLinksResponseData) MarshalJSON added in v0.4.0

func (v NullableListLinksResponseData) MarshalJSON() ([]byte, error)

func (*NullableListLinksResponseData) Set added in v0.4.0

func (*NullableListLinksResponseData) UnmarshalJSON added in v0.4.0

func (v *NullableListLinksResponseData) UnmarshalJSON(src []byte) error

func (*NullableListLinksResponseData) Unset added in v0.4.0

func (v *NullableListLinksResponseData) Unset()

type NullableListLinksResponseDataAllOf added in v0.4.0

type NullableListLinksResponseDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableListLinksResponseDataAllOf added in v0.4.0

func NewNullableListLinksResponseDataAllOf(val *ListLinksResponseDataAllOf) *NullableListLinksResponseDataAllOf

func (NullableListLinksResponseDataAllOf) Get added in v0.4.0

func (NullableListLinksResponseDataAllOf) IsSet added in v0.4.0

func (NullableListLinksResponseDataAllOf) MarshalJSON added in v0.4.0

func (v NullableListLinksResponseDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableListLinksResponseDataAllOf) Set added in v0.4.0

func (*NullableListLinksResponseDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableListLinksResponseDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableListLinksResponseDataAllOf) Unset added in v0.4.0

type NullableListLinksResponseDataList added in v0.4.0

type NullableListLinksResponseDataList struct {
	// contains filtered or unexported fields
}

func NewNullableListLinksResponseDataList added in v0.4.0

func NewNullableListLinksResponseDataList(val *ListLinksResponseDataList) *NullableListLinksResponseDataList

func (NullableListLinksResponseDataList) Get added in v0.4.0

func (NullableListLinksResponseDataList) IsSet added in v0.4.0

func (NullableListLinksResponseDataList) MarshalJSON added in v0.4.0

func (v NullableListLinksResponseDataList) MarshalJSON() ([]byte, error)

func (*NullableListLinksResponseDataList) Set added in v0.4.0

func (*NullableListLinksResponseDataList) UnmarshalJSON added in v0.4.0

func (v *NullableListLinksResponseDataList) UnmarshalJSON(src []byte) error

func (*NullableListLinksResponseDataList) Unset added in v0.4.0

type NullableListLinksResponseDataListAllOf added in v0.4.0

type NullableListLinksResponseDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableListLinksResponseDataListAllOf added in v0.4.0

func NewNullableListLinksResponseDataListAllOf(val *ListLinksResponseDataListAllOf) *NullableListLinksResponseDataListAllOf

func (NullableListLinksResponseDataListAllOf) Get added in v0.4.0

func (NullableListLinksResponseDataListAllOf) IsSet added in v0.4.0

func (NullableListLinksResponseDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableListLinksResponseDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableListLinksResponseDataListAllOf) Set added in v0.4.0

func (*NullableListLinksResponseDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableListLinksResponseDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableListLinksResponseDataListAllOf) Unset added in v0.4.0

type NullableListMirrorTopicsResponseData added in v0.4.0

type NullableListMirrorTopicsResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableListMirrorTopicsResponseData added in v0.4.0

func NewNullableListMirrorTopicsResponseData(val *ListMirrorTopicsResponseData) *NullableListMirrorTopicsResponseData

func (NullableListMirrorTopicsResponseData) Get added in v0.4.0

func (NullableListMirrorTopicsResponseData) IsSet added in v0.4.0

func (NullableListMirrorTopicsResponseData) MarshalJSON added in v0.4.0

func (v NullableListMirrorTopicsResponseData) MarshalJSON() ([]byte, error)

func (*NullableListMirrorTopicsResponseData) Set added in v0.4.0

func (*NullableListMirrorTopicsResponseData) UnmarshalJSON added in v0.4.0

func (v *NullableListMirrorTopicsResponseData) UnmarshalJSON(src []byte) error

func (*NullableListMirrorTopicsResponseData) Unset added in v0.4.0

type NullableListMirrorTopicsResponseDataAllOf added in v0.4.0

type NullableListMirrorTopicsResponseDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableListMirrorTopicsResponseDataAllOf added in v0.4.0

func NewNullableListMirrorTopicsResponseDataAllOf(val *ListMirrorTopicsResponseDataAllOf) *NullableListMirrorTopicsResponseDataAllOf

func (NullableListMirrorTopicsResponseDataAllOf) Get added in v0.4.0

func (NullableListMirrorTopicsResponseDataAllOf) IsSet added in v0.4.0

func (NullableListMirrorTopicsResponseDataAllOf) MarshalJSON added in v0.4.0

func (*NullableListMirrorTopicsResponseDataAllOf) Set added in v0.4.0

func (*NullableListMirrorTopicsResponseDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableListMirrorTopicsResponseDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableListMirrorTopicsResponseDataAllOf) Unset added in v0.4.0

type NullableListMirrorTopicsResponseDataList added in v0.4.0

type NullableListMirrorTopicsResponseDataList struct {
	// contains filtered or unexported fields
}

func NewNullableListMirrorTopicsResponseDataList added in v0.4.0

func NewNullableListMirrorTopicsResponseDataList(val *ListMirrorTopicsResponseDataList) *NullableListMirrorTopicsResponseDataList

func (NullableListMirrorTopicsResponseDataList) Get added in v0.4.0

func (NullableListMirrorTopicsResponseDataList) IsSet added in v0.4.0

func (NullableListMirrorTopicsResponseDataList) MarshalJSON added in v0.4.0

func (*NullableListMirrorTopicsResponseDataList) Set added in v0.4.0

func (*NullableListMirrorTopicsResponseDataList) UnmarshalJSON added in v0.4.0

func (v *NullableListMirrorTopicsResponseDataList) UnmarshalJSON(src []byte) error

func (*NullableListMirrorTopicsResponseDataList) Unset added in v0.4.0

type NullableListMirrorTopicsResponseDataListAllOf added in v0.4.0

type NullableListMirrorTopicsResponseDataListAllOf struct {
	// contains filtered or unexported fields
}

func (NullableListMirrorTopicsResponseDataListAllOf) Get added in v0.4.0

func (NullableListMirrorTopicsResponseDataListAllOf) IsSet added in v0.4.0

func (NullableListMirrorTopicsResponseDataListAllOf) MarshalJSON added in v0.4.0

func (*NullableListMirrorTopicsResponseDataListAllOf) Set added in v0.4.0

func (*NullableListMirrorTopicsResponseDataListAllOf) UnmarshalJSON added in v0.4.0

func (*NullableListMirrorTopicsResponseDataListAllOf) Unset added in v0.4.0

type NullableMirrorLag added in v0.4.0

type NullableMirrorLag struct {
	// contains filtered or unexported fields
}

func NewNullableMirrorLag added in v0.4.0

func NewNullableMirrorLag(val *MirrorLag) *NullableMirrorLag

func (NullableMirrorLag) Get added in v0.4.0

func (v NullableMirrorLag) Get() *MirrorLag

func (NullableMirrorLag) IsSet added in v0.4.0

func (v NullableMirrorLag) IsSet() bool

func (NullableMirrorLag) MarshalJSON added in v0.4.0

func (v NullableMirrorLag) MarshalJSON() ([]byte, error)

func (*NullableMirrorLag) Set added in v0.4.0

func (v *NullableMirrorLag) Set(val *MirrorLag)

func (*NullableMirrorLag) UnmarshalJSON added in v0.4.0

func (v *NullableMirrorLag) UnmarshalJSON(src []byte) error

func (*NullableMirrorLag) Unset added in v0.4.0

func (v *NullableMirrorLag) Unset()

type NullableMirrorLags added in v0.4.0

type NullableMirrorLags struct {
	// contains filtered or unexported fields
}

func NewNullableMirrorLags added in v0.4.0

func NewNullableMirrorLags(val *MirrorLags) *NullableMirrorLags

func (NullableMirrorLags) Get added in v0.4.0

func (v NullableMirrorLags) Get() *MirrorLags

func (NullableMirrorLags) IsSet added in v0.4.0

func (v NullableMirrorLags) IsSet() bool

func (NullableMirrorLags) MarshalJSON added in v0.4.0

func (v NullableMirrorLags) MarshalJSON() ([]byte, error)

func (*NullableMirrorLags) Set added in v0.4.0

func (v *NullableMirrorLags) Set(val *MirrorLags)

func (*NullableMirrorLags) UnmarshalJSON added in v0.4.0

func (v *NullableMirrorLags) UnmarshalJSON(src []byte) error

func (*NullableMirrorLags) Unset added in v0.4.0

func (v *NullableMirrorLags) Unset()

type NullableMirrorTopicStatus added in v0.4.0

type NullableMirrorTopicStatus struct {
	// contains filtered or unexported fields
}

func NewNullableMirrorTopicStatus added in v0.4.0

func NewNullableMirrorTopicStatus(val *MirrorTopicStatus) *NullableMirrorTopicStatus

func (NullableMirrorTopicStatus) Get added in v0.4.0

func (NullableMirrorTopicStatus) IsSet added in v0.4.0

func (v NullableMirrorTopicStatus) IsSet() bool

func (NullableMirrorTopicStatus) MarshalJSON added in v0.4.0

func (v NullableMirrorTopicStatus) MarshalJSON() ([]byte, error)

func (*NullableMirrorTopicStatus) Set added in v0.4.0

func (*NullableMirrorTopicStatus) UnmarshalJSON added in v0.4.0

func (v *NullableMirrorTopicStatus) UnmarshalJSON(src []byte) error

func (*NullableMirrorTopicStatus) Unset added in v0.4.0

func (v *NullableMirrorTopicStatus) Unset()

type NullablePartitionData added in v0.4.0

type NullablePartitionData struct {
	// contains filtered or unexported fields
}

func NewNullablePartitionData added in v0.4.0

func NewNullablePartitionData(val *PartitionData) *NullablePartitionData

func (NullablePartitionData) Get added in v0.4.0

func (NullablePartitionData) IsSet added in v0.4.0

func (v NullablePartitionData) IsSet() bool

func (NullablePartitionData) MarshalJSON added in v0.4.0

func (v NullablePartitionData) MarshalJSON() ([]byte, error)

func (*NullablePartitionData) Set added in v0.4.0

func (v *NullablePartitionData) Set(val *PartitionData)

func (*NullablePartitionData) UnmarshalJSON added in v0.4.0

func (v *NullablePartitionData) UnmarshalJSON(src []byte) error

func (*NullablePartitionData) Unset added in v0.4.0

func (v *NullablePartitionData) Unset()

type NullablePartitionDataAllOf added in v0.4.0

type NullablePartitionDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePartitionDataAllOf added in v0.4.0

func NewNullablePartitionDataAllOf(val *PartitionDataAllOf) *NullablePartitionDataAllOf

func (NullablePartitionDataAllOf) Get added in v0.4.0

func (NullablePartitionDataAllOf) IsSet added in v0.4.0

func (v NullablePartitionDataAllOf) IsSet() bool

func (NullablePartitionDataAllOf) MarshalJSON added in v0.4.0

func (v NullablePartitionDataAllOf) MarshalJSON() ([]byte, error)

func (*NullablePartitionDataAllOf) Set added in v0.4.0

func (*NullablePartitionDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullablePartitionDataAllOf) UnmarshalJSON(src []byte) error

func (*NullablePartitionDataAllOf) Unset added in v0.4.0

func (v *NullablePartitionDataAllOf) Unset()

type NullablePartitionDataList added in v0.4.0

type NullablePartitionDataList struct {
	// contains filtered or unexported fields
}

func NewNullablePartitionDataList added in v0.4.0

func NewNullablePartitionDataList(val *PartitionDataList) *NullablePartitionDataList

func (NullablePartitionDataList) Get added in v0.4.0

func (NullablePartitionDataList) IsSet added in v0.4.0

func (v NullablePartitionDataList) IsSet() bool

func (NullablePartitionDataList) MarshalJSON added in v0.4.0

func (v NullablePartitionDataList) MarshalJSON() ([]byte, error)

func (*NullablePartitionDataList) Set added in v0.4.0

func (*NullablePartitionDataList) UnmarshalJSON added in v0.4.0

func (v *NullablePartitionDataList) UnmarshalJSON(src []byte) error

func (*NullablePartitionDataList) Unset added in v0.4.0

func (v *NullablePartitionDataList) Unset()

type NullablePartitionDataListAllOf added in v0.4.0

type NullablePartitionDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePartitionDataListAllOf added in v0.4.0

func NewNullablePartitionDataListAllOf(val *PartitionDataListAllOf) *NullablePartitionDataListAllOf

func (NullablePartitionDataListAllOf) Get added in v0.4.0

func (NullablePartitionDataListAllOf) IsSet added in v0.4.0

func (NullablePartitionDataListAllOf) MarshalJSON added in v0.4.0

func (v NullablePartitionDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullablePartitionDataListAllOf) Set added in v0.4.0

func (*NullablePartitionDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullablePartitionDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullablePartitionDataListAllOf) Unset added in v0.4.0

func (v *NullablePartitionDataListAllOf) Unset()

type NullableProduceRequest added in v0.4.0

type NullableProduceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableProduceRequest added in v0.4.0

func NewNullableProduceRequest(val *ProduceRequest) *NullableProduceRequest

func (NullableProduceRequest) Get added in v0.4.0

func (NullableProduceRequest) IsSet added in v0.4.0

func (v NullableProduceRequest) IsSet() bool

func (NullableProduceRequest) MarshalJSON added in v0.4.0

func (v NullableProduceRequest) MarshalJSON() ([]byte, error)

func (*NullableProduceRequest) Set added in v0.4.0

func (*NullableProduceRequest) UnmarshalJSON added in v0.4.0

func (v *NullableProduceRequest) UnmarshalJSON(src []byte) error

func (*NullableProduceRequest) Unset added in v0.4.0

func (v *NullableProduceRequest) Unset()

type NullableProduceRequestData added in v0.4.0

type NullableProduceRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableProduceRequestData added in v0.4.0

func NewNullableProduceRequestData(val *ProduceRequestData) *NullableProduceRequestData

func (NullableProduceRequestData) Get added in v0.4.0

func (NullableProduceRequestData) IsSet added in v0.4.0

func (v NullableProduceRequestData) IsSet() bool

func (NullableProduceRequestData) MarshalJSON added in v0.4.0

func (v NullableProduceRequestData) MarshalJSON() ([]byte, error)

func (*NullableProduceRequestData) Set added in v0.4.0

func (*NullableProduceRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableProduceRequestData) UnmarshalJSON(src []byte) error

func (*NullableProduceRequestData) Unset added in v0.4.0

func (v *NullableProduceRequestData) Unset()

type NullableProduceRequestHeader added in v0.4.0

type NullableProduceRequestHeader struct {
	// contains filtered or unexported fields
}

func NewNullableProduceRequestHeader added in v0.4.0

func NewNullableProduceRequestHeader(val *ProduceRequestHeader) *NullableProduceRequestHeader

func (NullableProduceRequestHeader) Get added in v0.4.0

func (NullableProduceRequestHeader) IsSet added in v0.4.0

func (NullableProduceRequestHeader) MarshalJSON added in v0.4.0

func (v NullableProduceRequestHeader) MarshalJSON() ([]byte, error)

func (*NullableProduceRequestHeader) Set added in v0.4.0

func (*NullableProduceRequestHeader) UnmarshalJSON added in v0.4.0

func (v *NullableProduceRequestHeader) UnmarshalJSON(src []byte) error

func (*NullableProduceRequestHeader) Unset added in v0.4.0

func (v *NullableProduceRequestHeader) Unset()

type NullableProduceResponse added in v0.4.0

type NullableProduceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableProduceResponse added in v0.4.0

func NewNullableProduceResponse(val *ProduceResponse) *NullableProduceResponse

func (NullableProduceResponse) Get added in v0.4.0

func (NullableProduceResponse) IsSet added in v0.4.0

func (v NullableProduceResponse) IsSet() bool

func (NullableProduceResponse) MarshalJSON added in v0.4.0

func (v NullableProduceResponse) MarshalJSON() ([]byte, error)

func (*NullableProduceResponse) Set added in v0.4.0

func (*NullableProduceResponse) UnmarshalJSON added in v0.4.0

func (v *NullableProduceResponse) UnmarshalJSON(src []byte) error

func (*NullableProduceResponse) Unset added in v0.4.0

func (v *NullableProduceResponse) Unset()

type NullableProduceResponseData added in v0.4.0

type NullableProduceResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableProduceResponseData added in v0.4.0

func NewNullableProduceResponseData(val *ProduceResponseData) *NullableProduceResponseData

func (NullableProduceResponseData) Get added in v0.4.0

func (NullableProduceResponseData) IsSet added in v0.4.0

func (NullableProduceResponseData) MarshalJSON added in v0.4.0

func (v NullableProduceResponseData) MarshalJSON() ([]byte, error)

func (*NullableProduceResponseData) Set added in v0.4.0

func (*NullableProduceResponseData) UnmarshalJSON added in v0.4.0

func (v *NullableProduceResponseData) UnmarshalJSON(src []byte) error

func (*NullableProduceResponseData) Unset added in v0.4.0

func (v *NullableProduceResponseData) Unset()

type NullableReassignmentData added in v0.4.0

type NullableReassignmentData struct {
	// contains filtered or unexported fields
}

func NewNullableReassignmentData added in v0.4.0

func NewNullableReassignmentData(val *ReassignmentData) *NullableReassignmentData

func (NullableReassignmentData) Get added in v0.4.0

func (NullableReassignmentData) IsSet added in v0.4.0

func (v NullableReassignmentData) IsSet() bool

func (NullableReassignmentData) MarshalJSON added in v0.4.0

func (v NullableReassignmentData) MarshalJSON() ([]byte, error)

func (*NullableReassignmentData) Set added in v0.4.0

func (*NullableReassignmentData) UnmarshalJSON added in v0.4.0

func (v *NullableReassignmentData) UnmarshalJSON(src []byte) error

func (*NullableReassignmentData) Unset added in v0.4.0

func (v *NullableReassignmentData) Unset()

type NullableReassignmentDataAllOf added in v0.4.0

type NullableReassignmentDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReassignmentDataAllOf added in v0.4.0

func NewNullableReassignmentDataAllOf(val *ReassignmentDataAllOf) *NullableReassignmentDataAllOf

func (NullableReassignmentDataAllOf) Get added in v0.4.0

func (NullableReassignmentDataAllOf) IsSet added in v0.4.0

func (NullableReassignmentDataAllOf) MarshalJSON added in v0.4.0

func (v NullableReassignmentDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableReassignmentDataAllOf) Set added in v0.4.0

func (*NullableReassignmentDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReassignmentDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableReassignmentDataAllOf) Unset added in v0.4.0

func (v *NullableReassignmentDataAllOf) Unset()

type NullableReassignmentDataList added in v0.4.0

type NullableReassignmentDataList struct {
	// contains filtered or unexported fields
}

func NewNullableReassignmentDataList added in v0.4.0

func NewNullableReassignmentDataList(val *ReassignmentDataList) *NullableReassignmentDataList

func (NullableReassignmentDataList) Get added in v0.4.0

func (NullableReassignmentDataList) IsSet added in v0.4.0

func (NullableReassignmentDataList) MarshalJSON added in v0.4.0

func (v NullableReassignmentDataList) MarshalJSON() ([]byte, error)

func (*NullableReassignmentDataList) Set added in v0.4.0

func (*NullableReassignmentDataList) UnmarshalJSON added in v0.4.0

func (v *NullableReassignmentDataList) UnmarshalJSON(src []byte) error

func (*NullableReassignmentDataList) Unset added in v0.4.0

func (v *NullableReassignmentDataList) Unset()

type NullableReassignmentDataListAllOf added in v0.4.0

type NullableReassignmentDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReassignmentDataListAllOf added in v0.4.0

func NewNullableReassignmentDataListAllOf(val *ReassignmentDataListAllOf) *NullableReassignmentDataListAllOf

func (NullableReassignmentDataListAllOf) Get added in v0.4.0

func (NullableReassignmentDataListAllOf) IsSet added in v0.4.0

func (NullableReassignmentDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableReassignmentDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableReassignmentDataListAllOf) Set added in v0.4.0

func (*NullableReassignmentDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReassignmentDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableReassignmentDataListAllOf) Unset added in v0.4.0

type NullableRelationship added in v0.4.0

type NullableRelationship struct {
	// contains filtered or unexported fields
}

func NewNullableRelationship added in v0.4.0

func NewNullableRelationship(val *Relationship) *NullableRelationship

func (NullableRelationship) Get added in v0.4.0

func (NullableRelationship) IsSet added in v0.4.0

func (v NullableRelationship) IsSet() bool

func (NullableRelationship) MarshalJSON added in v0.4.0

func (v NullableRelationship) MarshalJSON() ([]byte, error)

func (*NullableRelationship) Set added in v0.4.0

func (v *NullableRelationship) Set(val *Relationship)

func (*NullableRelationship) UnmarshalJSON added in v0.4.0

func (v *NullableRelationship) UnmarshalJSON(src []byte) error

func (*NullableRelationship) Unset added in v0.4.0

func (v *NullableRelationship) Unset()

type NullableRemoveBrokerTaskData added in v0.4.0

type NullableRemoveBrokerTaskData struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveBrokerTaskData added in v0.4.0

func NewNullableRemoveBrokerTaskData(val *RemoveBrokerTaskData) *NullableRemoveBrokerTaskData

func (NullableRemoveBrokerTaskData) Get added in v0.4.0

func (NullableRemoveBrokerTaskData) IsSet added in v0.4.0

func (NullableRemoveBrokerTaskData) MarshalJSON added in v0.4.0

func (v NullableRemoveBrokerTaskData) MarshalJSON() ([]byte, error)

func (*NullableRemoveBrokerTaskData) Set added in v0.4.0

func (*NullableRemoveBrokerTaskData) UnmarshalJSON added in v0.4.0

func (v *NullableRemoveBrokerTaskData) UnmarshalJSON(src []byte) error

func (*NullableRemoveBrokerTaskData) Unset added in v0.4.0

func (v *NullableRemoveBrokerTaskData) Unset()

type NullableRemoveBrokerTaskDataAllOf added in v0.4.0

type NullableRemoveBrokerTaskDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveBrokerTaskDataAllOf added in v0.4.0

func NewNullableRemoveBrokerTaskDataAllOf(val *RemoveBrokerTaskDataAllOf) *NullableRemoveBrokerTaskDataAllOf

func (NullableRemoveBrokerTaskDataAllOf) Get added in v0.4.0

func (NullableRemoveBrokerTaskDataAllOf) IsSet added in v0.4.0

func (NullableRemoveBrokerTaskDataAllOf) MarshalJSON added in v0.4.0

func (v NullableRemoveBrokerTaskDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableRemoveBrokerTaskDataAllOf) Set added in v0.4.0

func (*NullableRemoveBrokerTaskDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableRemoveBrokerTaskDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableRemoveBrokerTaskDataAllOf) Unset added in v0.4.0

type NullableRemoveBrokerTaskDataList added in v0.4.0

type NullableRemoveBrokerTaskDataList struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveBrokerTaskDataList added in v0.4.0

func NewNullableRemoveBrokerTaskDataList(val *RemoveBrokerTaskDataList) *NullableRemoveBrokerTaskDataList

func (NullableRemoveBrokerTaskDataList) Get added in v0.4.0

func (NullableRemoveBrokerTaskDataList) IsSet added in v0.4.0

func (NullableRemoveBrokerTaskDataList) MarshalJSON added in v0.4.0

func (v NullableRemoveBrokerTaskDataList) MarshalJSON() ([]byte, error)

func (*NullableRemoveBrokerTaskDataList) Set added in v0.4.0

func (*NullableRemoveBrokerTaskDataList) UnmarshalJSON added in v0.4.0

func (v *NullableRemoveBrokerTaskDataList) UnmarshalJSON(src []byte) error

func (*NullableRemoveBrokerTaskDataList) Unset added in v0.4.0

type NullableRemoveBrokerTaskDataListAllOf added in v0.4.0

type NullableRemoveBrokerTaskDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveBrokerTaskDataListAllOf added in v0.4.0

func NewNullableRemoveBrokerTaskDataListAllOf(val *RemoveBrokerTaskDataListAllOf) *NullableRemoveBrokerTaskDataListAllOf

func (NullableRemoveBrokerTaskDataListAllOf) Get added in v0.4.0

func (NullableRemoveBrokerTaskDataListAllOf) IsSet added in v0.4.0

func (NullableRemoveBrokerTaskDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableRemoveBrokerTaskDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableRemoveBrokerTaskDataListAllOf) Set added in v0.4.0

func (*NullableRemoveBrokerTaskDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableRemoveBrokerTaskDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableRemoveBrokerTaskDataListAllOf) Unset added in v0.4.0

type NullableRemoveBrokersRequestData added in v0.4.0

type NullableRemoveBrokersRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveBrokersRequestData added in v0.4.0

func NewNullableRemoveBrokersRequestData(val *RemoveBrokersRequestData) *NullableRemoveBrokersRequestData

func (NullableRemoveBrokersRequestData) Get added in v0.4.0

func (NullableRemoveBrokersRequestData) IsSet added in v0.4.0

func (NullableRemoveBrokersRequestData) MarshalJSON added in v0.4.0

func (v NullableRemoveBrokersRequestData) MarshalJSON() ([]byte, error)

func (*NullableRemoveBrokersRequestData) Set added in v0.4.0

func (*NullableRemoveBrokersRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableRemoveBrokersRequestData) UnmarshalJSON(src []byte) error

func (*NullableRemoveBrokersRequestData) Unset added in v0.4.0

type NullableReplicaData added in v0.4.0

type NullableReplicaData struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaData added in v0.4.0

func NewNullableReplicaData(val *ReplicaData) *NullableReplicaData

func (NullableReplicaData) Get added in v0.4.0

func (NullableReplicaData) IsSet added in v0.4.0

func (v NullableReplicaData) IsSet() bool

func (NullableReplicaData) MarshalJSON added in v0.4.0

func (v NullableReplicaData) MarshalJSON() ([]byte, error)

func (*NullableReplicaData) Set added in v0.4.0

func (v *NullableReplicaData) Set(val *ReplicaData)

func (*NullableReplicaData) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaData) UnmarshalJSON(src []byte) error

func (*NullableReplicaData) Unset added in v0.4.0

func (v *NullableReplicaData) Unset()

type NullableReplicaDataAllOf added in v0.4.0

type NullableReplicaDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaDataAllOf added in v0.4.0

func NewNullableReplicaDataAllOf(val *ReplicaDataAllOf) *NullableReplicaDataAllOf

func (NullableReplicaDataAllOf) Get added in v0.4.0

func (NullableReplicaDataAllOf) IsSet added in v0.4.0

func (v NullableReplicaDataAllOf) IsSet() bool

func (NullableReplicaDataAllOf) MarshalJSON added in v0.4.0

func (v NullableReplicaDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableReplicaDataAllOf) Set added in v0.4.0

func (*NullableReplicaDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableReplicaDataAllOf) Unset added in v0.4.0

func (v *NullableReplicaDataAllOf) Unset()

type NullableReplicaDataList added in v0.4.0

type NullableReplicaDataList struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaDataList added in v0.4.0

func NewNullableReplicaDataList(val *ReplicaDataList) *NullableReplicaDataList

func (NullableReplicaDataList) Get added in v0.4.0

func (NullableReplicaDataList) IsSet added in v0.4.0

func (v NullableReplicaDataList) IsSet() bool

func (NullableReplicaDataList) MarshalJSON added in v0.4.0

func (v NullableReplicaDataList) MarshalJSON() ([]byte, error)

func (*NullableReplicaDataList) Set added in v0.4.0

func (*NullableReplicaDataList) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaDataList) UnmarshalJSON(src []byte) error

func (*NullableReplicaDataList) Unset added in v0.4.0

func (v *NullableReplicaDataList) Unset()

type NullableReplicaDataListAllOf added in v0.4.0

type NullableReplicaDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaDataListAllOf added in v0.4.0

func NewNullableReplicaDataListAllOf(val *ReplicaDataListAllOf) *NullableReplicaDataListAllOf

func (NullableReplicaDataListAllOf) Get added in v0.4.0

func (NullableReplicaDataListAllOf) IsSet added in v0.4.0

func (NullableReplicaDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableReplicaDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableReplicaDataListAllOf) Set added in v0.4.0

func (*NullableReplicaDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableReplicaDataListAllOf) Unset added in v0.4.0

func (v *NullableReplicaDataListAllOf) Unset()

type NullableReplicaStatusData added in v0.4.0

type NullableReplicaStatusData struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaStatusData added in v0.4.0

func NewNullableReplicaStatusData(val *ReplicaStatusData) *NullableReplicaStatusData

func (NullableReplicaStatusData) Get added in v0.4.0

func (NullableReplicaStatusData) IsSet added in v0.4.0

func (v NullableReplicaStatusData) IsSet() bool

func (NullableReplicaStatusData) MarshalJSON added in v0.4.0

func (v NullableReplicaStatusData) MarshalJSON() ([]byte, error)

func (*NullableReplicaStatusData) Set added in v0.4.0

func (*NullableReplicaStatusData) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaStatusData) UnmarshalJSON(src []byte) error

func (*NullableReplicaStatusData) Unset added in v0.4.0

func (v *NullableReplicaStatusData) Unset()

type NullableReplicaStatusDataAllOf added in v0.4.0

type NullableReplicaStatusDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaStatusDataAllOf added in v0.4.0

func NewNullableReplicaStatusDataAllOf(val *ReplicaStatusDataAllOf) *NullableReplicaStatusDataAllOf

func (NullableReplicaStatusDataAllOf) Get added in v0.4.0

func (NullableReplicaStatusDataAllOf) IsSet added in v0.4.0

func (NullableReplicaStatusDataAllOf) MarshalJSON added in v0.4.0

func (v NullableReplicaStatusDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableReplicaStatusDataAllOf) Set added in v0.4.0

func (*NullableReplicaStatusDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaStatusDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableReplicaStatusDataAllOf) Unset added in v0.4.0

func (v *NullableReplicaStatusDataAllOf) Unset()

type NullableReplicaStatusDataList added in v0.4.0

type NullableReplicaStatusDataList struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaStatusDataList added in v0.4.0

func NewNullableReplicaStatusDataList(val *ReplicaStatusDataList) *NullableReplicaStatusDataList

func (NullableReplicaStatusDataList) Get added in v0.4.0

func (NullableReplicaStatusDataList) IsSet added in v0.4.0

func (NullableReplicaStatusDataList) MarshalJSON added in v0.4.0

func (v NullableReplicaStatusDataList) MarshalJSON() ([]byte, error)

func (*NullableReplicaStatusDataList) Set added in v0.4.0

func (*NullableReplicaStatusDataList) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaStatusDataList) UnmarshalJSON(src []byte) error

func (*NullableReplicaStatusDataList) Unset added in v0.4.0

func (v *NullableReplicaStatusDataList) Unset()

type NullableReplicaStatusDataListAllOf added in v0.4.0

type NullableReplicaStatusDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableReplicaStatusDataListAllOf added in v0.4.0

func NewNullableReplicaStatusDataListAllOf(val *ReplicaStatusDataListAllOf) *NullableReplicaStatusDataListAllOf

func (NullableReplicaStatusDataListAllOf) Get added in v0.4.0

func (NullableReplicaStatusDataListAllOf) IsSet added in v0.4.0

func (NullableReplicaStatusDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableReplicaStatusDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableReplicaStatusDataListAllOf) Set added in v0.4.0

func (*NullableReplicaStatusDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableReplicaStatusDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableReplicaStatusDataListAllOf) Unset added in v0.4.0

type NullableResource added in v0.4.0

type NullableResource struct {
	// contains filtered or unexported fields
}

func NewNullableResource added in v0.4.0

func NewNullableResource(val *Resource) *NullableResource

func (NullableResource) Get added in v0.4.0

func (v NullableResource) Get() *Resource

func (NullableResource) IsSet added in v0.4.0

func (v NullableResource) IsSet() bool

func (NullableResource) MarshalJSON added in v0.4.0

func (v NullableResource) MarshalJSON() ([]byte, error)

func (*NullableResource) Set added in v0.4.0

func (v *NullableResource) Set(val *Resource)

func (*NullableResource) UnmarshalJSON added in v0.4.0

func (v *NullableResource) UnmarshalJSON(src []byte) error

func (*NullableResource) Unset added in v0.4.0

func (v *NullableResource) Unset()

type NullableResourceCollection added in v0.4.0

type NullableResourceCollection struct {
	// contains filtered or unexported fields
}

func NewNullableResourceCollection added in v0.4.0

func NewNullableResourceCollection(val *ResourceCollection) *NullableResourceCollection

func (NullableResourceCollection) Get added in v0.4.0

func (NullableResourceCollection) IsSet added in v0.4.0

func (v NullableResourceCollection) IsSet() bool

func (NullableResourceCollection) MarshalJSON added in v0.4.0

func (v NullableResourceCollection) MarshalJSON() ([]byte, error)

func (*NullableResourceCollection) Set added in v0.4.0

func (*NullableResourceCollection) UnmarshalJSON added in v0.4.0

func (v *NullableResourceCollection) UnmarshalJSON(src []byte) error

func (*NullableResourceCollection) Unset added in v0.4.0

func (v *NullableResourceCollection) Unset()

type NullableResourceCollectionMetadata added in v0.4.0

type NullableResourceCollectionMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableResourceCollectionMetadata added in v0.4.0

func NewNullableResourceCollectionMetadata(val *ResourceCollectionMetadata) *NullableResourceCollectionMetadata

func (NullableResourceCollectionMetadata) Get added in v0.4.0

func (NullableResourceCollectionMetadata) IsSet added in v0.4.0

func (NullableResourceCollectionMetadata) MarshalJSON added in v0.4.0

func (v NullableResourceCollectionMetadata) MarshalJSON() ([]byte, error)

func (*NullableResourceCollectionMetadata) Set added in v0.4.0

func (*NullableResourceCollectionMetadata) UnmarshalJSON added in v0.4.0

func (v *NullableResourceCollectionMetadata) UnmarshalJSON(src []byte) error

func (*NullableResourceCollectionMetadata) Unset added in v0.4.0

type NullableResourceMetadata added in v0.4.0

type NullableResourceMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableResourceMetadata added in v0.4.0

func NewNullableResourceMetadata(val *ResourceMetadata) *NullableResourceMetadata

func (NullableResourceMetadata) Get added in v0.4.0

func (NullableResourceMetadata) IsSet added in v0.4.0

func (v NullableResourceMetadata) IsSet() bool

func (NullableResourceMetadata) MarshalJSON added in v0.4.0

func (v NullableResourceMetadata) MarshalJSON() ([]byte, error)

func (*NullableResourceMetadata) Set added in v0.4.0

func (*NullableResourceMetadata) UnmarshalJSON added in v0.4.0

func (v *NullableResourceMetadata) UnmarshalJSON(src []byte) error

func (*NullableResourceMetadata) Unset added in v0.4.0

func (v *NullableResourceMetadata) Unset()

type NullableString added in v0.4.0

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString added in v0.4.0

func NewNullableString(val *string) *NullableString

func (NullableString) Get added in v0.4.0

func (v NullableString) Get() *string

func (NullableString) IsSet added in v0.4.0

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON added in v0.4.0

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set added in v0.4.0

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON added in v0.4.0

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset added in v0.4.0

func (v *NullableString) Unset()

type NullableTime added in v0.4.0

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime added in v0.4.0

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get added in v0.4.0

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet added in v0.4.0

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON added in v0.4.0

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set added in v0.4.0

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON added in v0.4.0

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset added in v0.4.0

func (v *NullableTime) Unset()

type NullableTopicConfigData added in v0.4.0

type NullableTopicConfigData struct {
	// contains filtered or unexported fields
}

func NewNullableTopicConfigData added in v0.4.0

func NewNullableTopicConfigData(val *TopicConfigData) *NullableTopicConfigData

func (NullableTopicConfigData) Get added in v0.4.0

func (NullableTopicConfigData) IsSet added in v0.4.0

func (v NullableTopicConfigData) IsSet() bool

func (NullableTopicConfigData) MarshalJSON added in v0.4.0

func (v NullableTopicConfigData) MarshalJSON() ([]byte, error)

func (*NullableTopicConfigData) Set added in v0.4.0

func (*NullableTopicConfigData) UnmarshalJSON added in v0.4.0

func (v *NullableTopicConfigData) UnmarshalJSON(src []byte) error

func (*NullableTopicConfigData) Unset added in v0.4.0

func (v *NullableTopicConfigData) Unset()

type NullableTopicConfigDataAllOf added in v0.4.0

type NullableTopicConfigDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTopicConfigDataAllOf added in v0.4.0

func NewNullableTopicConfigDataAllOf(val *TopicConfigDataAllOf) *NullableTopicConfigDataAllOf

func (NullableTopicConfigDataAllOf) Get added in v0.4.0

func (NullableTopicConfigDataAllOf) IsSet added in v0.4.0

func (NullableTopicConfigDataAllOf) MarshalJSON added in v0.4.0

func (v NullableTopicConfigDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableTopicConfigDataAllOf) Set added in v0.4.0

func (*NullableTopicConfigDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableTopicConfigDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableTopicConfigDataAllOf) Unset added in v0.4.0

func (v *NullableTopicConfigDataAllOf) Unset()

type NullableTopicConfigDataList added in v0.4.0

type NullableTopicConfigDataList struct {
	// contains filtered or unexported fields
}

func NewNullableTopicConfigDataList added in v0.4.0

func NewNullableTopicConfigDataList(val *TopicConfigDataList) *NullableTopicConfigDataList

func (NullableTopicConfigDataList) Get added in v0.4.0

func (NullableTopicConfigDataList) IsSet added in v0.4.0

func (NullableTopicConfigDataList) MarshalJSON added in v0.4.0

func (v NullableTopicConfigDataList) MarshalJSON() ([]byte, error)

func (*NullableTopicConfigDataList) Set added in v0.4.0

func (*NullableTopicConfigDataList) UnmarshalJSON added in v0.4.0

func (v *NullableTopicConfigDataList) UnmarshalJSON(src []byte) error

func (*NullableTopicConfigDataList) Unset added in v0.4.0

func (v *NullableTopicConfigDataList) Unset()

type NullableTopicConfigDataListAllOf added in v0.4.0

type NullableTopicConfigDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTopicConfigDataListAllOf added in v0.4.0

func NewNullableTopicConfigDataListAllOf(val *TopicConfigDataListAllOf) *NullableTopicConfigDataListAllOf

func (NullableTopicConfigDataListAllOf) Get added in v0.4.0

func (NullableTopicConfigDataListAllOf) IsSet added in v0.4.0

func (NullableTopicConfigDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableTopicConfigDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableTopicConfigDataListAllOf) Set added in v0.4.0

func (*NullableTopicConfigDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableTopicConfigDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableTopicConfigDataListAllOf) Unset added in v0.4.0

type NullableTopicData added in v0.4.0

type NullableTopicData struct {
	// contains filtered or unexported fields
}

func NewNullableTopicData added in v0.4.0

func NewNullableTopicData(val *TopicData) *NullableTopicData

func (NullableTopicData) Get added in v0.4.0

func (v NullableTopicData) Get() *TopicData

func (NullableTopicData) IsSet added in v0.4.0

func (v NullableTopicData) IsSet() bool

func (NullableTopicData) MarshalJSON added in v0.4.0

func (v NullableTopicData) MarshalJSON() ([]byte, error)

func (*NullableTopicData) Set added in v0.4.0

func (v *NullableTopicData) Set(val *TopicData)

func (*NullableTopicData) UnmarshalJSON added in v0.4.0

func (v *NullableTopicData) UnmarshalJSON(src []byte) error

func (*NullableTopicData) Unset added in v0.4.0

func (v *NullableTopicData) Unset()

type NullableTopicDataAllOf added in v0.4.0

type NullableTopicDataAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTopicDataAllOf added in v0.4.0

func NewNullableTopicDataAllOf(val *TopicDataAllOf) *NullableTopicDataAllOf

func (NullableTopicDataAllOf) Get added in v0.4.0

func (NullableTopicDataAllOf) IsSet added in v0.4.0

func (v NullableTopicDataAllOf) IsSet() bool

func (NullableTopicDataAllOf) MarshalJSON added in v0.4.0

func (v NullableTopicDataAllOf) MarshalJSON() ([]byte, error)

func (*NullableTopicDataAllOf) Set added in v0.4.0

func (*NullableTopicDataAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableTopicDataAllOf) UnmarshalJSON(src []byte) error

func (*NullableTopicDataAllOf) Unset added in v0.4.0

func (v *NullableTopicDataAllOf) Unset()

type NullableTopicDataList added in v0.4.0

type NullableTopicDataList struct {
	// contains filtered or unexported fields
}

func NewNullableTopicDataList added in v0.4.0

func NewNullableTopicDataList(val *TopicDataList) *NullableTopicDataList

func (NullableTopicDataList) Get added in v0.4.0

func (NullableTopicDataList) IsSet added in v0.4.0

func (v NullableTopicDataList) IsSet() bool

func (NullableTopicDataList) MarshalJSON added in v0.4.0

func (v NullableTopicDataList) MarshalJSON() ([]byte, error)

func (*NullableTopicDataList) Set added in v0.4.0

func (v *NullableTopicDataList) Set(val *TopicDataList)

func (*NullableTopicDataList) UnmarshalJSON added in v0.4.0

func (v *NullableTopicDataList) UnmarshalJSON(src []byte) error

func (*NullableTopicDataList) Unset added in v0.4.0

func (v *NullableTopicDataList) Unset()

type NullableTopicDataListAllOf added in v0.4.0

type NullableTopicDataListAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTopicDataListAllOf added in v0.4.0

func NewNullableTopicDataListAllOf(val *TopicDataListAllOf) *NullableTopicDataListAllOf

func (NullableTopicDataListAllOf) Get added in v0.4.0

func (NullableTopicDataListAllOf) IsSet added in v0.4.0

func (v NullableTopicDataListAllOf) IsSet() bool

func (NullableTopicDataListAllOf) MarshalJSON added in v0.4.0

func (v NullableTopicDataListAllOf) MarshalJSON() ([]byte, error)

func (*NullableTopicDataListAllOf) Set added in v0.4.0

func (*NullableTopicDataListAllOf) UnmarshalJSON added in v0.4.0

func (v *NullableTopicDataListAllOf) UnmarshalJSON(src []byte) error

func (*NullableTopicDataListAllOf) Unset added in v0.4.0

func (v *NullableTopicDataListAllOf) Unset()

type NullableUpdateConfigRequestData added in v0.4.0

type NullableUpdateConfigRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateConfigRequestData added in v0.4.0

func NewNullableUpdateConfigRequestData(val *UpdateConfigRequestData) *NullableUpdateConfigRequestData

func (NullableUpdateConfigRequestData) Get added in v0.4.0

func (NullableUpdateConfigRequestData) IsSet added in v0.4.0

func (NullableUpdateConfigRequestData) MarshalJSON added in v0.4.0

func (v NullableUpdateConfigRequestData) MarshalJSON() ([]byte, error)

func (*NullableUpdateConfigRequestData) Set added in v0.4.0

func (*NullableUpdateConfigRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableUpdateConfigRequestData) UnmarshalJSON(src []byte) error

func (*NullableUpdateConfigRequestData) Unset added in v0.4.0

type NullableUpdateLinkConfigRequestData added in v0.4.0

type NullableUpdateLinkConfigRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateLinkConfigRequestData added in v0.4.0

func NewNullableUpdateLinkConfigRequestData(val *UpdateLinkConfigRequestData) *NullableUpdateLinkConfigRequestData

func (NullableUpdateLinkConfigRequestData) Get added in v0.4.0

func (NullableUpdateLinkConfigRequestData) IsSet added in v0.4.0

func (NullableUpdateLinkConfigRequestData) MarshalJSON added in v0.4.0

func (v NullableUpdateLinkConfigRequestData) MarshalJSON() ([]byte, error)

func (*NullableUpdateLinkConfigRequestData) Set added in v0.4.0

func (*NullableUpdateLinkConfigRequestData) UnmarshalJSON added in v0.4.0

func (v *NullableUpdateLinkConfigRequestData) UnmarshalJSON(src []byte) error

func (*NullableUpdateLinkConfigRequestData) Unset added in v0.4.0

type NullableUpdatePartitionCountRequestData added in v0.13.0

type NullableUpdatePartitionCountRequestData struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePartitionCountRequestData added in v0.13.0

func NewNullableUpdatePartitionCountRequestData(val *UpdatePartitionCountRequestData) *NullableUpdatePartitionCountRequestData

func (NullableUpdatePartitionCountRequestData) Get added in v0.13.0

func (NullableUpdatePartitionCountRequestData) IsSet added in v0.13.0

func (NullableUpdatePartitionCountRequestData) MarshalJSON added in v0.13.0

func (v NullableUpdatePartitionCountRequestData) MarshalJSON() ([]byte, error)

func (*NullableUpdatePartitionCountRequestData) Set added in v0.13.0

func (*NullableUpdatePartitionCountRequestData) UnmarshalJSON added in v0.13.0

func (v *NullableUpdatePartitionCountRequestData) UnmarshalJSON(src []byte) error

func (*NullableUpdatePartitionCountRequestData) Unset added in v0.13.0

type PartitionData

type PartitionData struct {
	Kind         string           `json:"kind,omitempty"`
	Metadata     ResourceMetadata `json:"metadata,omitempty"`
	ClusterId    string           `json:"cluster_id,omitempty"`
	TopicName    string           `json:"topic_name,omitempty"`
	PartitionId  int32            `json:"partition_id,omitempty"`
	Leader       *Relationship    `json:"leader,omitempty"`
	Replicas     Relationship     `json:"replicas,omitempty"`
	Reassignment Relationship     `json:"reassignment,omitempty"`
}

PartitionData struct for PartitionData

func NewPartitionData added in v0.4.0

func NewPartitionData(kind string, metadata ResourceMetadata, clusterId string, topicName string, partitionId int32, replicas Relationship, reassignment Relationship) *PartitionData

NewPartitionData instantiates a new PartitionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartitionDataWithDefaults added in v0.4.0

func NewPartitionDataWithDefaults() *PartitionData

NewPartitionDataWithDefaults instantiates a new PartitionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartitionData) GetClusterId added in v0.4.0

func (o *PartitionData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*PartitionData) GetClusterIdOk added in v0.4.0

func (o *PartitionData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*PartitionData) GetKind added in v0.4.0

func (o *PartitionData) GetKind() string

GetKind returns the Kind field value

func (*PartitionData) GetKindOk added in v0.4.0

func (o *PartitionData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*PartitionData) GetLeader added in v0.4.0

func (o *PartitionData) GetLeader() Relationship

GetLeader returns the Leader field value if set, zero value otherwise.

func (*PartitionData) GetLeaderOk added in v0.4.0

func (o *PartitionData) GetLeaderOk() (*Relationship, bool)

GetLeaderOk returns a tuple with the Leader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartitionData) GetMetadata added in v0.4.0

func (o *PartitionData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*PartitionData) GetMetadataOk added in v0.4.0

func (o *PartitionData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*PartitionData) GetPartitionId added in v0.4.0

func (o *PartitionData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*PartitionData) GetPartitionIdOk added in v0.4.0

func (o *PartitionData) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*PartitionData) GetReassignment added in v0.4.0

func (o *PartitionData) GetReassignment() Relationship

GetReassignment returns the Reassignment field value

func (*PartitionData) GetReassignmentOk added in v0.4.0

func (o *PartitionData) GetReassignmentOk() (*Relationship, bool)

GetReassignmentOk returns a tuple with the Reassignment field value and a boolean to check if the value has been set.

func (*PartitionData) GetReplicas added in v0.4.0

func (o *PartitionData) GetReplicas() Relationship

GetReplicas returns the Replicas field value

func (*PartitionData) GetReplicasOk added in v0.4.0

func (o *PartitionData) GetReplicasOk() (*Relationship, bool)

GetReplicasOk returns a tuple with the Replicas field value and a boolean to check if the value has been set.

func (*PartitionData) GetTopicName added in v0.4.0

func (o *PartitionData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*PartitionData) GetTopicNameOk added in v0.4.0

func (o *PartitionData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*PartitionData) HasLeader added in v0.4.0

func (o *PartitionData) HasLeader() bool

HasLeader returns a boolean if a field has been set.

func (PartitionData) MarshalJSON added in v0.4.0

func (o PartitionData) MarshalJSON() ([]byte, error)

func (*PartitionData) Redact added in v0.4.0

func (o *PartitionData) Redact()

Redact resets all sensitive fields to their zero value.

func (*PartitionData) SetClusterId added in v0.4.0

func (o *PartitionData) SetClusterId(v string)

SetClusterId sets field value

func (*PartitionData) SetKind added in v0.4.0

func (o *PartitionData) SetKind(v string)

SetKind sets field value

func (*PartitionData) SetLeader added in v0.4.0

func (o *PartitionData) SetLeader(v Relationship)

SetLeader gets a reference to the given Relationship and assigns it to the Leader field.

func (*PartitionData) SetMetadata added in v0.4.0

func (o *PartitionData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*PartitionData) SetPartitionId added in v0.4.0

func (o *PartitionData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*PartitionData) SetReassignment added in v0.4.0

func (o *PartitionData) SetReassignment(v Relationship)

SetReassignment sets field value

func (*PartitionData) SetReplicas added in v0.4.0

func (o *PartitionData) SetReplicas(v Relationship)

SetReplicas sets field value

func (*PartitionData) SetTopicName added in v0.4.0

func (o *PartitionData) SetTopicName(v string)

SetTopicName sets field value

type PartitionDataAllOf

type PartitionDataAllOf struct {
	ClusterId    string        `json:"cluster_id,omitempty"`
	TopicName    string        `json:"topic_name,omitempty"`
	PartitionId  int32         `json:"partition_id,omitempty"`
	Leader       *Relationship `json:"leader,omitempty"`
	Replicas     Relationship  `json:"replicas,omitempty"`
	Reassignment Relationship  `json:"reassignment,omitempty"`
}

PartitionDataAllOf struct for PartitionDataAllOf

func NewPartitionDataAllOf added in v0.4.0

func NewPartitionDataAllOf(clusterId string, topicName string, partitionId int32, replicas Relationship, reassignment Relationship) *PartitionDataAllOf

NewPartitionDataAllOf instantiates a new PartitionDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartitionDataAllOfWithDefaults added in v0.4.0

func NewPartitionDataAllOfWithDefaults() *PartitionDataAllOf

NewPartitionDataAllOfWithDefaults instantiates a new PartitionDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartitionDataAllOf) GetClusterId added in v0.4.0

func (o *PartitionDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*PartitionDataAllOf) GetClusterIdOk added in v0.4.0

func (o *PartitionDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*PartitionDataAllOf) GetLeader added in v0.4.0

func (o *PartitionDataAllOf) GetLeader() Relationship

GetLeader returns the Leader field value if set, zero value otherwise.

func (*PartitionDataAllOf) GetLeaderOk added in v0.4.0

func (o *PartitionDataAllOf) GetLeaderOk() (*Relationship, bool)

GetLeaderOk returns a tuple with the Leader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartitionDataAllOf) GetPartitionId added in v0.4.0

func (o *PartitionDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*PartitionDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *PartitionDataAllOf) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*PartitionDataAllOf) GetReassignment added in v0.4.0

func (o *PartitionDataAllOf) GetReassignment() Relationship

GetReassignment returns the Reassignment field value

func (*PartitionDataAllOf) GetReassignmentOk added in v0.4.0

func (o *PartitionDataAllOf) GetReassignmentOk() (*Relationship, bool)

GetReassignmentOk returns a tuple with the Reassignment field value and a boolean to check if the value has been set.

func (*PartitionDataAllOf) GetReplicas added in v0.4.0

func (o *PartitionDataAllOf) GetReplicas() Relationship

GetReplicas returns the Replicas field value

func (*PartitionDataAllOf) GetReplicasOk added in v0.4.0

func (o *PartitionDataAllOf) GetReplicasOk() (*Relationship, bool)

GetReplicasOk returns a tuple with the Replicas field value and a boolean to check if the value has been set.

func (*PartitionDataAllOf) GetTopicName added in v0.4.0

func (o *PartitionDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*PartitionDataAllOf) GetTopicNameOk added in v0.4.0

func (o *PartitionDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*PartitionDataAllOf) HasLeader added in v0.4.0

func (o *PartitionDataAllOf) HasLeader() bool

HasLeader returns a boolean if a field has been set.

func (PartitionDataAllOf) MarshalJSON added in v0.4.0

func (o PartitionDataAllOf) MarshalJSON() ([]byte, error)

func (*PartitionDataAllOf) Redact added in v0.4.0

func (o *PartitionDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*PartitionDataAllOf) SetClusterId added in v0.4.0

func (o *PartitionDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*PartitionDataAllOf) SetLeader added in v0.4.0

func (o *PartitionDataAllOf) SetLeader(v Relationship)

SetLeader gets a reference to the given Relationship and assigns it to the Leader field.

func (*PartitionDataAllOf) SetPartitionId added in v0.4.0

func (o *PartitionDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*PartitionDataAllOf) SetReassignment added in v0.4.0

func (o *PartitionDataAllOf) SetReassignment(v Relationship)

SetReassignment sets field value

func (*PartitionDataAllOf) SetReplicas added in v0.4.0

func (o *PartitionDataAllOf) SetReplicas(v Relationship)

SetReplicas sets field value

func (*PartitionDataAllOf) SetTopicName added in v0.4.0

func (o *PartitionDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type PartitionDataList

type PartitionDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []PartitionData            `json:"data,omitempty"`
}

PartitionDataList struct for PartitionDataList

func NewPartitionDataList added in v0.4.0

func NewPartitionDataList(kind string, metadata ResourceCollectionMetadata, data []PartitionData) *PartitionDataList

NewPartitionDataList instantiates a new PartitionDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartitionDataListWithDefaults added in v0.4.0

func NewPartitionDataListWithDefaults() *PartitionDataList

NewPartitionDataListWithDefaults instantiates a new PartitionDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartitionDataList) GetData added in v0.4.0

func (o *PartitionDataList) GetData() []PartitionData

GetData returns the Data field value

func (*PartitionDataList) GetDataOk added in v0.4.0

func (o *PartitionDataList) GetDataOk() (*[]PartitionData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*PartitionDataList) GetKind added in v0.4.0

func (o *PartitionDataList) GetKind() string

GetKind returns the Kind field value

func (*PartitionDataList) GetKindOk added in v0.4.0

func (o *PartitionDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*PartitionDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*PartitionDataList) GetMetadataOk added in v0.4.0

func (o *PartitionDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (PartitionDataList) MarshalJSON added in v0.4.0

func (o PartitionDataList) MarshalJSON() ([]byte, error)

func (*PartitionDataList) Redact added in v0.4.0

func (o *PartitionDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*PartitionDataList) SetData added in v0.4.0

func (o *PartitionDataList) SetData(v []PartitionData)

SetData sets field value

func (*PartitionDataList) SetKind added in v0.4.0

func (o *PartitionDataList) SetKind(v string)

SetKind sets field value

func (*PartitionDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type PartitionDataListAllOf

type PartitionDataListAllOf struct {
	Data []PartitionData `json:"data,omitempty"`
}

PartitionDataListAllOf struct for PartitionDataListAllOf

func NewPartitionDataListAllOf added in v0.4.0

func NewPartitionDataListAllOf(data []PartitionData) *PartitionDataListAllOf

NewPartitionDataListAllOf instantiates a new PartitionDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPartitionDataListAllOfWithDefaults added in v0.4.0

func NewPartitionDataListAllOfWithDefaults() *PartitionDataListAllOf

NewPartitionDataListAllOfWithDefaults instantiates a new PartitionDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PartitionDataListAllOf) GetData added in v0.4.0

func (o *PartitionDataListAllOf) GetData() []PartitionData

GetData returns the Data field value

func (*PartitionDataListAllOf) GetDataOk added in v0.4.0

func (o *PartitionDataListAllOf) GetDataOk() (*[]PartitionData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (PartitionDataListAllOf) MarshalJSON added in v0.4.0

func (o PartitionDataListAllOf) MarshalJSON() ([]byte, error)

func (*PartitionDataListAllOf) Redact added in v0.4.0

func (o *PartitionDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*PartitionDataListAllOf) SetData added in v0.4.0

func (o *PartitionDataListAllOf) SetData(v []PartitionData)

SetData sets field value

type PartitionV3Api

type PartitionV3Api interface {

	/*
			GetKafkaPartition Get Partition

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the partition with the given `partition_id`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @param partitionId The partition ID.
			 @return ApiGetKafkaPartitionRequest
	*/
	GetKafkaPartition(ctx _context.Context, clusterId string, topicName string, partitionId int32) ApiGetKafkaPartitionRequest

	// GetKafkaPartitionExecute executes the request
	//  @return PartitionData
	GetKafkaPartitionExecute(r ApiGetKafkaPartitionRequest) (PartitionData, *_nethttp.Response, error)

	/*
			ListKafkaPartitions List Partitions

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the list of partitions that belong to the specified topic.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiListKafkaPartitionsRequest
	*/
	ListKafkaPartitions(ctx _context.Context, clusterId string, topicName string) ApiListKafkaPartitionsRequest

	// ListKafkaPartitionsExecute executes the request
	//  @return PartitionDataList
	ListKafkaPartitionsExecute(r ApiListKafkaPartitionsRequest) (PartitionDataList, *_nethttp.Response, error)
}

type PartitionV3ApiService

type PartitionV3ApiService service

PartitionV3ApiService PartitionV3Api service

func (*PartitionV3ApiService) GetKafkaPartition added in v0.4.0

func (a *PartitionV3ApiService) GetKafkaPartition(ctx _context.Context, clusterId string, topicName string, partitionId int32) ApiGetKafkaPartitionRequest

GetKafkaPartition Get Partition

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the partition with the given `partition_id`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@param partitionId The partition ID.
@return ApiGetKafkaPartitionRequest

func (*PartitionV3ApiService) GetKafkaPartitionExecute added in v0.4.0

Execute executes the request

@return PartitionData

func (*PartitionV3ApiService) ListKafkaPartitions added in v0.4.0

func (a *PartitionV3ApiService) ListKafkaPartitions(ctx _context.Context, clusterId string, topicName string) ApiListKafkaPartitionsRequest

ListKafkaPartitions List Partitions

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the list of partitions that belong to the specified topic.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiListKafkaPartitionsRequest

func (*PartitionV3ApiService) ListKafkaPartitionsExecute added in v0.4.0

Execute executes the request

@return PartitionDataList

type ProduceRequest

type ProduceRequest struct {
	PartitionId NullableInt32              `json:"partition_id,omitempty"`
	Headers     *[]ProduceRequestHeader    `json:"headers,omitempty"`
	Key         NullableProduceRequestData `json:"key,omitempty"`
	Value       NullableProduceRequestData `json:"value,omitempty"`
	Timestamp   NullableTime               `json:"timestamp,omitempty"`
}

ProduceRequest struct for ProduceRequest

func NewProduceRequest added in v0.4.0

func NewProduceRequest() *ProduceRequest

NewProduceRequest instantiates a new ProduceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProduceRequestWithDefaults added in v0.4.0

func NewProduceRequestWithDefaults() *ProduceRequest

NewProduceRequestWithDefaults instantiates a new ProduceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProduceRequest) GetHeaders added in v0.4.0

func (o *ProduceRequest) GetHeaders() []ProduceRequestHeader

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*ProduceRequest) GetHeadersOk added in v0.4.0

func (o *ProduceRequest) GetHeadersOk() (*[]ProduceRequestHeader, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceRequest) GetKey added in v0.4.0

func (o *ProduceRequest) GetKey() ProduceRequestData

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequest) GetKeyOk added in v0.4.0

func (o *ProduceRequest) GetKeyOk() (*ProduceRequestData, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequest) GetPartitionId added in v0.4.0

func (o *ProduceRequest) GetPartitionId() int32

GetPartitionId returns the PartitionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequest) GetPartitionIdOk added in v0.4.0

func (o *ProduceRequest) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequest) GetTimestamp added in v0.4.0

func (o *ProduceRequest) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequest) GetTimestampOk added in v0.4.0

func (o *ProduceRequest) GetTimestampOk() (*time.Time, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequest) GetValue added in v0.4.0

func (o *ProduceRequest) GetValue() ProduceRequestData

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequest) GetValueOk added in v0.4.0

func (o *ProduceRequest) GetValueOk() (*ProduceRequestData, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequest) HasHeaders added in v0.4.0

func (o *ProduceRequest) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*ProduceRequest) HasKey added in v0.4.0

func (o *ProduceRequest) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ProduceRequest) HasPartitionId added in v0.4.0

func (o *ProduceRequest) HasPartitionId() bool

HasPartitionId returns a boolean if a field has been set.

func (*ProduceRequest) HasTimestamp added in v0.4.0

func (o *ProduceRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ProduceRequest) HasValue added in v0.4.0

func (o *ProduceRequest) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProduceRequest) MarshalJSON added in v0.4.0

func (o ProduceRequest) MarshalJSON() ([]byte, error)

func (*ProduceRequest) Redact added in v0.4.0

func (o *ProduceRequest) Redact()

Redact resets all sensitive fields to their zero value.

func (*ProduceRequest) SetHeaders added in v0.4.0

func (o *ProduceRequest) SetHeaders(v []ProduceRequestHeader)

SetHeaders gets a reference to the given []ProduceRequestHeader and assigns it to the Headers field.

func (*ProduceRequest) SetKey added in v0.4.0

func (o *ProduceRequest) SetKey(v ProduceRequestData)

SetKey gets a reference to the given NullableProduceRequestData and assigns it to the Key field.

func (*ProduceRequest) SetKeyNil added in v0.4.0

func (o *ProduceRequest) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*ProduceRequest) SetPartitionId added in v0.4.0

func (o *ProduceRequest) SetPartitionId(v int32)

SetPartitionId gets a reference to the given NullableInt32 and assigns it to the PartitionId field.

func (*ProduceRequest) SetPartitionIdNil added in v0.4.0

func (o *ProduceRequest) SetPartitionIdNil()

SetPartitionIdNil sets the value for PartitionId to be an explicit nil

func (*ProduceRequest) SetTimestamp added in v0.4.0

func (o *ProduceRequest) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given NullableTime and assigns it to the Timestamp field.

func (*ProduceRequest) SetTimestampNil added in v0.4.0

func (o *ProduceRequest) SetTimestampNil()

SetTimestampNil sets the value for Timestamp to be an explicit nil

func (*ProduceRequest) SetValue added in v0.4.0

func (o *ProduceRequest) SetValue(v ProduceRequestData)

SetValue gets a reference to the given NullableProduceRequestData and assigns it to the Value field.

func (*ProduceRequest) SetValueNil added in v0.4.0

func (o *ProduceRequest) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*ProduceRequest) UnsetKey added in v0.4.0

func (o *ProduceRequest) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*ProduceRequest) UnsetPartitionId added in v0.4.0

func (o *ProduceRequest) UnsetPartitionId()

UnsetPartitionId ensures that no value is present for PartitionId, not even an explicit nil

func (*ProduceRequest) UnsetTimestamp added in v0.4.0

func (o *ProduceRequest) UnsetTimestamp()

UnsetTimestamp ensures that no value is present for Timestamp, not even an explicit nil

func (*ProduceRequest) UnsetValue added in v0.4.0

func (o *ProduceRequest) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ProduceRequestData

type ProduceRequestData struct {
	Type *string     `json:"type,omitempty"`
	Data interface{} `json:"data,omitempty"`
}

ProduceRequestData struct for ProduceRequestData

func NewProduceRequestData added in v0.4.0

func NewProduceRequestData() *ProduceRequestData

NewProduceRequestData instantiates a new ProduceRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProduceRequestDataWithDefaults added in v0.4.0

func NewProduceRequestDataWithDefaults() *ProduceRequestData

NewProduceRequestDataWithDefaults instantiates a new ProduceRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProduceRequestData) GetData added in v0.4.0

func (o *ProduceRequestData) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequestData) GetDataOk added in v0.4.0

func (o *ProduceRequestData) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequestData) GetType added in v0.4.0

func (o *ProduceRequestData) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProduceRequestData) GetTypeOk added in v0.4.0

func (o *ProduceRequestData) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceRequestData) HasData added in v0.4.0

func (o *ProduceRequestData) HasData() bool

HasData returns a boolean if a field has been set.

func (*ProduceRequestData) HasType added in v0.4.0

func (o *ProduceRequestData) HasType() bool

HasType returns a boolean if a field has been set.

func (ProduceRequestData) MarshalJSON added in v0.4.0

func (o ProduceRequestData) MarshalJSON() ([]byte, error)

func (*ProduceRequestData) Redact added in v0.4.0

func (o *ProduceRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ProduceRequestData) SetData added in v0.4.0

func (o *ProduceRequestData) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*ProduceRequestData) SetType added in v0.4.0

func (o *ProduceRequestData) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ProduceRequestHeader

type ProduceRequestHeader struct {
	Name  string         `json:"name,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

ProduceRequestHeader struct for ProduceRequestHeader

func NewProduceRequestHeader added in v0.4.0

func NewProduceRequestHeader(name string) *ProduceRequestHeader

NewProduceRequestHeader instantiates a new ProduceRequestHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProduceRequestHeaderWithDefaults added in v0.4.0

func NewProduceRequestHeaderWithDefaults() *ProduceRequestHeader

NewProduceRequestHeaderWithDefaults instantiates a new ProduceRequestHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProduceRequestHeader) GetName added in v0.4.0

func (o *ProduceRequestHeader) GetName() string

GetName returns the Name field value

func (*ProduceRequestHeader) GetNameOk added in v0.4.0

func (o *ProduceRequestHeader) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProduceRequestHeader) GetValue added in v0.4.0

func (o *ProduceRequestHeader) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceRequestHeader) GetValueOk added in v0.4.0

func (o *ProduceRequestHeader) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceRequestHeader) HasValue added in v0.4.0

func (o *ProduceRequestHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProduceRequestHeader) MarshalJSON added in v0.4.0

func (o ProduceRequestHeader) MarshalJSON() ([]byte, error)

func (*ProduceRequestHeader) Redact added in v0.4.0

func (o *ProduceRequestHeader) Redact()

Redact resets all sensitive fields to their zero value.

func (*ProduceRequestHeader) SetName added in v0.4.0

func (o *ProduceRequestHeader) SetName(v string)

SetName sets field value

func (*ProduceRequestHeader) SetValue added in v0.4.0

func (o *ProduceRequestHeader) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*ProduceRequestHeader) SetValueNil added in v0.4.0

func (o *ProduceRequestHeader) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*ProduceRequestHeader) UnsetValue added in v0.4.0

func (o *ProduceRequestHeader) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ProduceResponse

type ProduceResponse struct {
	ErrorCode   int32                       `json:"error_code,omitempty"`
	Message     *string                     `json:"message,omitempty"`
	ClusterId   *string                     `json:"cluster_id,omitempty"`
	TopicName   *string                     `json:"topic_name,omitempty"`
	PartitionId *int32                      `json:"partition_id,omitempty"`
	Offset      *int64                      `json:"offset,omitempty"`
	Timestamp   NullableTime                `json:"timestamp,omitempty"`
	Key         NullableProduceResponseData `json:"key,omitempty"`
	Value       NullableProduceResponseData `json:"value,omitempty"`
}

ProduceResponse struct for ProduceResponse

func NewProduceResponse added in v0.4.0

func NewProduceResponse(errorCode int32) *ProduceResponse

NewProduceResponse instantiates a new ProduceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProduceResponseWithDefaults added in v0.4.0

func NewProduceResponseWithDefaults() *ProduceResponse

NewProduceResponseWithDefaults instantiates a new ProduceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProduceResponse) GetClusterId added in v0.4.0

func (o *ProduceResponse) GetClusterId() string

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*ProduceResponse) GetClusterIdOk added in v0.4.0

func (o *ProduceResponse) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceResponse) GetErrorCode added in v0.14.0

func (o *ProduceResponse) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value

func (*ProduceResponse) GetErrorCodeOk added in v0.14.0

func (o *ProduceResponse) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value and a boolean to check if the value has been set.

func (*ProduceResponse) GetKey added in v0.4.0

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceResponse) GetKeyOk added in v0.4.0

func (o *ProduceResponse) GetKeyOk() (*ProduceResponseData, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceResponse) GetMessage added in v0.14.0

func (o *ProduceResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ProduceResponse) GetMessageOk added in v0.14.0

func (o *ProduceResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceResponse) GetOffset added in v0.4.0

func (o *ProduceResponse) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ProduceResponse) GetOffsetOk added in v0.4.0

func (o *ProduceResponse) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceResponse) GetPartitionId added in v0.4.0

func (o *ProduceResponse) GetPartitionId() int32

GetPartitionId returns the PartitionId field value if set, zero value otherwise.

func (*ProduceResponse) GetPartitionIdOk added in v0.4.0

func (o *ProduceResponse) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceResponse) GetTimestamp added in v0.4.0

func (o *ProduceResponse) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceResponse) GetTimestampOk added in v0.4.0

func (o *ProduceResponse) GetTimestampOk() (*time.Time, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceResponse) GetTopicName added in v0.4.0

func (o *ProduceResponse) GetTopicName() string

GetTopicName returns the TopicName field value if set, zero value otherwise.

func (*ProduceResponse) GetTopicNameOk added in v0.4.0

func (o *ProduceResponse) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProduceResponse) GetValue added in v0.4.0

func (o *ProduceResponse) GetValue() ProduceResponseData

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProduceResponse) GetValueOk added in v0.4.0

func (o *ProduceResponse) GetValueOk() (*ProduceResponseData, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProduceResponse) HasClusterId added in v0.14.0

func (o *ProduceResponse) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*ProduceResponse) HasKey added in v0.4.0

func (o *ProduceResponse) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ProduceResponse) HasMessage added in v0.14.0

func (o *ProduceResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ProduceResponse) HasOffset added in v0.14.0

func (o *ProduceResponse) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ProduceResponse) HasPartitionId added in v0.14.0

func (o *ProduceResponse) HasPartitionId() bool

HasPartitionId returns a boolean if a field has been set.

func (*ProduceResponse) HasTimestamp added in v0.4.0

func (o *ProduceResponse) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ProduceResponse) HasTopicName added in v0.14.0

func (o *ProduceResponse) HasTopicName() bool

HasTopicName returns a boolean if a field has been set.

func (*ProduceResponse) HasValue added in v0.4.0

func (o *ProduceResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProduceResponse) MarshalJSON added in v0.4.0

func (o ProduceResponse) MarshalJSON() ([]byte, error)

func (*ProduceResponse) Redact added in v0.4.0

func (o *ProduceResponse) Redact()

Redact resets all sensitive fields to their zero value.

func (*ProduceResponse) SetClusterId added in v0.4.0

func (o *ProduceResponse) SetClusterId(v string)

SetClusterId gets a reference to the given string and assigns it to the ClusterId field.

func (*ProduceResponse) SetErrorCode added in v0.14.0

func (o *ProduceResponse) SetErrorCode(v int32)

SetErrorCode sets field value

func (*ProduceResponse) SetKey added in v0.4.0

func (o *ProduceResponse) SetKey(v ProduceResponseData)

SetKey gets a reference to the given NullableProduceResponseData and assigns it to the Key field.

func (*ProduceResponse) SetKeyNil added in v0.4.0

func (o *ProduceResponse) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*ProduceResponse) SetMessage added in v0.14.0

func (o *ProduceResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ProduceResponse) SetOffset added in v0.4.0

func (o *ProduceResponse) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ProduceResponse) SetPartitionId added in v0.4.0

func (o *ProduceResponse) SetPartitionId(v int32)

SetPartitionId gets a reference to the given int32 and assigns it to the PartitionId field.

func (*ProduceResponse) SetTimestamp added in v0.4.0

func (o *ProduceResponse) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given NullableTime and assigns it to the Timestamp field.

func (*ProduceResponse) SetTimestampNil added in v0.4.0

func (o *ProduceResponse) SetTimestampNil()

SetTimestampNil sets the value for Timestamp to be an explicit nil

func (*ProduceResponse) SetTopicName added in v0.4.0

func (o *ProduceResponse) SetTopicName(v string)

SetTopicName gets a reference to the given string and assigns it to the TopicName field.

func (*ProduceResponse) SetValue added in v0.4.0

func (o *ProduceResponse) SetValue(v ProduceResponseData)

SetValue gets a reference to the given NullableProduceResponseData and assigns it to the Value field.

func (*ProduceResponse) SetValueNil added in v0.4.0

func (o *ProduceResponse) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*ProduceResponse) UnsetKey added in v0.4.0

func (o *ProduceResponse) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*ProduceResponse) UnsetTimestamp added in v0.4.0

func (o *ProduceResponse) UnsetTimestamp()

UnsetTimestamp ensures that no value is present for Timestamp, not even an explicit nil

func (*ProduceResponse) UnsetValue added in v0.4.0

func (o *ProduceResponse) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ProduceResponseData

type ProduceResponseData struct {
	Size int32  `json:"size,omitempty"`
	Type string `json:"type,omitempty"`
}

ProduceResponseData struct for ProduceResponseData

func NewProduceResponseData added in v0.4.0

func NewProduceResponseData(size int32, type_ string) *ProduceResponseData

NewProduceResponseData instantiates a new ProduceResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProduceResponseDataWithDefaults added in v0.4.0

func NewProduceResponseDataWithDefaults() *ProduceResponseData

NewProduceResponseDataWithDefaults instantiates a new ProduceResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProduceResponseData) GetSize added in v0.4.0

func (o *ProduceResponseData) GetSize() int32

GetSize returns the Size field value

func (*ProduceResponseData) GetSizeOk added in v0.4.0

func (o *ProduceResponseData) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ProduceResponseData) GetType added in v0.4.0

func (o *ProduceResponseData) GetType() string

GetType returns the Type field value

func (*ProduceResponseData) GetTypeOk added in v0.4.0

func (o *ProduceResponseData) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ProduceResponseData) MarshalJSON added in v0.4.0

func (o ProduceResponseData) MarshalJSON() ([]byte, error)

func (*ProduceResponseData) Redact added in v0.4.0

func (o *ProduceResponseData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ProduceResponseData) SetSize added in v0.4.0

func (o *ProduceResponseData) SetSize(v int32)

SetSize sets field value

func (*ProduceResponseData) SetType added in v0.4.0

func (o *ProduceResponseData) SetType(v string)

SetType sets field value

type ReassignmentData

type ReassignmentData struct {
	Kind             string           `json:"kind,omitempty"`
	Metadata         ResourceMetadata `json:"metadata,omitempty"`
	ClusterId        string           `json:"cluster_id,omitempty"`
	TopicName        string           `json:"topic_name,omitempty"`
	PartitionId      int32            `json:"partition_id,omitempty"`
	AddingReplicas   []int32          `json:"adding_replicas,omitempty"`
	RemovingReplicas []int32          `json:"removing_replicas,omitempty"`
	Replicas         Relationship     `json:"replicas,omitempty"`
}

ReassignmentData struct for ReassignmentData

func NewReassignmentData added in v0.4.0

func NewReassignmentData(kind string, metadata ResourceMetadata, clusterId string, topicName string, partitionId int32, addingReplicas []int32, removingReplicas []int32, replicas Relationship) *ReassignmentData

NewReassignmentData instantiates a new ReassignmentData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReassignmentDataWithDefaults added in v0.4.0

func NewReassignmentDataWithDefaults() *ReassignmentData

NewReassignmentDataWithDefaults instantiates a new ReassignmentData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReassignmentData) GetAddingReplicas added in v0.4.0

func (o *ReassignmentData) GetAddingReplicas() []int32

GetAddingReplicas returns the AddingReplicas field value

func (*ReassignmentData) GetAddingReplicasOk added in v0.4.0

func (o *ReassignmentData) GetAddingReplicasOk() (*[]int32, bool)

GetAddingReplicasOk returns a tuple with the AddingReplicas field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetClusterId added in v0.4.0

func (o *ReassignmentData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReassignmentData) GetClusterIdOk added in v0.4.0

func (o *ReassignmentData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetKind added in v0.4.0

func (o *ReassignmentData) GetKind() string

GetKind returns the Kind field value

func (*ReassignmentData) GetKindOk added in v0.4.0

func (o *ReassignmentData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetMetadata added in v0.4.0

func (o *ReassignmentData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ReassignmentData) GetMetadataOk added in v0.4.0

func (o *ReassignmentData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetPartitionId added in v0.4.0

func (o *ReassignmentData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReassignmentData) GetPartitionIdOk added in v0.4.0

func (o *ReassignmentData) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetRemovingReplicas added in v0.4.0

func (o *ReassignmentData) GetRemovingReplicas() []int32

GetRemovingReplicas returns the RemovingReplicas field value

func (*ReassignmentData) GetRemovingReplicasOk added in v0.4.0

func (o *ReassignmentData) GetRemovingReplicasOk() (*[]int32, bool)

GetRemovingReplicasOk returns a tuple with the RemovingReplicas field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetReplicas added in v0.4.0

func (o *ReassignmentData) GetReplicas() Relationship

GetReplicas returns the Replicas field value

func (*ReassignmentData) GetReplicasOk added in v0.4.0

func (o *ReassignmentData) GetReplicasOk() (*Relationship, bool)

GetReplicasOk returns a tuple with the Replicas field value and a boolean to check if the value has been set.

func (*ReassignmentData) GetTopicName added in v0.4.0

func (o *ReassignmentData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReassignmentData) GetTopicNameOk added in v0.4.0

func (o *ReassignmentData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (ReassignmentData) MarshalJSON added in v0.4.0

func (o ReassignmentData) MarshalJSON() ([]byte, error)

func (*ReassignmentData) Redact added in v0.4.0

func (o *ReassignmentData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReassignmentData) SetAddingReplicas added in v0.4.0

func (o *ReassignmentData) SetAddingReplicas(v []int32)

SetAddingReplicas sets field value

func (*ReassignmentData) SetClusterId added in v0.4.0

func (o *ReassignmentData) SetClusterId(v string)

SetClusterId sets field value

func (*ReassignmentData) SetKind added in v0.4.0

func (o *ReassignmentData) SetKind(v string)

SetKind sets field value

func (*ReassignmentData) SetMetadata added in v0.4.0

func (o *ReassignmentData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ReassignmentData) SetPartitionId added in v0.4.0

func (o *ReassignmentData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReassignmentData) SetRemovingReplicas added in v0.4.0

func (o *ReassignmentData) SetRemovingReplicas(v []int32)

SetRemovingReplicas sets field value

func (*ReassignmentData) SetReplicas added in v0.4.0

func (o *ReassignmentData) SetReplicas(v Relationship)

SetReplicas sets field value

func (*ReassignmentData) SetTopicName added in v0.4.0

func (o *ReassignmentData) SetTopicName(v string)

SetTopicName sets field value

type ReassignmentDataAllOf

type ReassignmentDataAllOf struct {
	ClusterId        string       `json:"cluster_id,omitempty"`
	TopicName        string       `json:"topic_name,omitempty"`
	PartitionId      int32        `json:"partition_id,omitempty"`
	AddingReplicas   []int32      `json:"adding_replicas,omitempty"`
	RemovingReplicas []int32      `json:"removing_replicas,omitempty"`
	Replicas         Relationship `json:"replicas,omitempty"`
}

ReassignmentDataAllOf struct for ReassignmentDataAllOf

func NewReassignmentDataAllOf added in v0.4.0

func NewReassignmentDataAllOf(clusterId string, topicName string, partitionId int32, addingReplicas []int32, removingReplicas []int32, replicas Relationship) *ReassignmentDataAllOf

NewReassignmentDataAllOf instantiates a new ReassignmentDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReassignmentDataAllOfWithDefaults added in v0.4.0

func NewReassignmentDataAllOfWithDefaults() *ReassignmentDataAllOf

NewReassignmentDataAllOfWithDefaults instantiates a new ReassignmentDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReassignmentDataAllOf) GetAddingReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) GetAddingReplicas() []int32

GetAddingReplicas returns the AddingReplicas field value

func (*ReassignmentDataAllOf) GetAddingReplicasOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetAddingReplicasOk() (*[]int32, bool)

GetAddingReplicasOk returns a tuple with the AddingReplicas field value and a boolean to check if the value has been set.

func (*ReassignmentDataAllOf) GetClusterId added in v0.4.0

func (o *ReassignmentDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReassignmentDataAllOf) GetClusterIdOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReassignmentDataAllOf) GetPartitionId added in v0.4.0

func (o *ReassignmentDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReassignmentDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReassignmentDataAllOf) GetRemovingReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) GetRemovingReplicas() []int32

GetRemovingReplicas returns the RemovingReplicas field value

func (*ReassignmentDataAllOf) GetRemovingReplicasOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetRemovingReplicasOk() (*[]int32, bool)

GetRemovingReplicasOk returns a tuple with the RemovingReplicas field value and a boolean to check if the value has been set.

func (*ReassignmentDataAllOf) GetReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) GetReplicas() Relationship

GetReplicas returns the Replicas field value

func (*ReassignmentDataAllOf) GetReplicasOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetReplicasOk() (*Relationship, bool)

GetReplicasOk returns a tuple with the Replicas field value and a boolean to check if the value has been set.

func (*ReassignmentDataAllOf) GetTopicName added in v0.4.0

func (o *ReassignmentDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReassignmentDataAllOf) GetTopicNameOk added in v0.4.0

func (o *ReassignmentDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (ReassignmentDataAllOf) MarshalJSON added in v0.4.0

func (o ReassignmentDataAllOf) MarshalJSON() ([]byte, error)

func (*ReassignmentDataAllOf) Redact added in v0.4.0

func (o *ReassignmentDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReassignmentDataAllOf) SetAddingReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) SetAddingReplicas(v []int32)

SetAddingReplicas sets field value

func (*ReassignmentDataAllOf) SetClusterId added in v0.4.0

func (o *ReassignmentDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ReassignmentDataAllOf) SetPartitionId added in v0.4.0

func (o *ReassignmentDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReassignmentDataAllOf) SetRemovingReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) SetRemovingReplicas(v []int32)

SetRemovingReplicas sets field value

func (*ReassignmentDataAllOf) SetReplicas added in v0.4.0

func (o *ReassignmentDataAllOf) SetReplicas(v Relationship)

SetReplicas sets field value

func (*ReassignmentDataAllOf) SetTopicName added in v0.4.0

func (o *ReassignmentDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type ReassignmentDataList

type ReassignmentDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ReassignmentData         `json:"data,omitempty"`
}

ReassignmentDataList struct for ReassignmentDataList

func NewReassignmentDataList added in v0.4.0

func NewReassignmentDataList(kind string, metadata ResourceCollectionMetadata, data []ReassignmentData) *ReassignmentDataList

NewReassignmentDataList instantiates a new ReassignmentDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReassignmentDataListWithDefaults added in v0.4.0

func NewReassignmentDataListWithDefaults() *ReassignmentDataList

NewReassignmentDataListWithDefaults instantiates a new ReassignmentDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReassignmentDataList) GetData added in v0.4.0

func (o *ReassignmentDataList) GetData() []ReassignmentData

GetData returns the Data field value

func (*ReassignmentDataList) GetDataOk added in v0.4.0

func (o *ReassignmentDataList) GetDataOk() (*[]ReassignmentData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ReassignmentDataList) GetKind added in v0.4.0

func (o *ReassignmentDataList) GetKind() string

GetKind returns the Kind field value

func (*ReassignmentDataList) GetKindOk added in v0.4.0

func (o *ReassignmentDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReassignmentDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ReassignmentDataList) GetMetadataOk added in v0.4.0

func (o *ReassignmentDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ReassignmentDataList) MarshalJSON added in v0.4.0

func (o ReassignmentDataList) MarshalJSON() ([]byte, error)

func (*ReassignmentDataList) Redact added in v0.4.0

func (o *ReassignmentDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReassignmentDataList) SetData added in v0.4.0

func (o *ReassignmentDataList) SetData(v []ReassignmentData)

SetData sets field value

func (*ReassignmentDataList) SetKind added in v0.4.0

func (o *ReassignmentDataList) SetKind(v string)

SetKind sets field value

func (*ReassignmentDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ReassignmentDataListAllOf

type ReassignmentDataListAllOf struct {
	Data []ReassignmentData `json:"data,omitempty"`
}

ReassignmentDataListAllOf struct for ReassignmentDataListAllOf

func NewReassignmentDataListAllOf added in v0.4.0

func NewReassignmentDataListAllOf(data []ReassignmentData) *ReassignmentDataListAllOf

NewReassignmentDataListAllOf instantiates a new ReassignmentDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReassignmentDataListAllOfWithDefaults added in v0.4.0

func NewReassignmentDataListAllOfWithDefaults() *ReassignmentDataListAllOf

NewReassignmentDataListAllOfWithDefaults instantiates a new ReassignmentDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReassignmentDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ReassignmentDataListAllOf) GetDataOk added in v0.4.0

func (o *ReassignmentDataListAllOf) GetDataOk() (*[]ReassignmentData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ReassignmentDataListAllOf) MarshalJSON added in v0.4.0

func (o ReassignmentDataListAllOf) MarshalJSON() ([]byte, error)

func (*ReassignmentDataListAllOf) Redact added in v0.4.0

func (o *ReassignmentDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReassignmentDataListAllOf) SetData added in v0.4.0

SetData sets field value

type RecordsV3Api added in v0.4.0

type RecordsV3Api interface {

	/*
			ProduceRecord Produce Records

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Produce records to the given topic, returning delivery reports for each
		record produced. This API can be used in streaming mode by setting
		"Transfer-Encoding: chunked" header. For as long as the connection is
		kept open, the server will keep accepting records. Records are streamed
		to and from the server as Concatenated JSON. For each record sent to the
		server, the server will asynchronously send back a delivery report, in
		the same order, each with its own error_code. An error_code of 200
		indicates success. The HTTP status code will be HTTP 200 OK as long as
		the connection is successfully established. To identify records that
		have encountered an error, check the error_code of each delivery report.

		This API currently does not support Schema Registry integration. Sending
		schemas is not supported. Only BINARY, JSON, and STRING formats are
		supported.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiProduceRecordRequest
	*/
	ProduceRecord(ctx _context.Context, clusterId string, topicName string) ApiProduceRecordRequest

	// ProduceRecordExecute executes the request
	//  @return ProduceResponse
	ProduceRecordExecute(r ApiProduceRecordRequest) (ProduceResponse, *_nethttp.Response, error)
}

type RecordsV3ApiService added in v0.4.0

type RecordsV3ApiService service

RecordsV3ApiService RecordsV3Api service

func (*RecordsV3ApiService) ProduceRecord added in v0.14.0

func (a *RecordsV3ApiService) ProduceRecord(ctx _context.Context, clusterId string, topicName string) ApiProduceRecordRequest

ProduceRecord Produce Records

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Produce records to the given topic, returning delivery reports for each record produced. This API can be used in streaming mode by setting "Transfer-Encoding: chunked" header. For as long as the connection is kept open, the server will keep accepting records. Records are streamed to and from the server as Concatenated JSON. For each record sent to the server, the server will asynchronously send back a delivery report, in the same order, each with its own error_code. An error_code of 200 indicates success. The HTTP status code will be HTTP 200 OK as long as the connection is successfully established. To identify records that have encountered an error, check the error_code of each delivery report.

This API currently does not support Schema Registry integration. Sending schemas is not supported. Only BINARY, JSON, and STRING formats are supported.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiProduceRecordRequest

func (*RecordsV3ApiService) ProduceRecordExecute added in v0.14.0

Execute executes the request

@return ProduceResponse

type Relationship

type Relationship struct {
	Related string `json:"related,omitempty"`
}

Relationship struct for Relationship

func NewRelationship added in v0.4.0

func NewRelationship(related string) *Relationship

NewRelationship instantiates a new Relationship object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRelationshipWithDefaults added in v0.4.0

func NewRelationshipWithDefaults() *Relationship

NewRelationshipWithDefaults instantiates a new Relationship object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Relationship) GetRelated added in v0.4.0

func (o *Relationship) GetRelated() string

GetRelated returns the Related field value

func (*Relationship) GetRelatedOk added in v0.4.0

func (o *Relationship) GetRelatedOk() (*string, bool)

GetRelatedOk returns a tuple with the Related field value and a boolean to check if the value has been set.

func (Relationship) MarshalJSON added in v0.4.0

func (o Relationship) MarshalJSON() ([]byte, error)

func (*Relationship) Redact added in v0.4.0

func (o *Relationship) Redact()

Redact resets all sensitive fields to their zero value.

func (*Relationship) SetRelated added in v0.4.0

func (o *Relationship) SetRelated(v string)

SetRelated sets field value

type RemoveBrokerTaskData

type RemoveBrokerTaskData struct {
	Kind                         string           `json:"kind,omitempty"`
	Metadata                     ResourceMetadata `json:"metadata,omitempty"`
	ClusterId                    string           `json:"cluster_id,omitempty"`
	BrokerId                     int32            `json:"broker_id,omitempty"`
	ShutdownScheduled            bool             `json:"shutdown_scheduled,omitempty"`
	BrokerReplicaExclusionStatus string           `json:"broker_replica_exclusion_status,omitempty"`
	PartitionReassignmentStatus  string           `json:"partition_reassignment_status,omitempty"`
	BrokerShutdownStatus         string           `json:"broker_shutdown_status,omitempty"`
	ErrorCode                    NullableInt32    `json:"error_code,omitempty"`
	ErrorMessage                 NullableString   `json:"error_message,omitempty"`
	Broker                       Relationship     `json:"broker,omitempty"`
}

RemoveBrokerTaskData struct for RemoveBrokerTaskData

func NewRemoveBrokerTaskData added in v0.4.0

func NewRemoveBrokerTaskData(kind string, metadata ResourceMetadata, clusterId string, brokerId int32, shutdownScheduled bool, brokerReplicaExclusionStatus string, partitionReassignmentStatus string, brokerShutdownStatus string, broker Relationship) *RemoveBrokerTaskData

NewRemoveBrokerTaskData instantiates a new RemoveBrokerTaskData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveBrokerTaskDataWithDefaults added in v0.4.0

func NewRemoveBrokerTaskDataWithDefaults() *RemoveBrokerTaskData

NewRemoveBrokerTaskDataWithDefaults instantiates a new RemoveBrokerTaskData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveBrokerTaskData) GetBroker added in v0.4.0

func (o *RemoveBrokerTaskData) GetBroker() Relationship

GetBroker returns the Broker field value

func (*RemoveBrokerTaskData) GetBrokerId added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*RemoveBrokerTaskData) GetBrokerIdOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetBrokerOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerOk() (*Relationship, bool)

GetBrokerOk returns a tuple with the Broker field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetBrokerReplicaExclusionStatus added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerReplicaExclusionStatus() string

GetBrokerReplicaExclusionStatus returns the BrokerReplicaExclusionStatus field value

func (*RemoveBrokerTaskData) GetBrokerReplicaExclusionStatusOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerReplicaExclusionStatusOk() (*string, bool)

GetBrokerReplicaExclusionStatusOk returns a tuple with the BrokerReplicaExclusionStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetBrokerShutdownStatus added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerShutdownStatus() string

GetBrokerShutdownStatus returns the BrokerShutdownStatus field value

func (*RemoveBrokerTaskData) GetBrokerShutdownStatusOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetBrokerShutdownStatusOk() (*string, bool)

GetBrokerShutdownStatusOk returns a tuple with the BrokerShutdownStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetClusterId added in v0.4.0

func (o *RemoveBrokerTaskData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*RemoveBrokerTaskData) GetClusterIdOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskData) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RemoveBrokerTaskData) GetErrorCodeOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RemoveBrokerTaskData) GetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskData) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RemoveBrokerTaskData) GetErrorMessageOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RemoveBrokerTaskData) GetKind added in v0.4.0

func (o *RemoveBrokerTaskData) GetKind() string

GetKind returns the Kind field value

func (*RemoveBrokerTaskData) GetKindOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetMetadata added in v0.4.0

func (o *RemoveBrokerTaskData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*RemoveBrokerTaskData) GetMetadataOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetPartitionReassignmentStatus added in v0.4.0

func (o *RemoveBrokerTaskData) GetPartitionReassignmentStatus() string

GetPartitionReassignmentStatus returns the PartitionReassignmentStatus field value

func (*RemoveBrokerTaskData) GetPartitionReassignmentStatusOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetPartitionReassignmentStatusOk() (*string, bool)

GetPartitionReassignmentStatusOk returns a tuple with the PartitionReassignmentStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) GetShutdownScheduled added in v0.4.0

func (o *RemoveBrokerTaskData) GetShutdownScheduled() bool

GetShutdownScheduled returns the ShutdownScheduled field value

func (*RemoveBrokerTaskData) GetShutdownScheduledOk added in v0.4.0

func (o *RemoveBrokerTaskData) GetShutdownScheduledOk() (*bool, bool)

GetShutdownScheduledOk returns a tuple with the ShutdownScheduled field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskData) HasErrorCode added in v0.4.0

func (o *RemoveBrokerTaskData) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*RemoveBrokerTaskData) HasErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskData) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (RemoveBrokerTaskData) MarshalJSON added in v0.4.0

func (o RemoveBrokerTaskData) MarshalJSON() ([]byte, error)

func (*RemoveBrokerTaskData) Redact added in v0.4.0

func (o *RemoveBrokerTaskData) Redact()

Redact resets all sensitive fields to their zero value.

func (*RemoveBrokerTaskData) SetBroker added in v0.4.0

func (o *RemoveBrokerTaskData) SetBroker(v Relationship)

SetBroker sets field value

func (*RemoveBrokerTaskData) SetBrokerId added in v0.4.0

func (o *RemoveBrokerTaskData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*RemoveBrokerTaskData) SetBrokerReplicaExclusionStatus added in v0.4.0

func (o *RemoveBrokerTaskData) SetBrokerReplicaExclusionStatus(v string)

SetBrokerReplicaExclusionStatus sets field value

func (*RemoveBrokerTaskData) SetBrokerShutdownStatus added in v0.4.0

func (o *RemoveBrokerTaskData) SetBrokerShutdownStatus(v string)

SetBrokerShutdownStatus sets field value

func (*RemoveBrokerTaskData) SetClusterId added in v0.4.0

func (o *RemoveBrokerTaskData) SetClusterId(v string)

SetClusterId sets field value

func (*RemoveBrokerTaskData) SetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskData) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*RemoveBrokerTaskData) SetErrorCodeNil added in v0.4.0

func (o *RemoveBrokerTaskData) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*RemoveBrokerTaskData) SetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskData) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*RemoveBrokerTaskData) SetErrorMessageNil added in v0.4.0

func (o *RemoveBrokerTaskData) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*RemoveBrokerTaskData) SetKind added in v0.4.0

func (o *RemoveBrokerTaskData) SetKind(v string)

SetKind sets field value

func (*RemoveBrokerTaskData) SetMetadata added in v0.4.0

func (o *RemoveBrokerTaskData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*RemoveBrokerTaskData) SetPartitionReassignmentStatus added in v0.4.0

func (o *RemoveBrokerTaskData) SetPartitionReassignmentStatus(v string)

SetPartitionReassignmentStatus sets field value

func (*RemoveBrokerTaskData) SetShutdownScheduled added in v0.4.0

func (o *RemoveBrokerTaskData) SetShutdownScheduled(v bool)

SetShutdownScheduled sets field value

func (*RemoveBrokerTaskData) UnsetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskData) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*RemoveBrokerTaskData) UnsetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskData) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type RemoveBrokerTaskDataAllOf

type RemoveBrokerTaskDataAllOf struct {
	ClusterId                    string         `json:"cluster_id,omitempty"`
	BrokerId                     int32          `json:"broker_id,omitempty"`
	ShutdownScheduled            bool           `json:"shutdown_scheduled,omitempty"`
	BrokerReplicaExclusionStatus string         `json:"broker_replica_exclusion_status,omitempty"`
	PartitionReassignmentStatus  string         `json:"partition_reassignment_status,omitempty"`
	BrokerShutdownStatus         string         `json:"broker_shutdown_status,omitempty"`
	ErrorCode                    NullableInt32  `json:"error_code,omitempty"`
	ErrorMessage                 NullableString `json:"error_message,omitempty"`
	Broker                       Relationship   `json:"broker,omitempty"`
}

RemoveBrokerTaskDataAllOf struct for RemoveBrokerTaskDataAllOf

func NewRemoveBrokerTaskDataAllOf added in v0.4.0

func NewRemoveBrokerTaskDataAllOf(clusterId string, brokerId int32, shutdownScheduled bool, brokerReplicaExclusionStatus string, partitionReassignmentStatus string, brokerShutdownStatus string, broker Relationship) *RemoveBrokerTaskDataAllOf

NewRemoveBrokerTaskDataAllOf instantiates a new RemoveBrokerTaskDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveBrokerTaskDataAllOfWithDefaults added in v0.4.0

func NewRemoveBrokerTaskDataAllOfWithDefaults() *RemoveBrokerTaskDataAllOf

NewRemoveBrokerTaskDataAllOfWithDefaults instantiates a new RemoveBrokerTaskDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveBrokerTaskDataAllOf) GetBroker added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBroker() Relationship

GetBroker returns the Broker field value

func (*RemoveBrokerTaskDataAllOf) GetBrokerId added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*RemoveBrokerTaskDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetBrokerOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerOk() (*Relationship, bool)

GetBrokerOk returns a tuple with the Broker field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetBrokerReplicaExclusionStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerReplicaExclusionStatus() string

GetBrokerReplicaExclusionStatus returns the BrokerReplicaExclusionStatus field value

func (*RemoveBrokerTaskDataAllOf) GetBrokerReplicaExclusionStatusOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerReplicaExclusionStatusOk() (*string, bool)

GetBrokerReplicaExclusionStatusOk returns a tuple with the BrokerReplicaExclusionStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetBrokerShutdownStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerShutdownStatus() string

GetBrokerShutdownStatus returns the BrokerShutdownStatus field value

func (*RemoveBrokerTaskDataAllOf) GetBrokerShutdownStatusOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetBrokerShutdownStatusOk() (*string, bool)

GetBrokerShutdownStatusOk returns a tuple with the BrokerShutdownStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetClusterId added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*RemoveBrokerTaskDataAllOf) GetClusterIdOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RemoveBrokerTaskDataAllOf) GetErrorCodeOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RemoveBrokerTaskDataAllOf) GetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RemoveBrokerTaskDataAllOf) GetErrorMessageOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RemoveBrokerTaskDataAllOf) GetPartitionReassignmentStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetPartitionReassignmentStatus() string

GetPartitionReassignmentStatus returns the PartitionReassignmentStatus field value

func (*RemoveBrokerTaskDataAllOf) GetPartitionReassignmentStatusOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetPartitionReassignmentStatusOk() (*string, bool)

GetPartitionReassignmentStatusOk returns a tuple with the PartitionReassignmentStatus field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) GetShutdownScheduled added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetShutdownScheduled() bool

GetShutdownScheduled returns the ShutdownScheduled field value

func (*RemoveBrokerTaskDataAllOf) GetShutdownScheduledOk added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) GetShutdownScheduledOk() (*bool, bool)

GetShutdownScheduledOk returns a tuple with the ShutdownScheduled field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataAllOf) HasErrorCode added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*RemoveBrokerTaskDataAllOf) HasErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (RemoveBrokerTaskDataAllOf) MarshalJSON added in v0.4.0

func (o RemoveBrokerTaskDataAllOf) MarshalJSON() ([]byte, error)

func (*RemoveBrokerTaskDataAllOf) Redact added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*RemoveBrokerTaskDataAllOf) SetBroker added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetBroker(v Relationship)

SetBroker sets field value

func (*RemoveBrokerTaskDataAllOf) SetBrokerId added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*RemoveBrokerTaskDataAllOf) SetBrokerReplicaExclusionStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetBrokerReplicaExclusionStatus(v string)

SetBrokerReplicaExclusionStatus sets field value

func (*RemoveBrokerTaskDataAllOf) SetBrokerShutdownStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetBrokerShutdownStatus(v string)

SetBrokerShutdownStatus sets field value

func (*RemoveBrokerTaskDataAllOf) SetClusterId added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*RemoveBrokerTaskDataAllOf) SetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetErrorCode(v int32)

SetErrorCode gets a reference to the given NullableInt32 and assigns it to the ErrorCode field.

func (*RemoveBrokerTaskDataAllOf) SetErrorCodeNil added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetErrorCodeNil()

SetErrorCodeNil sets the value for ErrorCode to be an explicit nil

func (*RemoveBrokerTaskDataAllOf) SetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*RemoveBrokerTaskDataAllOf) SetErrorMessageNil added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*RemoveBrokerTaskDataAllOf) SetPartitionReassignmentStatus added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetPartitionReassignmentStatus(v string)

SetPartitionReassignmentStatus sets field value

func (*RemoveBrokerTaskDataAllOf) SetShutdownScheduled added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) SetShutdownScheduled(v bool)

SetShutdownScheduled sets field value

func (*RemoveBrokerTaskDataAllOf) UnsetErrorCode added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) UnsetErrorCode()

UnsetErrorCode ensures that no value is present for ErrorCode, not even an explicit nil

func (*RemoveBrokerTaskDataAllOf) UnsetErrorMessage added in v0.4.0

func (o *RemoveBrokerTaskDataAllOf) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

type RemoveBrokerTaskDataList

type RemoveBrokerTaskDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []RemoveBrokerTaskData     `json:"data,omitempty"`
}

RemoveBrokerTaskDataList struct for RemoveBrokerTaskDataList

func NewRemoveBrokerTaskDataList added in v0.4.0

func NewRemoveBrokerTaskDataList(kind string, metadata ResourceCollectionMetadata, data []RemoveBrokerTaskData) *RemoveBrokerTaskDataList

NewRemoveBrokerTaskDataList instantiates a new RemoveBrokerTaskDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveBrokerTaskDataListWithDefaults added in v0.4.0

func NewRemoveBrokerTaskDataListWithDefaults() *RemoveBrokerTaskDataList

NewRemoveBrokerTaskDataListWithDefaults instantiates a new RemoveBrokerTaskDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveBrokerTaskDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*RemoveBrokerTaskDataList) GetDataOk added in v0.4.0

func (o *RemoveBrokerTaskDataList) GetDataOk() (*[]RemoveBrokerTaskData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataList) GetKind added in v0.4.0

func (o *RemoveBrokerTaskDataList) GetKind() string

GetKind returns the Kind field value

func (*RemoveBrokerTaskDataList) GetKindOk added in v0.4.0

func (o *RemoveBrokerTaskDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*RemoveBrokerTaskDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*RemoveBrokerTaskDataList) GetMetadataOk added in v0.4.0

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (RemoveBrokerTaskDataList) MarshalJSON added in v0.4.0

func (o RemoveBrokerTaskDataList) MarshalJSON() ([]byte, error)

func (*RemoveBrokerTaskDataList) Redact added in v0.4.0

func (o *RemoveBrokerTaskDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*RemoveBrokerTaskDataList) SetData added in v0.4.0

SetData sets field value

func (*RemoveBrokerTaskDataList) SetKind added in v0.4.0

func (o *RemoveBrokerTaskDataList) SetKind(v string)

SetKind sets field value

func (*RemoveBrokerTaskDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type RemoveBrokerTaskDataListAllOf

type RemoveBrokerTaskDataListAllOf struct {
	Data []RemoveBrokerTaskData `json:"data,omitempty"`
}

RemoveBrokerTaskDataListAllOf struct for RemoveBrokerTaskDataListAllOf

func NewRemoveBrokerTaskDataListAllOf added in v0.4.0

func NewRemoveBrokerTaskDataListAllOf(data []RemoveBrokerTaskData) *RemoveBrokerTaskDataListAllOf

NewRemoveBrokerTaskDataListAllOf instantiates a new RemoveBrokerTaskDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveBrokerTaskDataListAllOfWithDefaults added in v0.4.0

func NewRemoveBrokerTaskDataListAllOfWithDefaults() *RemoveBrokerTaskDataListAllOf

NewRemoveBrokerTaskDataListAllOfWithDefaults instantiates a new RemoveBrokerTaskDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveBrokerTaskDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*RemoveBrokerTaskDataListAllOf) GetDataOk added in v0.4.0

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (RemoveBrokerTaskDataListAllOf) MarshalJSON added in v0.4.0

func (o RemoveBrokerTaskDataListAllOf) MarshalJSON() ([]byte, error)

func (*RemoveBrokerTaskDataListAllOf) Redact added in v0.4.0

func (o *RemoveBrokerTaskDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*RemoveBrokerTaskDataListAllOf) SetData added in v0.4.0

SetData sets field value

type RemoveBrokersRequestData

type RemoveBrokersRequestData struct {
	BrokerIds []int32 `json:"broker_ids,omitempty"`
}

RemoveBrokersRequestData struct for RemoveBrokersRequestData

func NewRemoveBrokersRequestData added in v0.4.0

func NewRemoveBrokersRequestData(brokerIds []int32) *RemoveBrokersRequestData

NewRemoveBrokersRequestData instantiates a new RemoveBrokersRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveBrokersRequestDataWithDefaults added in v0.4.0

func NewRemoveBrokersRequestDataWithDefaults() *RemoveBrokersRequestData

NewRemoveBrokersRequestDataWithDefaults instantiates a new RemoveBrokersRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveBrokersRequestData) GetBrokerIds added in v0.4.0

func (o *RemoveBrokersRequestData) GetBrokerIds() []int32

GetBrokerIds returns the BrokerIds field value

func (*RemoveBrokersRequestData) GetBrokerIdsOk added in v0.4.0

func (o *RemoveBrokersRequestData) GetBrokerIdsOk() (*[]int32, bool)

GetBrokerIdsOk returns a tuple with the BrokerIds field value and a boolean to check if the value has been set.

func (RemoveBrokersRequestData) MarshalJSON added in v0.4.0

func (o RemoveBrokersRequestData) MarshalJSON() ([]byte, error)

func (*RemoveBrokersRequestData) Redact added in v0.4.0

func (o *RemoveBrokersRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*RemoveBrokersRequestData) SetBrokerIds added in v0.4.0

func (o *RemoveBrokersRequestData) SetBrokerIds(v []int32)

SetBrokerIds sets field value

type ReplicaData

type ReplicaData struct {
	Kind        string           `json:"kind,omitempty"`
	Metadata    ResourceMetadata `json:"metadata,omitempty"`
	ClusterId   string           `json:"cluster_id,omitempty"`
	TopicName   string           `json:"topic_name,omitempty"`
	PartitionId int32            `json:"partition_id,omitempty"`
	BrokerId    int32            `json:"broker_id,omitempty"`
	IsLeader    bool             `json:"is_leader,omitempty"`
	IsInSync    bool             `json:"is_in_sync,omitempty"`
	Broker      Relationship     `json:"broker,omitempty"`
}

ReplicaData struct for ReplicaData

func NewReplicaData added in v0.4.0

func NewReplicaData(kind string, metadata ResourceMetadata, clusterId string, topicName string, partitionId int32, brokerId int32, isLeader bool, isInSync bool, broker Relationship) *ReplicaData

NewReplicaData instantiates a new ReplicaData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaDataWithDefaults added in v0.4.0

func NewReplicaDataWithDefaults() *ReplicaData

NewReplicaDataWithDefaults instantiates a new ReplicaData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaData) GetBroker added in v0.4.0

func (o *ReplicaData) GetBroker() Relationship

GetBroker returns the Broker field value

func (*ReplicaData) GetBrokerId added in v0.4.0

func (o *ReplicaData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*ReplicaData) GetBrokerIdOk added in v0.4.0

func (o *ReplicaData) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*ReplicaData) GetBrokerOk added in v0.4.0

func (o *ReplicaData) GetBrokerOk() (*Relationship, bool)

GetBrokerOk returns a tuple with the Broker field value and a boolean to check if the value has been set.

func (*ReplicaData) GetClusterId added in v0.4.0

func (o *ReplicaData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReplicaData) GetClusterIdOk added in v0.4.0

func (o *ReplicaData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReplicaData) GetIsInSync added in v0.4.0

func (o *ReplicaData) GetIsInSync() bool

GetIsInSync returns the IsInSync field value

func (*ReplicaData) GetIsInSyncOk added in v0.4.0

func (o *ReplicaData) GetIsInSyncOk() (*bool, bool)

GetIsInSyncOk returns a tuple with the IsInSync field value and a boolean to check if the value has been set.

func (*ReplicaData) GetIsLeader added in v0.4.0

func (o *ReplicaData) GetIsLeader() bool

GetIsLeader returns the IsLeader field value

func (*ReplicaData) GetIsLeaderOk added in v0.4.0

func (o *ReplicaData) GetIsLeaderOk() (*bool, bool)

GetIsLeaderOk returns a tuple with the IsLeader field value and a boolean to check if the value has been set.

func (*ReplicaData) GetKind added in v0.4.0

func (o *ReplicaData) GetKind() string

GetKind returns the Kind field value

func (*ReplicaData) GetKindOk added in v0.4.0

func (o *ReplicaData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReplicaData) GetMetadata added in v0.4.0

func (o *ReplicaData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ReplicaData) GetMetadataOk added in v0.4.0

func (o *ReplicaData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ReplicaData) GetPartitionId added in v0.4.0

func (o *ReplicaData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReplicaData) GetPartitionIdOk added in v0.4.0

func (o *ReplicaData) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReplicaData) GetTopicName added in v0.4.0

func (o *ReplicaData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReplicaData) GetTopicNameOk added in v0.4.0

func (o *ReplicaData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (ReplicaData) MarshalJSON added in v0.4.0

func (o ReplicaData) MarshalJSON() ([]byte, error)

func (*ReplicaData) Redact added in v0.4.0

func (o *ReplicaData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaData) SetBroker added in v0.4.0

func (o *ReplicaData) SetBroker(v Relationship)

SetBroker sets field value

func (*ReplicaData) SetBrokerId added in v0.4.0

func (o *ReplicaData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*ReplicaData) SetClusterId added in v0.4.0

func (o *ReplicaData) SetClusterId(v string)

SetClusterId sets field value

func (*ReplicaData) SetIsInSync added in v0.4.0

func (o *ReplicaData) SetIsInSync(v bool)

SetIsInSync sets field value

func (*ReplicaData) SetIsLeader added in v0.4.0

func (o *ReplicaData) SetIsLeader(v bool)

SetIsLeader sets field value

func (*ReplicaData) SetKind added in v0.4.0

func (o *ReplicaData) SetKind(v string)

SetKind sets field value

func (*ReplicaData) SetMetadata added in v0.4.0

func (o *ReplicaData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ReplicaData) SetPartitionId added in v0.4.0

func (o *ReplicaData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReplicaData) SetTopicName added in v0.4.0

func (o *ReplicaData) SetTopicName(v string)

SetTopicName sets field value

type ReplicaDataAllOf

type ReplicaDataAllOf struct {
	ClusterId   string       `json:"cluster_id,omitempty"`
	TopicName   string       `json:"topic_name,omitempty"`
	PartitionId int32        `json:"partition_id,omitempty"`
	BrokerId    int32        `json:"broker_id,omitempty"`
	IsLeader    bool         `json:"is_leader,omitempty"`
	IsInSync    bool         `json:"is_in_sync,omitempty"`
	Broker      Relationship `json:"broker,omitempty"`
}

ReplicaDataAllOf struct for ReplicaDataAllOf

func NewReplicaDataAllOf added in v0.4.0

func NewReplicaDataAllOf(clusterId string, topicName string, partitionId int32, brokerId int32, isLeader bool, isInSync bool, broker Relationship) *ReplicaDataAllOf

NewReplicaDataAllOf instantiates a new ReplicaDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaDataAllOfWithDefaults added in v0.4.0

func NewReplicaDataAllOfWithDefaults() *ReplicaDataAllOf

NewReplicaDataAllOfWithDefaults instantiates a new ReplicaDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaDataAllOf) GetBroker added in v0.4.0

func (o *ReplicaDataAllOf) GetBroker() Relationship

GetBroker returns the Broker field value

func (*ReplicaDataAllOf) GetBrokerId added in v0.4.0

func (o *ReplicaDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*ReplicaDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *ReplicaDataAllOf) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetBrokerOk added in v0.4.0

func (o *ReplicaDataAllOf) GetBrokerOk() (*Relationship, bool)

GetBrokerOk returns a tuple with the Broker field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetClusterId added in v0.4.0

func (o *ReplicaDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReplicaDataAllOf) GetClusterIdOk added in v0.4.0

func (o *ReplicaDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetIsInSync added in v0.4.0

func (o *ReplicaDataAllOf) GetIsInSync() bool

GetIsInSync returns the IsInSync field value

func (*ReplicaDataAllOf) GetIsInSyncOk added in v0.4.0

func (o *ReplicaDataAllOf) GetIsInSyncOk() (*bool, bool)

GetIsInSyncOk returns a tuple with the IsInSync field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetIsLeader added in v0.4.0

func (o *ReplicaDataAllOf) GetIsLeader() bool

GetIsLeader returns the IsLeader field value

func (*ReplicaDataAllOf) GetIsLeaderOk added in v0.4.0

func (o *ReplicaDataAllOf) GetIsLeaderOk() (*bool, bool)

GetIsLeaderOk returns a tuple with the IsLeader field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetPartitionId added in v0.4.0

func (o *ReplicaDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReplicaDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *ReplicaDataAllOf) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReplicaDataAllOf) GetTopicName added in v0.4.0

func (o *ReplicaDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReplicaDataAllOf) GetTopicNameOk added in v0.4.0

func (o *ReplicaDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (ReplicaDataAllOf) MarshalJSON added in v0.4.0

func (o ReplicaDataAllOf) MarshalJSON() ([]byte, error)

func (*ReplicaDataAllOf) Redact added in v0.4.0

func (o *ReplicaDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaDataAllOf) SetBroker added in v0.4.0

func (o *ReplicaDataAllOf) SetBroker(v Relationship)

SetBroker sets field value

func (*ReplicaDataAllOf) SetBrokerId added in v0.4.0

func (o *ReplicaDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*ReplicaDataAllOf) SetClusterId added in v0.4.0

func (o *ReplicaDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ReplicaDataAllOf) SetIsInSync added in v0.4.0

func (o *ReplicaDataAllOf) SetIsInSync(v bool)

SetIsInSync sets field value

func (*ReplicaDataAllOf) SetIsLeader added in v0.4.0

func (o *ReplicaDataAllOf) SetIsLeader(v bool)

SetIsLeader sets field value

func (*ReplicaDataAllOf) SetPartitionId added in v0.4.0

func (o *ReplicaDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReplicaDataAllOf) SetTopicName added in v0.4.0

func (o *ReplicaDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type ReplicaDataList

type ReplicaDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ReplicaData              `json:"data,omitempty"`
}

ReplicaDataList struct for ReplicaDataList

func NewReplicaDataList added in v0.4.0

func NewReplicaDataList(kind string, metadata ResourceCollectionMetadata, data []ReplicaData) *ReplicaDataList

NewReplicaDataList instantiates a new ReplicaDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaDataListWithDefaults added in v0.4.0

func NewReplicaDataListWithDefaults() *ReplicaDataList

NewReplicaDataListWithDefaults instantiates a new ReplicaDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaDataList) GetData added in v0.4.0

func (o *ReplicaDataList) GetData() []ReplicaData

GetData returns the Data field value

func (*ReplicaDataList) GetDataOk added in v0.4.0

func (o *ReplicaDataList) GetDataOk() (*[]ReplicaData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ReplicaDataList) GetKind added in v0.4.0

func (o *ReplicaDataList) GetKind() string

GetKind returns the Kind field value

func (*ReplicaDataList) GetKindOk added in v0.4.0

func (o *ReplicaDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReplicaDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ReplicaDataList) GetMetadataOk added in v0.4.0

func (o *ReplicaDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ReplicaDataList) MarshalJSON added in v0.4.0

func (o ReplicaDataList) MarshalJSON() ([]byte, error)

func (*ReplicaDataList) Redact added in v0.4.0

func (o *ReplicaDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaDataList) SetData added in v0.4.0

func (o *ReplicaDataList) SetData(v []ReplicaData)

SetData sets field value

func (*ReplicaDataList) SetKind added in v0.4.0

func (o *ReplicaDataList) SetKind(v string)

SetKind sets field value

func (*ReplicaDataList) SetMetadata added in v0.4.0

func (o *ReplicaDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type ReplicaDataListAllOf

type ReplicaDataListAllOf struct {
	Data []ReplicaData `json:"data,omitempty"`
}

ReplicaDataListAllOf struct for ReplicaDataListAllOf

func NewReplicaDataListAllOf added in v0.4.0

func NewReplicaDataListAllOf(data []ReplicaData) *ReplicaDataListAllOf

NewReplicaDataListAllOf instantiates a new ReplicaDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaDataListAllOfWithDefaults added in v0.4.0

func NewReplicaDataListAllOfWithDefaults() *ReplicaDataListAllOf

NewReplicaDataListAllOfWithDefaults instantiates a new ReplicaDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaDataListAllOf) GetData added in v0.4.0

func (o *ReplicaDataListAllOf) GetData() []ReplicaData

GetData returns the Data field value

func (*ReplicaDataListAllOf) GetDataOk added in v0.4.0

func (o *ReplicaDataListAllOf) GetDataOk() (*[]ReplicaData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ReplicaDataListAllOf) MarshalJSON added in v0.4.0

func (o ReplicaDataListAllOf) MarshalJSON() ([]byte, error)

func (*ReplicaDataListAllOf) Redact added in v0.4.0

func (o *ReplicaDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaDataListAllOf) SetData added in v0.4.0

func (o *ReplicaDataListAllOf) SetData(v []ReplicaData)

SetData sets field value

type ReplicaStatusData

type ReplicaStatusData struct {
	Kind               string           `json:"kind,omitempty"`
	Metadata           ResourceMetadata `json:"metadata,omitempty"`
	ClusterId          string           `json:"cluster_id,omitempty"`
	TopicName          string           `json:"topic_name,omitempty"`
	BrokerId           int32            `json:"broker_id,omitempty"`
	PartitionId        int32            `json:"partition_id,omitempty"`
	IsLeader           bool             `json:"is_leader,omitempty"`
	IsObserver         bool             `json:"is_observer,omitempty"`
	IsIsrEligible      bool             `json:"is_isr_eligible,omitempty"`
	IsInIsr            bool             `json:"is_in_isr,omitempty"`
	IsCaughtUp         bool             `json:"is_caught_up,omitempty"`
	LogStartOffset     int64            `json:"log_start_offset,omitempty"`
	LogEndOffset       int64            `json:"log_end_offset,omitempty"`
	LastCaughtUpTimeMs int64            `json:"last_caught_up_time_ms,omitempty"`
	LastFetchTimeMs    int64            `json:"last_fetch_time_ms,omitempty"`
	LinkName           *string          `json:"link_name,omitempty"`
}

ReplicaStatusData struct for ReplicaStatusData

func NewReplicaStatusData added in v0.4.0

func NewReplicaStatusData(kind string, metadata ResourceMetadata, clusterId string, topicName string, brokerId int32, partitionId int32, isLeader bool, isObserver bool, isIsrEligible bool, isInIsr bool, isCaughtUp bool, logStartOffset int64, logEndOffset int64, lastCaughtUpTimeMs int64, lastFetchTimeMs int64) *ReplicaStatusData

NewReplicaStatusData instantiates a new ReplicaStatusData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaStatusDataWithDefaults added in v0.4.0

func NewReplicaStatusDataWithDefaults() *ReplicaStatusData

NewReplicaStatusDataWithDefaults instantiates a new ReplicaStatusData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaStatusData) GetBrokerId added in v0.4.0

func (o *ReplicaStatusData) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*ReplicaStatusData) GetBrokerIdOk added in v0.4.0

func (o *ReplicaStatusData) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetClusterId added in v0.4.0

func (o *ReplicaStatusData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReplicaStatusData) GetClusterIdOk added in v0.4.0

func (o *ReplicaStatusData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetIsCaughtUp added in v0.4.0

func (o *ReplicaStatusData) GetIsCaughtUp() bool

GetIsCaughtUp returns the IsCaughtUp field value

func (*ReplicaStatusData) GetIsCaughtUpOk added in v0.4.0

func (o *ReplicaStatusData) GetIsCaughtUpOk() (*bool, bool)

GetIsCaughtUpOk returns a tuple with the IsCaughtUp field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetIsInIsr added in v0.4.0

func (o *ReplicaStatusData) GetIsInIsr() bool

GetIsInIsr returns the IsInIsr field value

func (*ReplicaStatusData) GetIsInIsrOk added in v0.4.0

func (o *ReplicaStatusData) GetIsInIsrOk() (*bool, bool)

GetIsInIsrOk returns a tuple with the IsInIsr field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetIsIsrEligible added in v0.4.0

func (o *ReplicaStatusData) GetIsIsrEligible() bool

GetIsIsrEligible returns the IsIsrEligible field value

func (*ReplicaStatusData) GetIsIsrEligibleOk added in v0.4.0

func (o *ReplicaStatusData) GetIsIsrEligibleOk() (*bool, bool)

GetIsIsrEligibleOk returns a tuple with the IsIsrEligible field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetIsLeader added in v0.4.0

func (o *ReplicaStatusData) GetIsLeader() bool

GetIsLeader returns the IsLeader field value

func (*ReplicaStatusData) GetIsLeaderOk added in v0.4.0

func (o *ReplicaStatusData) GetIsLeaderOk() (*bool, bool)

GetIsLeaderOk returns a tuple with the IsLeader field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetIsObserver added in v0.4.0

func (o *ReplicaStatusData) GetIsObserver() bool

GetIsObserver returns the IsObserver field value

func (*ReplicaStatusData) GetIsObserverOk added in v0.4.0

func (o *ReplicaStatusData) GetIsObserverOk() (*bool, bool)

GetIsObserverOk returns a tuple with the IsObserver field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetKind added in v0.4.0

func (o *ReplicaStatusData) GetKind() string

GetKind returns the Kind field value

func (*ReplicaStatusData) GetKindOk added in v0.4.0

func (o *ReplicaStatusData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetLastCaughtUpTimeMs added in v0.4.0

func (o *ReplicaStatusData) GetLastCaughtUpTimeMs() int64

GetLastCaughtUpTimeMs returns the LastCaughtUpTimeMs field value

func (*ReplicaStatusData) GetLastCaughtUpTimeMsOk added in v0.4.0

func (o *ReplicaStatusData) GetLastCaughtUpTimeMsOk() (*int64, bool)

GetLastCaughtUpTimeMsOk returns a tuple with the LastCaughtUpTimeMs field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetLastFetchTimeMs added in v0.4.0

func (o *ReplicaStatusData) GetLastFetchTimeMs() int64

GetLastFetchTimeMs returns the LastFetchTimeMs field value

func (*ReplicaStatusData) GetLastFetchTimeMsOk added in v0.4.0

func (o *ReplicaStatusData) GetLastFetchTimeMsOk() (*int64, bool)

GetLastFetchTimeMsOk returns a tuple with the LastFetchTimeMs field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetLinkName added in v0.4.0

func (o *ReplicaStatusData) GetLinkName() string

GetLinkName returns the LinkName field value if set, zero value otherwise.

func (*ReplicaStatusData) GetLinkNameOk added in v0.4.0

func (o *ReplicaStatusData) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetLogEndOffset added in v0.4.0

func (o *ReplicaStatusData) GetLogEndOffset() int64

GetLogEndOffset returns the LogEndOffset field value

func (*ReplicaStatusData) GetLogEndOffsetOk added in v0.4.0

func (o *ReplicaStatusData) GetLogEndOffsetOk() (*int64, bool)

GetLogEndOffsetOk returns a tuple with the LogEndOffset field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetLogStartOffset added in v0.4.0

func (o *ReplicaStatusData) GetLogStartOffset() int64

GetLogStartOffset returns the LogStartOffset field value

func (*ReplicaStatusData) GetLogStartOffsetOk added in v0.4.0

func (o *ReplicaStatusData) GetLogStartOffsetOk() (*int64, bool)

GetLogStartOffsetOk returns a tuple with the LogStartOffset field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetMetadata added in v0.4.0

func (o *ReplicaStatusData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*ReplicaStatusData) GetMetadataOk added in v0.4.0

func (o *ReplicaStatusData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetPartitionId added in v0.4.0

func (o *ReplicaStatusData) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReplicaStatusData) GetPartitionIdOk added in v0.4.0

func (o *ReplicaStatusData) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) GetTopicName added in v0.4.0

func (o *ReplicaStatusData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReplicaStatusData) GetTopicNameOk added in v0.4.0

func (o *ReplicaStatusData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*ReplicaStatusData) HasLinkName added in v0.4.0

func (o *ReplicaStatusData) HasLinkName() bool

HasLinkName returns a boolean if a field has been set.

func (ReplicaStatusData) MarshalJSON added in v0.4.0

func (o ReplicaStatusData) MarshalJSON() ([]byte, error)

func (*ReplicaStatusData) Redact added in v0.4.0

func (o *ReplicaStatusData) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaStatusData) SetBrokerId added in v0.4.0

func (o *ReplicaStatusData) SetBrokerId(v int32)

SetBrokerId sets field value

func (*ReplicaStatusData) SetClusterId added in v0.4.0

func (o *ReplicaStatusData) SetClusterId(v string)

SetClusterId sets field value

func (*ReplicaStatusData) SetIsCaughtUp added in v0.4.0

func (o *ReplicaStatusData) SetIsCaughtUp(v bool)

SetIsCaughtUp sets field value

func (*ReplicaStatusData) SetIsInIsr added in v0.4.0

func (o *ReplicaStatusData) SetIsInIsr(v bool)

SetIsInIsr sets field value

func (*ReplicaStatusData) SetIsIsrEligible added in v0.4.0

func (o *ReplicaStatusData) SetIsIsrEligible(v bool)

SetIsIsrEligible sets field value

func (*ReplicaStatusData) SetIsLeader added in v0.4.0

func (o *ReplicaStatusData) SetIsLeader(v bool)

SetIsLeader sets field value

func (*ReplicaStatusData) SetIsObserver added in v0.4.0

func (o *ReplicaStatusData) SetIsObserver(v bool)

SetIsObserver sets field value

func (*ReplicaStatusData) SetKind added in v0.4.0

func (o *ReplicaStatusData) SetKind(v string)

SetKind sets field value

func (*ReplicaStatusData) SetLastCaughtUpTimeMs added in v0.4.0

func (o *ReplicaStatusData) SetLastCaughtUpTimeMs(v int64)

SetLastCaughtUpTimeMs sets field value

func (*ReplicaStatusData) SetLastFetchTimeMs added in v0.4.0

func (o *ReplicaStatusData) SetLastFetchTimeMs(v int64)

SetLastFetchTimeMs sets field value

func (*ReplicaStatusData) SetLinkName added in v0.4.0

func (o *ReplicaStatusData) SetLinkName(v string)

SetLinkName gets a reference to the given string and assigns it to the LinkName field.

func (*ReplicaStatusData) SetLogEndOffset added in v0.4.0

func (o *ReplicaStatusData) SetLogEndOffset(v int64)

SetLogEndOffset sets field value

func (*ReplicaStatusData) SetLogStartOffset added in v0.4.0

func (o *ReplicaStatusData) SetLogStartOffset(v int64)

SetLogStartOffset sets field value

func (*ReplicaStatusData) SetMetadata added in v0.4.0

func (o *ReplicaStatusData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*ReplicaStatusData) SetPartitionId added in v0.4.0

func (o *ReplicaStatusData) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReplicaStatusData) SetTopicName added in v0.4.0

func (o *ReplicaStatusData) SetTopicName(v string)

SetTopicName sets field value

type ReplicaStatusDataAllOf

type ReplicaStatusDataAllOf struct {
	ClusterId          string  `json:"cluster_id,omitempty"`
	TopicName          string  `json:"topic_name,omitempty"`
	BrokerId           int32   `json:"broker_id,omitempty"`
	PartitionId        int32   `json:"partition_id,omitempty"`
	IsLeader           bool    `json:"is_leader,omitempty"`
	IsObserver         bool    `json:"is_observer,omitempty"`
	IsIsrEligible      bool    `json:"is_isr_eligible,omitempty"`
	IsInIsr            bool    `json:"is_in_isr,omitempty"`
	IsCaughtUp         bool    `json:"is_caught_up,omitempty"`
	LogStartOffset     int64   `json:"log_start_offset,omitempty"`
	LogEndOffset       int64   `json:"log_end_offset,omitempty"`
	LastCaughtUpTimeMs int64   `json:"last_caught_up_time_ms,omitempty"`
	LastFetchTimeMs    int64   `json:"last_fetch_time_ms,omitempty"`
	LinkName           *string `json:"link_name,omitempty"`
}

ReplicaStatusDataAllOf struct for ReplicaStatusDataAllOf

func NewReplicaStatusDataAllOf added in v0.4.0

func NewReplicaStatusDataAllOf(clusterId string, topicName string, brokerId int32, partitionId int32, isLeader bool, isObserver bool, isIsrEligible bool, isInIsr bool, isCaughtUp bool, logStartOffset int64, logEndOffset int64, lastCaughtUpTimeMs int64, lastFetchTimeMs int64) *ReplicaStatusDataAllOf

NewReplicaStatusDataAllOf instantiates a new ReplicaStatusDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaStatusDataAllOfWithDefaults added in v0.4.0

func NewReplicaStatusDataAllOfWithDefaults() *ReplicaStatusDataAllOf

NewReplicaStatusDataAllOfWithDefaults instantiates a new ReplicaStatusDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaStatusDataAllOf) GetBrokerId added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetBrokerId() int32

GetBrokerId returns the BrokerId field value

func (*ReplicaStatusDataAllOf) GetBrokerIdOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetBrokerIdOk() (*int32, bool)

GetBrokerIdOk returns a tuple with the BrokerId field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetClusterId added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ReplicaStatusDataAllOf) GetClusterIdOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetIsCaughtUp added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsCaughtUp() bool

GetIsCaughtUp returns the IsCaughtUp field value

func (*ReplicaStatusDataAllOf) GetIsCaughtUpOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsCaughtUpOk() (*bool, bool)

GetIsCaughtUpOk returns a tuple with the IsCaughtUp field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetIsInIsr added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsInIsr() bool

GetIsInIsr returns the IsInIsr field value

func (*ReplicaStatusDataAllOf) GetIsInIsrOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsInIsrOk() (*bool, bool)

GetIsInIsrOk returns a tuple with the IsInIsr field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetIsIsrEligible added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsIsrEligible() bool

GetIsIsrEligible returns the IsIsrEligible field value

func (*ReplicaStatusDataAllOf) GetIsIsrEligibleOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsIsrEligibleOk() (*bool, bool)

GetIsIsrEligibleOk returns a tuple with the IsIsrEligible field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetIsLeader added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsLeader() bool

GetIsLeader returns the IsLeader field value

func (*ReplicaStatusDataAllOf) GetIsLeaderOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsLeaderOk() (*bool, bool)

GetIsLeaderOk returns a tuple with the IsLeader field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetIsObserver added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsObserver() bool

GetIsObserver returns the IsObserver field value

func (*ReplicaStatusDataAllOf) GetIsObserverOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetIsObserverOk() (*bool, bool)

GetIsObserverOk returns a tuple with the IsObserver field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetLastCaughtUpTimeMs added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLastCaughtUpTimeMs() int64

GetLastCaughtUpTimeMs returns the LastCaughtUpTimeMs field value

func (*ReplicaStatusDataAllOf) GetLastCaughtUpTimeMsOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLastCaughtUpTimeMsOk() (*int64, bool)

GetLastCaughtUpTimeMsOk returns a tuple with the LastCaughtUpTimeMs field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetLastFetchTimeMs added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLastFetchTimeMs() int64

GetLastFetchTimeMs returns the LastFetchTimeMs field value

func (*ReplicaStatusDataAllOf) GetLastFetchTimeMsOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLastFetchTimeMsOk() (*int64, bool)

GetLastFetchTimeMsOk returns a tuple with the LastFetchTimeMs field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetLinkName added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLinkName() string

GetLinkName returns the LinkName field value if set, zero value otherwise.

func (*ReplicaStatusDataAllOf) GetLinkNameOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLinkNameOk() (*string, bool)

GetLinkNameOk returns a tuple with the LinkName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetLogEndOffset added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLogEndOffset() int64

GetLogEndOffset returns the LogEndOffset field value

func (*ReplicaStatusDataAllOf) GetLogEndOffsetOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLogEndOffsetOk() (*int64, bool)

GetLogEndOffsetOk returns a tuple with the LogEndOffset field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetLogStartOffset added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLogStartOffset() int64

GetLogStartOffset returns the LogStartOffset field value

func (*ReplicaStatusDataAllOf) GetLogStartOffsetOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetLogStartOffsetOk() (*int64, bool)

GetLogStartOffsetOk returns a tuple with the LogStartOffset field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetPartitionId added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetPartitionId() int32

GetPartitionId returns the PartitionId field value

func (*ReplicaStatusDataAllOf) GetPartitionIdOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetPartitionIdOk() (*int32, bool)

GetPartitionIdOk returns a tuple with the PartitionId field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) GetTopicName added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*ReplicaStatusDataAllOf) GetTopicNameOk added in v0.4.0

func (o *ReplicaStatusDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataAllOf) HasLinkName added in v0.4.0

func (o *ReplicaStatusDataAllOf) HasLinkName() bool

HasLinkName returns a boolean if a field has been set.

func (ReplicaStatusDataAllOf) MarshalJSON added in v0.4.0

func (o ReplicaStatusDataAllOf) MarshalJSON() ([]byte, error)

func (*ReplicaStatusDataAllOf) Redact added in v0.4.0

func (o *ReplicaStatusDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaStatusDataAllOf) SetBrokerId added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetBrokerId(v int32)

SetBrokerId sets field value

func (*ReplicaStatusDataAllOf) SetClusterId added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ReplicaStatusDataAllOf) SetIsCaughtUp added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetIsCaughtUp(v bool)

SetIsCaughtUp sets field value

func (*ReplicaStatusDataAllOf) SetIsInIsr added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetIsInIsr(v bool)

SetIsInIsr sets field value

func (*ReplicaStatusDataAllOf) SetIsIsrEligible added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetIsIsrEligible(v bool)

SetIsIsrEligible sets field value

func (*ReplicaStatusDataAllOf) SetIsLeader added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetIsLeader(v bool)

SetIsLeader sets field value

func (*ReplicaStatusDataAllOf) SetIsObserver added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetIsObserver(v bool)

SetIsObserver sets field value

func (*ReplicaStatusDataAllOf) SetLastCaughtUpTimeMs added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetLastCaughtUpTimeMs(v int64)

SetLastCaughtUpTimeMs sets field value

func (*ReplicaStatusDataAllOf) SetLastFetchTimeMs added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetLastFetchTimeMs(v int64)

SetLastFetchTimeMs sets field value

func (*ReplicaStatusDataAllOf) SetLinkName added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetLinkName(v string)

SetLinkName gets a reference to the given string and assigns it to the LinkName field.

func (*ReplicaStatusDataAllOf) SetLogEndOffset added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetLogEndOffset(v int64)

SetLogEndOffset sets field value

func (*ReplicaStatusDataAllOf) SetLogStartOffset added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetLogStartOffset(v int64)

SetLogStartOffset sets field value

func (*ReplicaStatusDataAllOf) SetPartitionId added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetPartitionId(v int32)

SetPartitionId sets field value

func (*ReplicaStatusDataAllOf) SetTopicName added in v0.4.0

func (o *ReplicaStatusDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type ReplicaStatusDataList

type ReplicaStatusDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []ReplicaStatusData        `json:"data,omitempty"`
}

ReplicaStatusDataList struct for ReplicaStatusDataList

func NewReplicaStatusDataList added in v0.4.0

func NewReplicaStatusDataList(kind string, metadata ResourceCollectionMetadata, data []ReplicaStatusData) *ReplicaStatusDataList

NewReplicaStatusDataList instantiates a new ReplicaStatusDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaStatusDataListWithDefaults added in v0.4.0

func NewReplicaStatusDataListWithDefaults() *ReplicaStatusDataList

NewReplicaStatusDataListWithDefaults instantiates a new ReplicaStatusDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaStatusDataList) GetData added in v0.4.0

GetData returns the Data field value

func (*ReplicaStatusDataList) GetDataOk added in v0.4.0

func (o *ReplicaStatusDataList) GetDataOk() (*[]ReplicaStatusData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataList) GetKind added in v0.4.0

func (o *ReplicaStatusDataList) GetKind() string

GetKind returns the Kind field value

func (*ReplicaStatusDataList) GetKindOk added in v0.4.0

func (o *ReplicaStatusDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ReplicaStatusDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ReplicaStatusDataList) GetMetadataOk added in v0.4.0

func (o *ReplicaStatusDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ReplicaStatusDataList) MarshalJSON added in v0.4.0

func (o ReplicaStatusDataList) MarshalJSON() ([]byte, error)

func (*ReplicaStatusDataList) Redact added in v0.4.0

func (o *ReplicaStatusDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaStatusDataList) SetData added in v0.4.0

func (o *ReplicaStatusDataList) SetData(v []ReplicaStatusData)

SetData sets field value

func (*ReplicaStatusDataList) SetKind added in v0.4.0

func (o *ReplicaStatusDataList) SetKind(v string)

SetKind sets field value

func (*ReplicaStatusDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type ReplicaStatusDataListAllOf

type ReplicaStatusDataListAllOf struct {
	Data []ReplicaStatusData `json:"data,omitempty"`
}

ReplicaStatusDataListAllOf struct for ReplicaStatusDataListAllOf

func NewReplicaStatusDataListAllOf added in v0.4.0

func NewReplicaStatusDataListAllOf(data []ReplicaStatusData) *ReplicaStatusDataListAllOf

NewReplicaStatusDataListAllOf instantiates a new ReplicaStatusDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReplicaStatusDataListAllOfWithDefaults added in v0.4.0

func NewReplicaStatusDataListAllOfWithDefaults() *ReplicaStatusDataListAllOf

NewReplicaStatusDataListAllOfWithDefaults instantiates a new ReplicaStatusDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReplicaStatusDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*ReplicaStatusDataListAllOf) GetDataOk added in v0.4.0

func (o *ReplicaStatusDataListAllOf) GetDataOk() (*[]ReplicaStatusData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ReplicaStatusDataListAllOf) MarshalJSON added in v0.4.0

func (o ReplicaStatusDataListAllOf) MarshalJSON() ([]byte, error)

func (*ReplicaStatusDataListAllOf) Redact added in v0.4.0

func (o *ReplicaStatusDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*ReplicaStatusDataListAllOf) SetData added in v0.4.0

SetData sets field value

type Resource

type Resource struct {
	Kind     string           `json:"kind,omitempty"`
	Metadata ResourceMetadata `json:"metadata,omitempty"`
}

Resource struct for Resource

func NewResource added in v0.4.0

func NewResource(kind string, metadata ResourceMetadata) *Resource

NewResource instantiates a new Resource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceWithDefaults added in v0.4.0

func NewResourceWithDefaults() *Resource

NewResourceWithDefaults instantiates a new Resource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Resource) GetKind added in v0.4.0

func (o *Resource) GetKind() string

GetKind returns the Kind field value

func (*Resource) GetKindOk added in v0.4.0

func (o *Resource) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*Resource) GetMetadata added in v0.4.0

func (o *Resource) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*Resource) GetMetadataOk added in v0.4.0

func (o *Resource) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (Resource) MarshalJSON added in v0.4.0

func (o Resource) MarshalJSON() ([]byte, error)

func (*Resource) Redact added in v0.4.0

func (o *Resource) Redact()

Redact resets all sensitive fields to their zero value.

func (*Resource) SetKind added in v0.4.0

func (o *Resource) SetKind(v string)

SetKind sets field value

func (*Resource) SetMetadata added in v0.4.0

func (o *Resource) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

type ResourceCollection

type ResourceCollection struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
}

ResourceCollection struct for ResourceCollection

func NewResourceCollection added in v0.4.0

func NewResourceCollection(kind string, metadata ResourceCollectionMetadata) *ResourceCollection

NewResourceCollection instantiates a new ResourceCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceCollectionWithDefaults added in v0.4.0

func NewResourceCollectionWithDefaults() *ResourceCollection

NewResourceCollectionWithDefaults instantiates a new ResourceCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceCollection) GetKind added in v0.4.0

func (o *ResourceCollection) GetKind() string

GetKind returns the Kind field value

func (*ResourceCollection) GetKindOk added in v0.4.0

func (o *ResourceCollection) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*ResourceCollection) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*ResourceCollection) GetMetadataOk added in v0.4.0

func (o *ResourceCollection) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (ResourceCollection) MarshalJSON added in v0.4.0

func (o ResourceCollection) MarshalJSON() ([]byte, error)

func (*ResourceCollection) Redact added in v0.4.0

func (o *ResourceCollection) Redact()

Redact resets all sensitive fields to their zero value.

func (*ResourceCollection) SetKind added in v0.4.0

func (o *ResourceCollection) SetKind(v string)

SetKind sets field value

func (*ResourceCollection) SetMetadata added in v0.4.0

SetMetadata sets field value

type ResourceCollectionMetadata

type ResourceCollectionMetadata struct {
	Self string         `json:"self,omitempty"`
	Next NullableString `json:"next,omitempty"`
}

ResourceCollectionMetadata struct for ResourceCollectionMetadata

func NewResourceCollectionMetadata added in v0.4.0

func NewResourceCollectionMetadata(self string) *ResourceCollectionMetadata

NewResourceCollectionMetadata instantiates a new ResourceCollectionMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceCollectionMetadataWithDefaults added in v0.4.0

func NewResourceCollectionMetadataWithDefaults() *ResourceCollectionMetadata

NewResourceCollectionMetadataWithDefaults instantiates a new ResourceCollectionMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceCollectionMetadata) GetNext added in v0.4.0

func (o *ResourceCollectionMetadata) GetNext() string

GetNext returns the Next field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceCollectionMetadata) GetNextOk added in v0.4.0

func (o *ResourceCollectionMetadata) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceCollectionMetadata) GetSelf added in v0.4.0

func (o *ResourceCollectionMetadata) GetSelf() string

GetSelf returns the Self field value

func (*ResourceCollectionMetadata) GetSelfOk added in v0.4.0

func (o *ResourceCollectionMetadata) GetSelfOk() (*string, bool)

GetSelfOk returns a tuple with the Self field value and a boolean to check if the value has been set.

func (*ResourceCollectionMetadata) HasNext added in v0.4.0

func (o *ResourceCollectionMetadata) HasNext() bool

HasNext returns a boolean if a field has been set.

func (ResourceCollectionMetadata) MarshalJSON added in v0.4.0

func (o ResourceCollectionMetadata) MarshalJSON() ([]byte, error)

func (*ResourceCollectionMetadata) Redact added in v0.4.0

func (o *ResourceCollectionMetadata) Redact()

Redact resets all sensitive fields to their zero value.

func (*ResourceCollectionMetadata) SetNext added in v0.4.0

func (o *ResourceCollectionMetadata) SetNext(v string)

SetNext gets a reference to the given NullableString and assigns it to the Next field.

func (*ResourceCollectionMetadata) SetNextNil added in v0.4.0

func (o *ResourceCollectionMetadata) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*ResourceCollectionMetadata) SetSelf added in v0.4.0

func (o *ResourceCollectionMetadata) SetSelf(v string)

SetSelf sets field value

func (*ResourceCollectionMetadata) UnsetNext added in v0.4.0

func (o *ResourceCollectionMetadata) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

type ResourceMetadata

type ResourceMetadata struct {
	Self         string         `json:"self,omitempty"`
	ResourceName NullableString `json:"resource_name,omitempty"`
}

ResourceMetadata struct for ResourceMetadata

func NewResourceMetadata added in v0.4.0

func NewResourceMetadata(self string) *ResourceMetadata

NewResourceMetadata instantiates a new ResourceMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceMetadataWithDefaults added in v0.4.0

func NewResourceMetadataWithDefaults() *ResourceMetadata

NewResourceMetadataWithDefaults instantiates a new ResourceMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceMetadata) GetResourceName added in v0.4.0

func (o *ResourceMetadata) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResourceMetadata) GetResourceNameOk added in v0.4.0

func (o *ResourceMetadata) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResourceMetadata) GetSelf added in v0.4.0

func (o *ResourceMetadata) GetSelf() string

GetSelf returns the Self field value

func (*ResourceMetadata) GetSelfOk added in v0.4.0

func (o *ResourceMetadata) GetSelfOk() (*string, bool)

GetSelfOk returns a tuple with the Self field value and a boolean to check if the value has been set.

func (*ResourceMetadata) HasResourceName added in v0.4.0

func (o *ResourceMetadata) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (ResourceMetadata) MarshalJSON added in v0.4.0

func (o ResourceMetadata) MarshalJSON() ([]byte, error)

func (*ResourceMetadata) Redact added in v0.4.0

func (o *ResourceMetadata) Redact()

Redact resets all sensitive fields to their zero value.

func (*ResourceMetadata) SetResourceName added in v0.4.0

func (o *ResourceMetadata) SetResourceName(v string)

SetResourceName gets a reference to the given NullableString and assigns it to the ResourceName field.

func (*ResourceMetadata) SetResourceNameNil added in v0.4.0

func (o *ResourceMetadata) SetResourceNameNil()

SetResourceNameNil sets the value for ResourceName to be an explicit nil

func (*ResourceMetadata) SetSelf added in v0.4.0

func (o *ResourceMetadata) SetSelf(v string)

SetSelf sets field value

func (*ResourceMetadata) UnsetResourceName added in v0.4.0

func (o *ResourceMetadata) UnsetResourceName()

UnsetResourceName ensures that no value is present for ResourceName, not even an explicit nil

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations added in v0.4.0

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL added in v0.4.0

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 TopicConfigData

type TopicConfigData struct {
	Kind        string              `json:"kind,omitempty"`
	Metadata    ResourceMetadata    `json:"metadata,omitempty"`
	ClusterId   string              `json:"cluster_id,omitempty"`
	Name        string              `json:"name,omitempty"`
	Value       NullableString      `json:"value,omitempty"`
	IsDefault   bool                `json:"is_default,omitempty"`
	IsReadOnly  bool                `json:"is_read_only,omitempty"`
	IsSensitive bool                `json:"is_sensitive,omitempty"`
	Source      string              `json:"source,omitempty"`
	Synonyms    []ConfigSynonymData `json:"synonyms,omitempty"`
	TopicName   string              `json:"topic_name,omitempty"`
}

TopicConfigData struct for TopicConfigData

func NewTopicConfigData added in v0.4.0

func NewTopicConfigData(kind string, metadata ResourceMetadata, clusterId string, name string, isDefault bool, isReadOnly bool, isSensitive bool, source string, synonyms []ConfigSynonymData, topicName string) *TopicConfigData

NewTopicConfigData instantiates a new TopicConfigData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicConfigDataWithDefaults added in v0.4.0

func NewTopicConfigDataWithDefaults() *TopicConfigData

NewTopicConfigDataWithDefaults instantiates a new TopicConfigData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicConfigData) GetClusterId added in v0.4.0

func (o *TopicConfigData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*TopicConfigData) GetClusterIdOk added in v0.4.0

func (o *TopicConfigData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetIsDefault added in v0.4.0

func (o *TopicConfigData) GetIsDefault() bool

GetIsDefault returns the IsDefault field value

func (*TopicConfigData) GetIsDefaultOk added in v0.4.0

func (o *TopicConfigData) GetIsDefaultOk() (*bool, bool)

GetIsDefaultOk returns a tuple with the IsDefault field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetIsReadOnly added in v0.4.0

func (o *TopicConfigData) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value

func (*TopicConfigData) GetIsReadOnlyOk added in v0.4.0

func (o *TopicConfigData) GetIsReadOnlyOk() (*bool, bool)

GetIsReadOnlyOk returns a tuple with the IsReadOnly field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetIsSensitive added in v0.4.0

func (o *TopicConfigData) GetIsSensitive() bool

GetIsSensitive returns the IsSensitive field value

func (*TopicConfigData) GetIsSensitiveOk added in v0.4.0

func (o *TopicConfigData) GetIsSensitiveOk() (*bool, bool)

GetIsSensitiveOk returns a tuple with the IsSensitive field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetKind added in v0.4.0

func (o *TopicConfigData) GetKind() string

GetKind returns the Kind field value

func (*TopicConfigData) GetKindOk added in v0.4.0

func (o *TopicConfigData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetMetadata added in v0.4.0

func (o *TopicConfigData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*TopicConfigData) GetMetadataOk added in v0.4.0

func (o *TopicConfigData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetName added in v0.4.0

func (o *TopicConfigData) GetName() string

GetName returns the Name field value

func (*TopicConfigData) GetNameOk added in v0.4.0

func (o *TopicConfigData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetSource added in v0.4.0

func (o *TopicConfigData) GetSource() string

GetSource returns the Source field value

func (*TopicConfigData) GetSourceOk added in v0.4.0

func (o *TopicConfigData) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetSynonyms added in v0.4.0

func (o *TopicConfigData) GetSynonyms() []ConfigSynonymData

GetSynonyms returns the Synonyms field value

func (*TopicConfigData) GetSynonymsOk added in v0.4.0

func (o *TopicConfigData) GetSynonymsOk() (*[]ConfigSynonymData, bool)

GetSynonymsOk returns a tuple with the Synonyms field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetTopicName added in v0.4.0

func (o *TopicConfigData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*TopicConfigData) GetTopicNameOk added in v0.4.0

func (o *TopicConfigData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*TopicConfigData) GetValue added in v0.4.0

func (o *TopicConfigData) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TopicConfigData) GetValueOk added in v0.4.0

func (o *TopicConfigData) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TopicConfigData) HasValue added in v0.4.0

func (o *TopicConfigData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TopicConfigData) MarshalJSON added in v0.4.0

func (o TopicConfigData) MarshalJSON() ([]byte, error)

func (*TopicConfigData) Redact added in v0.4.0

func (o *TopicConfigData) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicConfigData) SetClusterId added in v0.4.0

func (o *TopicConfigData) SetClusterId(v string)

SetClusterId sets field value

func (*TopicConfigData) SetIsDefault added in v0.4.0

func (o *TopicConfigData) SetIsDefault(v bool)

SetIsDefault sets field value

func (*TopicConfigData) SetIsReadOnly added in v0.4.0

func (o *TopicConfigData) SetIsReadOnly(v bool)

SetIsReadOnly sets field value

func (*TopicConfigData) SetIsSensitive added in v0.4.0

func (o *TopicConfigData) SetIsSensitive(v bool)

SetIsSensitive sets field value

func (*TopicConfigData) SetKind added in v0.4.0

func (o *TopicConfigData) SetKind(v string)

SetKind sets field value

func (*TopicConfigData) SetMetadata added in v0.4.0

func (o *TopicConfigData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*TopicConfigData) SetName added in v0.4.0

func (o *TopicConfigData) SetName(v string)

SetName sets field value

func (*TopicConfigData) SetSource added in v0.4.0

func (o *TopicConfigData) SetSource(v string)

SetSource sets field value

func (*TopicConfigData) SetSynonyms added in v0.4.0

func (o *TopicConfigData) SetSynonyms(v []ConfigSynonymData)

SetSynonyms sets field value

func (*TopicConfigData) SetTopicName added in v0.4.0

func (o *TopicConfigData) SetTopicName(v string)

SetTopicName sets field value

func (*TopicConfigData) SetValue added in v0.4.0

func (o *TopicConfigData) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*TopicConfigData) SetValueNil added in v0.4.0

func (o *TopicConfigData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*TopicConfigData) UnsetValue added in v0.4.0

func (o *TopicConfigData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type TopicConfigDataAllOf

type TopicConfigDataAllOf struct {
	TopicName string `json:"topic_name,omitempty"`
}

TopicConfigDataAllOf struct for TopicConfigDataAllOf

func NewTopicConfigDataAllOf added in v0.4.0

func NewTopicConfigDataAllOf(topicName string) *TopicConfigDataAllOf

NewTopicConfigDataAllOf instantiates a new TopicConfigDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicConfigDataAllOfWithDefaults added in v0.4.0

func NewTopicConfigDataAllOfWithDefaults() *TopicConfigDataAllOf

NewTopicConfigDataAllOfWithDefaults instantiates a new TopicConfigDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicConfigDataAllOf) GetTopicName added in v0.4.0

func (o *TopicConfigDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*TopicConfigDataAllOf) GetTopicNameOk added in v0.4.0

func (o *TopicConfigDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (TopicConfigDataAllOf) MarshalJSON added in v0.4.0

func (o TopicConfigDataAllOf) MarshalJSON() ([]byte, error)

func (*TopicConfigDataAllOf) Redact added in v0.4.0

func (o *TopicConfigDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicConfigDataAllOf) SetTopicName added in v0.4.0

func (o *TopicConfigDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type TopicConfigDataList

type TopicConfigDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []TopicConfigData          `json:"data,omitempty"`
}

TopicConfigDataList struct for TopicConfigDataList

func NewTopicConfigDataList added in v0.4.0

func NewTopicConfigDataList(kind string, metadata ResourceCollectionMetadata, data []TopicConfigData) *TopicConfigDataList

NewTopicConfigDataList instantiates a new TopicConfigDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicConfigDataListWithDefaults added in v0.4.0

func NewTopicConfigDataListWithDefaults() *TopicConfigDataList

NewTopicConfigDataListWithDefaults instantiates a new TopicConfigDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicConfigDataList) GetData added in v0.4.0

func (o *TopicConfigDataList) GetData() []TopicConfigData

GetData returns the Data field value

func (*TopicConfigDataList) GetDataOk added in v0.4.0

func (o *TopicConfigDataList) GetDataOk() (*[]TopicConfigData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*TopicConfigDataList) GetKind added in v0.4.0

func (o *TopicConfigDataList) GetKind() string

GetKind returns the Kind field value

func (*TopicConfigDataList) GetKindOk added in v0.4.0

func (o *TopicConfigDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*TopicConfigDataList) GetMetadata added in v0.4.0

GetMetadata returns the Metadata field value

func (*TopicConfigDataList) GetMetadataOk added in v0.4.0

func (o *TopicConfigDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (TopicConfigDataList) MarshalJSON added in v0.4.0

func (o TopicConfigDataList) MarshalJSON() ([]byte, error)

func (*TopicConfigDataList) Redact added in v0.4.0

func (o *TopicConfigDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicConfigDataList) SetData added in v0.4.0

func (o *TopicConfigDataList) SetData(v []TopicConfigData)

SetData sets field value

func (*TopicConfigDataList) SetKind added in v0.4.0

func (o *TopicConfigDataList) SetKind(v string)

SetKind sets field value

func (*TopicConfigDataList) SetMetadata added in v0.4.0

SetMetadata sets field value

type TopicConfigDataListAllOf

type TopicConfigDataListAllOf struct {
	Data []TopicConfigData `json:"data,omitempty"`
}

TopicConfigDataListAllOf struct for TopicConfigDataListAllOf

func NewTopicConfigDataListAllOf added in v0.4.0

func NewTopicConfigDataListAllOf(data []TopicConfigData) *TopicConfigDataListAllOf

NewTopicConfigDataListAllOf instantiates a new TopicConfigDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicConfigDataListAllOfWithDefaults added in v0.4.0

func NewTopicConfigDataListAllOfWithDefaults() *TopicConfigDataListAllOf

NewTopicConfigDataListAllOfWithDefaults instantiates a new TopicConfigDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicConfigDataListAllOf) GetData added in v0.4.0

GetData returns the Data field value

func (*TopicConfigDataListAllOf) GetDataOk added in v0.4.0

func (o *TopicConfigDataListAllOf) GetDataOk() (*[]TopicConfigData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TopicConfigDataListAllOf) MarshalJSON added in v0.4.0

func (o TopicConfigDataListAllOf) MarshalJSON() ([]byte, error)

func (*TopicConfigDataListAllOf) Redact added in v0.4.0

func (o *TopicConfigDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicConfigDataListAllOf) SetData added in v0.4.0

func (o *TopicConfigDataListAllOf) SetData(v []TopicConfigData)

SetData sets field value

type TopicData

type TopicData struct {
	Kind                   string                `json:"kind,omitempty"`
	Metadata               ResourceMetadata      `json:"metadata,omitempty"`
	ClusterId              string                `json:"cluster_id,omitempty"`
	TopicName              string                `json:"topic_name,omitempty"`
	IsInternal             bool                  `json:"is_internal,omitempty"`
	ReplicationFactor      int32                 `json:"replication_factor,omitempty"`
	PartitionsCount        int32                 `json:"partitions_count,omitempty"`
	Partitions             Relationship          `json:"partitions,omitempty"`
	Configs                Relationship          `json:"configs,omitempty"`
	PartitionReassignments Relationship          `json:"partition_reassignments,omitempty"`
	AuthorizedOperations   *AuthorizedOperations `json:"authorized_operations,omitempty"`
}

TopicData struct for TopicData

func NewTopicData added in v0.4.0

func NewTopicData(kind string, metadata ResourceMetadata, clusterId string, topicName string, isInternal bool, replicationFactor int32, partitionsCount int32, partitions Relationship, configs Relationship, partitionReassignments Relationship) *TopicData

NewTopicData instantiates a new TopicData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicDataWithDefaults added in v0.4.0

func NewTopicDataWithDefaults() *TopicData

NewTopicDataWithDefaults instantiates a new TopicData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicData) GetAuthorizedOperations added in v0.14.0

func (o *TopicData) GetAuthorizedOperations() AuthorizedOperations

GetAuthorizedOperations returns the AuthorizedOperations field value if set, zero value otherwise.

func (*TopicData) GetAuthorizedOperationsOk added in v0.14.0

func (o *TopicData) GetAuthorizedOperationsOk() (*AuthorizedOperations, bool)

GetAuthorizedOperationsOk returns a tuple with the AuthorizedOperations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopicData) GetClusterId added in v0.4.0

func (o *TopicData) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*TopicData) GetClusterIdOk added in v0.4.0

func (o *TopicData) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*TopicData) GetConfigs added in v0.4.0

func (o *TopicData) GetConfigs() Relationship

GetConfigs returns the Configs field value

func (*TopicData) GetConfigsOk added in v0.4.0

func (o *TopicData) GetConfigsOk() (*Relationship, bool)

GetConfigsOk returns a tuple with the Configs field value and a boolean to check if the value has been set.

func (*TopicData) GetIsInternal added in v0.4.0

func (o *TopicData) GetIsInternal() bool

GetIsInternal returns the IsInternal field value

func (*TopicData) GetIsInternalOk added in v0.4.0

func (o *TopicData) GetIsInternalOk() (*bool, bool)

GetIsInternalOk returns a tuple with the IsInternal field value and a boolean to check if the value has been set.

func (*TopicData) GetKind added in v0.4.0

func (o *TopicData) GetKind() string

GetKind returns the Kind field value

func (*TopicData) GetKindOk added in v0.4.0

func (o *TopicData) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*TopicData) GetMetadata added in v0.4.0

func (o *TopicData) GetMetadata() ResourceMetadata

GetMetadata returns the Metadata field value

func (*TopicData) GetMetadataOk added in v0.4.0

func (o *TopicData) GetMetadataOk() (*ResourceMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*TopicData) GetPartitionReassignments added in v0.4.0

func (o *TopicData) GetPartitionReassignments() Relationship

GetPartitionReassignments returns the PartitionReassignments field value

func (*TopicData) GetPartitionReassignmentsOk added in v0.4.0

func (o *TopicData) GetPartitionReassignmentsOk() (*Relationship, bool)

GetPartitionReassignmentsOk returns a tuple with the PartitionReassignments field value and a boolean to check if the value has been set.

func (*TopicData) GetPartitions added in v0.4.0

func (o *TopicData) GetPartitions() Relationship

GetPartitions returns the Partitions field value

func (*TopicData) GetPartitionsCount added in v0.4.0

func (o *TopicData) GetPartitionsCount() int32

GetPartitionsCount returns the PartitionsCount field value

func (*TopicData) GetPartitionsCountOk added in v0.4.0

func (o *TopicData) GetPartitionsCountOk() (*int32, bool)

GetPartitionsCountOk returns a tuple with the PartitionsCount field value and a boolean to check if the value has been set.

func (*TopicData) GetPartitionsOk added in v0.4.0

func (o *TopicData) GetPartitionsOk() (*Relationship, bool)

GetPartitionsOk returns a tuple with the Partitions field value and a boolean to check if the value has been set.

func (*TopicData) GetReplicationFactor added in v0.4.0

func (o *TopicData) GetReplicationFactor() int32

GetReplicationFactor returns the ReplicationFactor field value

func (*TopicData) GetReplicationFactorOk added in v0.4.0

func (o *TopicData) GetReplicationFactorOk() (*int32, bool)

GetReplicationFactorOk returns a tuple with the ReplicationFactor field value and a boolean to check if the value has been set.

func (*TopicData) GetTopicName added in v0.4.0

func (o *TopicData) GetTopicName() string

GetTopicName returns the TopicName field value

func (*TopicData) GetTopicNameOk added in v0.4.0

func (o *TopicData) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*TopicData) HasAuthorizedOperations added in v0.14.0

func (o *TopicData) HasAuthorizedOperations() bool

HasAuthorizedOperations returns a boolean if a field has been set.

func (TopicData) MarshalJSON added in v0.4.0

func (o TopicData) MarshalJSON() ([]byte, error)

func (*TopicData) Redact added in v0.4.0

func (o *TopicData) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicData) SetAuthorizedOperations added in v0.14.0

func (o *TopicData) SetAuthorizedOperations(v AuthorizedOperations)

SetAuthorizedOperations gets a reference to the given AuthorizedOperations and assigns it to the AuthorizedOperations field.

func (*TopicData) SetClusterId added in v0.4.0

func (o *TopicData) SetClusterId(v string)

SetClusterId sets field value

func (*TopicData) SetConfigs added in v0.4.0

func (o *TopicData) SetConfigs(v Relationship)

SetConfigs sets field value

func (*TopicData) SetIsInternal added in v0.4.0

func (o *TopicData) SetIsInternal(v bool)

SetIsInternal sets field value

func (*TopicData) SetKind added in v0.4.0

func (o *TopicData) SetKind(v string)

SetKind sets field value

func (*TopicData) SetMetadata added in v0.4.0

func (o *TopicData) SetMetadata(v ResourceMetadata)

SetMetadata sets field value

func (*TopicData) SetPartitionReassignments added in v0.4.0

func (o *TopicData) SetPartitionReassignments(v Relationship)

SetPartitionReassignments sets field value

func (*TopicData) SetPartitions added in v0.4.0

func (o *TopicData) SetPartitions(v Relationship)

SetPartitions sets field value

func (*TopicData) SetPartitionsCount added in v0.4.0

func (o *TopicData) SetPartitionsCount(v int32)

SetPartitionsCount sets field value

func (*TopicData) SetReplicationFactor added in v0.4.0

func (o *TopicData) SetReplicationFactor(v int32)

SetReplicationFactor sets field value

func (*TopicData) SetTopicName added in v0.4.0

func (o *TopicData) SetTopicName(v string)

SetTopicName sets field value

type TopicDataAllOf

type TopicDataAllOf struct {
	ClusterId              string                `json:"cluster_id,omitempty"`
	TopicName              string                `json:"topic_name,omitempty"`
	IsInternal             bool                  `json:"is_internal,omitempty"`
	ReplicationFactor      int32                 `json:"replication_factor,omitempty"`
	PartitionsCount        int32                 `json:"partitions_count,omitempty"`
	Partitions             Relationship          `json:"partitions,omitempty"`
	Configs                Relationship          `json:"configs,omitempty"`
	PartitionReassignments Relationship          `json:"partition_reassignments,omitempty"`
	AuthorizedOperations   *AuthorizedOperations `json:"authorized_operations,omitempty"`
}

TopicDataAllOf struct for TopicDataAllOf

func NewTopicDataAllOf added in v0.4.0

func NewTopicDataAllOf(clusterId string, topicName string, isInternal bool, replicationFactor int32, partitionsCount int32, partitions Relationship, configs Relationship, partitionReassignments Relationship) *TopicDataAllOf

NewTopicDataAllOf instantiates a new TopicDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicDataAllOfWithDefaults added in v0.4.0

func NewTopicDataAllOfWithDefaults() *TopicDataAllOf

NewTopicDataAllOfWithDefaults instantiates a new TopicDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicDataAllOf) GetAuthorizedOperations added in v0.14.0

func (o *TopicDataAllOf) GetAuthorizedOperations() AuthorizedOperations

GetAuthorizedOperations returns the AuthorizedOperations field value if set, zero value otherwise.

func (*TopicDataAllOf) GetAuthorizedOperationsOk added in v0.14.0

func (o *TopicDataAllOf) GetAuthorizedOperationsOk() (*AuthorizedOperations, bool)

GetAuthorizedOperationsOk returns a tuple with the AuthorizedOperations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetClusterId added in v0.4.0

func (o *TopicDataAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*TopicDataAllOf) GetClusterIdOk added in v0.4.0

func (o *TopicDataAllOf) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetConfigs added in v0.4.0

func (o *TopicDataAllOf) GetConfigs() Relationship

GetConfigs returns the Configs field value

func (*TopicDataAllOf) GetConfigsOk added in v0.4.0

func (o *TopicDataAllOf) GetConfigsOk() (*Relationship, bool)

GetConfigsOk returns a tuple with the Configs field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetIsInternal added in v0.4.0

func (o *TopicDataAllOf) GetIsInternal() bool

GetIsInternal returns the IsInternal field value

func (*TopicDataAllOf) GetIsInternalOk added in v0.4.0

func (o *TopicDataAllOf) GetIsInternalOk() (*bool, bool)

GetIsInternalOk returns a tuple with the IsInternal field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetPartitionReassignments added in v0.4.0

func (o *TopicDataAllOf) GetPartitionReassignments() Relationship

GetPartitionReassignments returns the PartitionReassignments field value

func (*TopicDataAllOf) GetPartitionReassignmentsOk added in v0.4.0

func (o *TopicDataAllOf) GetPartitionReassignmentsOk() (*Relationship, bool)

GetPartitionReassignmentsOk returns a tuple with the PartitionReassignments field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetPartitions added in v0.4.0

func (o *TopicDataAllOf) GetPartitions() Relationship

GetPartitions returns the Partitions field value

func (*TopicDataAllOf) GetPartitionsCount added in v0.4.0

func (o *TopicDataAllOf) GetPartitionsCount() int32

GetPartitionsCount returns the PartitionsCount field value

func (*TopicDataAllOf) GetPartitionsCountOk added in v0.4.0

func (o *TopicDataAllOf) GetPartitionsCountOk() (*int32, bool)

GetPartitionsCountOk returns a tuple with the PartitionsCount field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetPartitionsOk added in v0.4.0

func (o *TopicDataAllOf) GetPartitionsOk() (*Relationship, bool)

GetPartitionsOk returns a tuple with the Partitions field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetReplicationFactor added in v0.4.0

func (o *TopicDataAllOf) GetReplicationFactor() int32

GetReplicationFactor returns the ReplicationFactor field value

func (*TopicDataAllOf) GetReplicationFactorOk added in v0.4.0

func (o *TopicDataAllOf) GetReplicationFactorOk() (*int32, bool)

GetReplicationFactorOk returns a tuple with the ReplicationFactor field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) GetTopicName added in v0.4.0

func (o *TopicDataAllOf) GetTopicName() string

GetTopicName returns the TopicName field value

func (*TopicDataAllOf) GetTopicNameOk added in v0.4.0

func (o *TopicDataAllOf) GetTopicNameOk() (*string, bool)

GetTopicNameOk returns a tuple with the TopicName field value and a boolean to check if the value has been set.

func (*TopicDataAllOf) HasAuthorizedOperations added in v0.14.0

func (o *TopicDataAllOf) HasAuthorizedOperations() bool

HasAuthorizedOperations returns a boolean if a field has been set.

func (TopicDataAllOf) MarshalJSON added in v0.4.0

func (o TopicDataAllOf) MarshalJSON() ([]byte, error)

func (*TopicDataAllOf) Redact added in v0.4.0

func (o *TopicDataAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicDataAllOf) SetAuthorizedOperations added in v0.14.0

func (o *TopicDataAllOf) SetAuthorizedOperations(v AuthorizedOperations)

SetAuthorizedOperations gets a reference to the given AuthorizedOperations and assigns it to the AuthorizedOperations field.

func (*TopicDataAllOf) SetClusterId added in v0.4.0

func (o *TopicDataAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*TopicDataAllOf) SetConfigs added in v0.4.0

func (o *TopicDataAllOf) SetConfigs(v Relationship)

SetConfigs sets field value

func (*TopicDataAllOf) SetIsInternal added in v0.4.0

func (o *TopicDataAllOf) SetIsInternal(v bool)

SetIsInternal sets field value

func (*TopicDataAllOf) SetPartitionReassignments added in v0.4.0

func (o *TopicDataAllOf) SetPartitionReassignments(v Relationship)

SetPartitionReassignments sets field value

func (*TopicDataAllOf) SetPartitions added in v0.4.0

func (o *TopicDataAllOf) SetPartitions(v Relationship)

SetPartitions sets field value

func (*TopicDataAllOf) SetPartitionsCount added in v0.4.0

func (o *TopicDataAllOf) SetPartitionsCount(v int32)

SetPartitionsCount sets field value

func (*TopicDataAllOf) SetReplicationFactor added in v0.4.0

func (o *TopicDataAllOf) SetReplicationFactor(v int32)

SetReplicationFactor sets field value

func (*TopicDataAllOf) SetTopicName added in v0.4.0

func (o *TopicDataAllOf) SetTopicName(v string)

SetTopicName sets field value

type TopicDataList

type TopicDataList struct {
	Kind     string                     `json:"kind,omitempty"`
	Metadata ResourceCollectionMetadata `json:"metadata,omitempty"`
	Data     []TopicData                `json:"data,omitempty"`
}

TopicDataList struct for TopicDataList

func NewTopicDataList added in v0.4.0

func NewTopicDataList(kind string, metadata ResourceCollectionMetadata, data []TopicData) *TopicDataList

NewTopicDataList instantiates a new TopicDataList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicDataListWithDefaults added in v0.4.0

func NewTopicDataListWithDefaults() *TopicDataList

NewTopicDataListWithDefaults instantiates a new TopicDataList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicDataList) GetData added in v0.4.0

func (o *TopicDataList) GetData() []TopicData

GetData returns the Data field value

func (*TopicDataList) GetDataOk added in v0.4.0

func (o *TopicDataList) GetDataOk() (*[]TopicData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*TopicDataList) GetKind added in v0.4.0

func (o *TopicDataList) GetKind() string

GetKind returns the Kind field value

func (*TopicDataList) GetKindOk added in v0.4.0

func (o *TopicDataList) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*TopicDataList) GetMetadata added in v0.4.0

func (o *TopicDataList) GetMetadata() ResourceCollectionMetadata

GetMetadata returns the Metadata field value

func (*TopicDataList) GetMetadataOk added in v0.4.0

func (o *TopicDataList) GetMetadataOk() (*ResourceCollectionMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (TopicDataList) MarshalJSON added in v0.4.0

func (o TopicDataList) MarshalJSON() ([]byte, error)

func (*TopicDataList) Redact added in v0.4.0

func (o *TopicDataList) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicDataList) SetData added in v0.4.0

func (o *TopicDataList) SetData(v []TopicData)

SetData sets field value

func (*TopicDataList) SetKind added in v0.4.0

func (o *TopicDataList) SetKind(v string)

SetKind sets field value

func (*TopicDataList) SetMetadata added in v0.4.0

func (o *TopicDataList) SetMetadata(v ResourceCollectionMetadata)

SetMetadata sets field value

type TopicDataListAllOf

type TopicDataListAllOf struct {
	Data []TopicData `json:"data,omitempty"`
}

TopicDataListAllOf struct for TopicDataListAllOf

func NewTopicDataListAllOf added in v0.4.0

func NewTopicDataListAllOf(data []TopicData) *TopicDataListAllOf

NewTopicDataListAllOf instantiates a new TopicDataListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopicDataListAllOfWithDefaults added in v0.4.0

func NewTopicDataListAllOfWithDefaults() *TopicDataListAllOf

NewTopicDataListAllOfWithDefaults instantiates a new TopicDataListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopicDataListAllOf) GetData added in v0.4.0

func (o *TopicDataListAllOf) GetData() []TopicData

GetData returns the Data field value

func (*TopicDataListAllOf) GetDataOk added in v0.4.0

func (o *TopicDataListAllOf) GetDataOk() (*[]TopicData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (TopicDataListAllOf) MarshalJSON added in v0.4.0

func (o TopicDataListAllOf) MarshalJSON() ([]byte, error)

func (*TopicDataListAllOf) Redact added in v0.4.0

func (o *TopicDataListAllOf) Redact()

Redact resets all sensitive fields to their zero value.

func (*TopicDataListAllOf) SetData added in v0.4.0

func (o *TopicDataListAllOf) SetData(v []TopicData)

SetData sets field value

type TopicV3Api

type TopicV3Api interface {

	/*
			CreateKafkaTopic Create Topic

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Create a topic.
		Also supports a dry-run mode that only validates whether the topic creation would succeed
		if the “validate_only“ request property is explicitly specified and set to true. Note that
		when dry-run mode is being used the response status would be 200 OK instead of 201 Created.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiCreateKafkaTopicRequest
	*/
	CreateKafkaTopic(ctx _context.Context, clusterId string) ApiCreateKafkaTopicRequest

	// CreateKafkaTopicExecute executes the request
	//  @return TopicData
	CreateKafkaTopicExecute(r ApiCreateKafkaTopicRequest) (TopicData, *_nethttp.Response, error)

	/*
			DeleteKafkaTopic Delete Topic

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Delete the topic with the given `topic_name`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiDeleteKafkaTopicRequest
	*/
	DeleteKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiDeleteKafkaTopicRequest

	// DeleteKafkaTopicExecute executes the request
	DeleteKafkaTopicExecute(r ApiDeleteKafkaTopicRequest) (*_nethttp.Response, error)

	/*
			GetKafkaTopic Get Topic

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the topic with the given `topic_name`.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiGetKafkaTopicRequest
	*/
	GetKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiGetKafkaTopicRequest

	// GetKafkaTopicExecute executes the request
	//  @return TopicData
	GetKafkaTopicExecute(r ApiGetKafkaTopicRequest) (TopicData, *_nethttp.Response, error)

	/*
			ListKafkaTopics List Topics

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Return the list of topics that belong to the specified Kafka cluster.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @return ApiListKafkaTopicsRequest
	*/
	ListKafkaTopics(ctx _context.Context, clusterId string) ApiListKafkaTopicsRequest

	// ListKafkaTopicsExecute executes the request
	//  @return TopicDataList
	ListKafkaTopicsExecute(r ApiListKafkaTopicsRequest) (TopicDataList, *_nethttp.Response, error)

	/*
			UpdatePartitionCountKafkaTopic Update Partition Count

			[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

		Increase the number of partitions for a topic.

			 @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
			 @param clusterId The Kafka cluster ID.
			 @param topicName The topic name.
			 @return ApiUpdatePartitionCountKafkaTopicRequest
	*/
	UpdatePartitionCountKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiUpdatePartitionCountKafkaTopicRequest

	// UpdatePartitionCountKafkaTopicExecute executes the request
	//  @return TopicData
	UpdatePartitionCountKafkaTopicExecute(r ApiUpdatePartitionCountKafkaTopicRequest) (TopicData, *_nethttp.Response, error)
}

type TopicV3ApiService

type TopicV3ApiService service

TopicV3ApiService TopicV3Api service

func (*TopicV3ApiService) CreateKafkaTopic added in v0.4.0

func (a *TopicV3ApiService) CreateKafkaTopic(ctx _context.Context, clusterId string) ApiCreateKafkaTopicRequest

CreateKafkaTopic Create Topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Create a topic. Also supports a dry-run mode that only validates whether the topic creation would succeed if the “validate_only“ request property is explicitly specified and set to true. Note that when dry-run mode is being used the response status would be 200 OK instead of 201 Created.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiCreateKafkaTopicRequest

func (*TopicV3ApiService) CreateKafkaTopicExecute added in v0.4.0

func (a *TopicV3ApiService) CreateKafkaTopicExecute(r ApiCreateKafkaTopicRequest) (TopicData, *_nethttp.Response, error)

Execute executes the request

@return TopicData

func (*TopicV3ApiService) DeleteKafkaTopic added in v0.4.0

func (a *TopicV3ApiService) DeleteKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiDeleteKafkaTopicRequest

DeleteKafkaTopic Delete Topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Delete the topic with the given `topic_name`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiDeleteKafkaTopicRequest

func (*TopicV3ApiService) DeleteKafkaTopicExecute added in v0.4.0

func (a *TopicV3ApiService) DeleteKafkaTopicExecute(r ApiDeleteKafkaTopicRequest) (*_nethttp.Response, error)

Execute executes the request

func (*TopicV3ApiService) GetKafkaTopic added in v0.4.0

func (a *TopicV3ApiService) GetKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiGetKafkaTopicRequest

GetKafkaTopic Get Topic

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the topic with the given `topic_name`.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiGetKafkaTopicRequest

func (*TopicV3ApiService) GetKafkaTopicExecute added in v0.4.0

Execute executes the request

@return TopicData

func (*TopicV3ApiService) ListKafkaTopics added in v0.4.0

func (a *TopicV3ApiService) ListKafkaTopics(ctx _context.Context, clusterId string) ApiListKafkaTopicsRequest

ListKafkaTopics List Topics

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Return the list of topics that belong to the specified Kafka cluster.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@return ApiListKafkaTopicsRequest

func (*TopicV3ApiService) ListKafkaTopicsExecute added in v0.4.0

Execute executes the request

@return TopicDataList

func (*TopicV3ApiService) UpdatePartitionCountKafkaTopic added in v0.13.0

func (a *TopicV3ApiService) UpdatePartitionCountKafkaTopic(ctx _context.Context, clusterId string, topicName string) ApiUpdatePartitionCountKafkaTopicRequest

UpdatePartitionCountKafkaTopic Update Partition Count

[![Generally Available](https://img.shields.io/badge/Lifecycle%20Stage-Generally%20Available-%2345c6e8)](#section/Versioning/API-Lifecycle-Policy)

Increase the number of partitions for a topic.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param clusterId The Kafka cluster ID.
@param topicName The topic name.
@return ApiUpdatePartitionCountKafkaTopicRequest

func (*TopicV3ApiService) UpdatePartitionCountKafkaTopicExecute added in v0.13.0

func (a *TopicV3ApiService) UpdatePartitionCountKafkaTopicExecute(r ApiUpdatePartitionCountKafkaTopicRequest) (TopicData, *_nethttp.Response, error)

Execute executes the request

@return TopicData

type UpdateConfigRequestData

type UpdateConfigRequestData struct {
	Value NullableString `json:"value,omitempty"`
}

UpdateConfigRequestData struct for UpdateConfigRequestData

func NewUpdateConfigRequestData added in v0.4.0

func NewUpdateConfigRequestData() *UpdateConfigRequestData

NewUpdateConfigRequestData instantiates a new UpdateConfigRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateConfigRequestDataWithDefaults added in v0.4.0

func NewUpdateConfigRequestDataWithDefaults() *UpdateConfigRequestData

NewUpdateConfigRequestDataWithDefaults instantiates a new UpdateConfigRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateConfigRequestData) GetValue added in v0.4.0

func (o *UpdateConfigRequestData) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateConfigRequestData) GetValueOk added in v0.4.0

func (o *UpdateConfigRequestData) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateConfigRequestData) HasValue added in v0.4.0

func (o *UpdateConfigRequestData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (UpdateConfigRequestData) MarshalJSON added in v0.4.0

func (o UpdateConfigRequestData) MarshalJSON() ([]byte, error)

func (*UpdateConfigRequestData) Redact added in v0.4.0

func (o *UpdateConfigRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*UpdateConfigRequestData) SetValue added in v0.4.0

func (o *UpdateConfigRequestData) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*UpdateConfigRequestData) SetValueNil added in v0.4.0

func (o *UpdateConfigRequestData) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*UpdateConfigRequestData) UnsetValue added in v0.4.0

func (o *UpdateConfigRequestData) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type UpdateLinkConfigRequestData

type UpdateLinkConfigRequestData struct {
	Value string `json:"value,omitempty"`
}

UpdateLinkConfigRequestData struct for UpdateLinkConfigRequestData

func NewUpdateLinkConfigRequestData added in v0.4.0

func NewUpdateLinkConfigRequestData(value string) *UpdateLinkConfigRequestData

NewUpdateLinkConfigRequestData instantiates a new UpdateLinkConfigRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateLinkConfigRequestDataWithDefaults added in v0.4.0

func NewUpdateLinkConfigRequestDataWithDefaults() *UpdateLinkConfigRequestData

NewUpdateLinkConfigRequestDataWithDefaults instantiates a new UpdateLinkConfigRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateLinkConfigRequestData) GetValue added in v0.4.0

func (o *UpdateLinkConfigRequestData) GetValue() string

GetValue returns the Value field value

func (*UpdateLinkConfigRequestData) GetValueOk added in v0.4.0

func (o *UpdateLinkConfigRequestData) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (UpdateLinkConfigRequestData) MarshalJSON added in v0.4.0

func (o UpdateLinkConfigRequestData) MarshalJSON() ([]byte, error)

func (*UpdateLinkConfigRequestData) Redact added in v0.4.0

func (o *UpdateLinkConfigRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*UpdateLinkConfigRequestData) SetValue added in v0.4.0

func (o *UpdateLinkConfigRequestData) SetValue(v string)

SetValue sets field value

type UpdatePartitionCountRequestData added in v0.13.0

type UpdatePartitionCountRequestData struct {
	PartitionsCount int32 `json:"partitions_count,omitempty"`
}

UpdatePartitionCountRequestData struct for UpdatePartitionCountRequestData

func NewUpdatePartitionCountRequestData added in v0.13.0

func NewUpdatePartitionCountRequestData(partitionsCount int32) *UpdatePartitionCountRequestData

NewUpdatePartitionCountRequestData instantiates a new UpdatePartitionCountRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePartitionCountRequestDataWithDefaults added in v0.13.0

func NewUpdatePartitionCountRequestDataWithDefaults() *UpdatePartitionCountRequestData

NewUpdatePartitionCountRequestDataWithDefaults instantiates a new UpdatePartitionCountRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePartitionCountRequestData) GetPartitionsCount added in v0.13.0

func (o *UpdatePartitionCountRequestData) GetPartitionsCount() int32

GetPartitionsCount returns the PartitionsCount field value

func (*UpdatePartitionCountRequestData) GetPartitionsCountOk added in v0.13.0

func (o *UpdatePartitionCountRequestData) GetPartitionsCountOk() (*int32, bool)

GetPartitionsCountOk returns a tuple with the PartitionsCount field value and a boolean to check if the value has been set.

func (UpdatePartitionCountRequestData) MarshalJSON added in v0.13.0

func (o UpdatePartitionCountRequestData) MarshalJSON() ([]byte, error)

func (*UpdatePartitionCountRequestData) Redact added in v0.13.0

func (o *UpdatePartitionCountRequestData) Redact()

Redact resets all sensitive fields to their zero value.

func (*UpdatePartitionCountRequestData) SetPartitionsCount added in v0.13.0

func (o *UpdatePartitionCountRequestData) SetPartitionsCount(v int32)

SetPartitionsCount sets field value

Source Files

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL