data_streaming

package
v0.127.0 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: MIT Imports: 20 Imported by: 0

README

Go API client for data_streaming

The Data Streaming API allows you to manage your existing data streamings and templates. Data Streaming allows you to feed your stream processing, SIEM, and big data platforms with the event logs from your applications on Azion in real time.

Overview

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

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

Installation

Install the following dependencies:

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

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

import data_streaming "github.com/GIT_USER_ID/GIT_REPO_ID"

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

Documentation for API Endpoints

All URIs are relative to https://api.azionapi.net

Class Method HTTP request Description
DataStreamingAPI CreateNewDataStreaming Post /data_streaming/streamings Create a new data streaming
DataStreamingAPI DeleteDataStreamingById Delete /data_streaming/streamings/{data_streaming_id} Delete data streaming
DataStreamingAPI EditDataStreamingById Patch /data_streaming/streamings/{data_streaming_id} Edit data streaming
DataStreamingAPI ListDataStreamingById Get /data_streaming/streamings/{data_streaming_id} Get expecific data streaming by Data Streaming ID
DataStreamingAPI ListDataStreamings Get /data_streaming/streamings List all exist data streamings
DataStreamingAPI OverwriteDataStreamingById Put /data_streaming/streamings/{data_streaming_id} Overwrite data streaming
DataStreamingDomainAPI ListDataStreaming Get /data_streaming/domains List all domains used on data streaming
DataStreamingTemplatesAPI GetDataStramingTemplateById Get /data_streaming/templates/{template_id} Get an global Template info by template ID
DataStreamingTemplatesAPI ListDataStreamingTemplates Get /data_streaming/templates List all global Templates that can be used on Data Streaming operations

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

tokenAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		sw.ContextAPIKeys,
		map[string]sw.APIKey{
			"Authorization": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

	// 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 IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	DataStreamingAPI *DataStreamingAPIService

	DataStreamingDomainAPI *DataStreamingDomainAPIService

	DataStreamingTemplatesAPI *DataStreamingTemplatesAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Data Streaming - OpenAPI API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiCreateNewDataStreamingRequest

type ApiCreateNewDataStreamingRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiCreateNewDataStreamingRequest) CreateNewDataStreamingRequest

func (r ApiCreateNewDataStreamingRequest) CreateNewDataStreamingRequest(createNewDataStreamingRequest CreateNewDataStreamingRequest) ApiCreateNewDataStreamingRequest

func (ApiCreateNewDataStreamingRequest) Execute

type ApiDeleteDataStreamingByIdRequest

type ApiDeleteDataStreamingByIdRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDataStreamingByIdRequest) Execute

type ApiEditDataStreamingByIdRequest

type ApiEditDataStreamingByIdRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiEditDataStreamingByIdRequest) CreateNewDataStreamingRequest

func (r ApiEditDataStreamingByIdRequest) CreateNewDataStreamingRequest(createNewDataStreamingRequest CreateNewDataStreamingRequest) ApiEditDataStreamingByIdRequest

func (ApiEditDataStreamingByIdRequest) Execute

type ApiGetDataStramingTemplateByIdRequest

type ApiGetDataStramingTemplateByIdRequest struct {
	ApiService *DataStreamingTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDataStramingTemplateByIdRequest) Execute

type ApiListDataStreamingByIdRequest

type ApiListDataStreamingByIdRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiListDataStreamingByIdRequest) Execute

type ApiListDataStreamingRequest

type ApiListDataStreamingRequest struct {
	ApiService *DataStreamingDomainAPIService
	// contains filtered or unexported fields
}

func (ApiListDataStreamingRequest) Execute

func (ApiListDataStreamingRequest) Name

Domain's name in data streaming

func (ApiListDataStreamingRequest) Selected

func (ApiListDataStreamingRequest) StreamingId

type ApiListDataStreamingTemplatesRequest

type ApiListDataStreamingTemplatesRequest struct {
	ApiService *DataStreamingTemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiListDataStreamingTemplatesRequest) Execute

type ApiListDataStreamingsRequest

type ApiListDataStreamingsRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiListDataStreamingsRequest) Execute

type ApiOverwriteDataStreamingByIdRequest

type ApiOverwriteDataStreamingByIdRequest struct {
	ApiService *DataStreamingAPIService
	// contains filtered or unexported fields
}

func (ApiOverwriteDataStreamingByIdRequest) CreateNewDataStreamingRequest

func (r ApiOverwriteDataStreamingByIdRequest) CreateNewDataStreamingRequest(createNewDataStreamingRequest CreateNewDataStreamingRequest) ApiOverwriteDataStreamingByIdRequest

func (ApiOverwriteDataStreamingByIdRequest) Execute

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateCustomDataStreamingResponse

type CreateCustomDataStreamingResponse struct {
	Results       []PostCustomDataStreamingResponse `json:"results,omitempty"`
	SchemaVersion *float32                          `json:"schema_version,omitempty"`
}

CreateCustomDataStreamingResponse struct for CreateCustomDataStreamingResponse

func NewCreateCustomDataStreamingResponse

func NewCreateCustomDataStreamingResponse() *CreateCustomDataStreamingResponse

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

func NewCreateCustomDataStreamingResponseWithDefaults

func NewCreateCustomDataStreamingResponseWithDefaults() *CreateCustomDataStreamingResponse

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

func (*CreateCustomDataStreamingResponse) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*CreateCustomDataStreamingResponse) GetResultsOk

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

func (*CreateCustomDataStreamingResponse) GetSchemaVersion

func (o *CreateCustomDataStreamingResponse) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*CreateCustomDataStreamingResponse) GetSchemaVersionOk

func (o *CreateCustomDataStreamingResponse) GetSchemaVersionOk() (*float32, bool)

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

func (*CreateCustomDataStreamingResponse) HasResults

func (o *CreateCustomDataStreamingResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*CreateCustomDataStreamingResponse) HasSchemaVersion

func (o *CreateCustomDataStreamingResponse) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (CreateCustomDataStreamingResponse) MarshalJSON

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

func (*CreateCustomDataStreamingResponse) SetResults

SetResults gets a reference to the given []PostCustomDataStreamingResponse and assigns it to the Results field.

func (*CreateCustomDataStreamingResponse) SetSchemaVersion

func (o *CreateCustomDataStreamingResponse) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (CreateCustomDataStreamingResponse) ToMap

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

type CreateDataStreamingResponse

type CreateDataStreamingResponse struct {
	Results       []PostDataStreamingResponse `json:"results,omitempty"`
	SchemaVersion *float32                    `json:"schema_version,omitempty"`
}

CreateDataStreamingResponse struct for CreateDataStreamingResponse

func NewCreateDataStreamingResponse

func NewCreateDataStreamingResponse() *CreateDataStreamingResponse

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

func NewCreateDataStreamingResponseWithDefaults

func NewCreateDataStreamingResponseWithDefaults() *CreateDataStreamingResponse

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

func (*CreateDataStreamingResponse) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*CreateDataStreamingResponse) GetResultsOk

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

func (*CreateDataStreamingResponse) GetSchemaVersion

func (o *CreateDataStreamingResponse) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*CreateDataStreamingResponse) GetSchemaVersionOk

func (o *CreateDataStreamingResponse) GetSchemaVersionOk() (*float32, bool)

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

func (*CreateDataStreamingResponse) HasResults

func (o *CreateDataStreamingResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*CreateDataStreamingResponse) HasSchemaVersion

func (o *CreateDataStreamingResponse) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (CreateDataStreamingResponse) MarshalJSON

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

func (*CreateDataStreamingResponse) SetResults

SetResults gets a reference to the given []PostDataStreamingResponse and assigns it to the Results field.

func (*CreateDataStreamingResponse) SetSchemaVersion

func (o *CreateDataStreamingResponse) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (CreateDataStreamingResponse) ToMap

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

type CreateNewDataStreaming201Response

type CreateNewDataStreaming201Response struct {
	CreateCustomDataStreamingResponse *CreateCustomDataStreamingResponse
	CreateDataStreamingResponse       *CreateDataStreamingResponse
}

CreateNewDataStreaming201Response - struct for CreateNewDataStreaming201Response

func CreateCustomDataStreamingResponseAsCreateNewDataStreaming201Response

func CreateCustomDataStreamingResponseAsCreateNewDataStreaming201Response(v *CreateCustomDataStreamingResponse) CreateNewDataStreaming201Response

CreateCustomDataStreamingResponseAsCreateNewDataStreaming201Response is a convenience function that returns CreateCustomDataStreamingResponse wrapped in CreateNewDataStreaming201Response

func CreateDataStreamingResponseAsCreateNewDataStreaming201Response

func CreateDataStreamingResponseAsCreateNewDataStreaming201Response(v *CreateDataStreamingResponse) CreateNewDataStreaming201Response

CreateDataStreamingResponseAsCreateNewDataStreaming201Response is a convenience function that returns CreateDataStreamingResponse wrapped in CreateNewDataStreaming201Response

func (*CreateNewDataStreaming201Response) GetActualInstance

func (obj *CreateNewDataStreaming201Response) GetActualInstance() interface{}

Get the actual instance

func (CreateNewDataStreaming201Response) MarshalJSON

func (src CreateNewDataStreaming201Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CreateNewDataStreaming201Response) UnmarshalJSON

func (dst *CreateNewDataStreaming201Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CreateNewDataStreamingRequest

type CreateNewDataStreamingRequest struct {
	CustomDataStreamingPostBody   *CustomDataStreamingPostBody
	DataStreamingPostBody         *DataStreamingPostBody
	StandardDataStreamingPostBody *StandardDataStreamingPostBody
}

CreateNewDataStreamingRequest - struct for CreateNewDataStreamingRequest

func CustomDataStreamingPostBodyAsCreateNewDataStreamingRequest

func CustomDataStreamingPostBodyAsCreateNewDataStreamingRequest(v *CustomDataStreamingPostBody) CreateNewDataStreamingRequest

CustomDataStreamingPostBodyAsCreateNewDataStreamingRequest is a convenience function that returns CustomDataStreamingPostBody wrapped in CreateNewDataStreamingRequest

func DataStreamingPostBodyAsCreateNewDataStreamingRequest

func DataStreamingPostBodyAsCreateNewDataStreamingRequest(v *DataStreamingPostBody) CreateNewDataStreamingRequest

DataStreamingPostBodyAsCreateNewDataStreamingRequest is a convenience function that returns DataStreamingPostBody wrapped in CreateNewDataStreamingRequest

func StandardDataStreamingPostBodyAsCreateNewDataStreamingRequest

func StandardDataStreamingPostBodyAsCreateNewDataStreamingRequest(v *StandardDataStreamingPostBody) CreateNewDataStreamingRequest

StandardDataStreamingPostBodyAsCreateNewDataStreamingRequest is a convenience function that returns StandardDataStreamingPostBody wrapped in CreateNewDataStreamingRequest

func (*CreateNewDataStreamingRequest) GetActualInstance

func (obj *CreateNewDataStreamingRequest) GetActualInstance() interface{}

Get the actual instance

func (CreateNewDataStreamingRequest) MarshalJSON

func (src CreateNewDataStreamingRequest) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CreateNewDataStreamingRequest) UnmarshalJSON

func (dst *CreateNewDataStreamingRequest) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CustomDataStreamingPostBody

type CustomDataStreamingPostBody struct {
	Name *string `json:"name,omitempty"`
	// Options:  * `http` - Edge Applications (default)  * `waf` - WAF Events  * `cells_console` - Edge Functions  * `rtm_activity` - Activity History
	DataSource NullableString `json:"data_source,omitempty"`
	// Note:  * Add all variables and values that will be used to stream according to the data source you choose to use.    * All data streaming [variables can be found on the reference documentation](https://www.azion.com/en/documentation/products/data-streaming/#selecting-data-sources).
	TemplateModel *string      `json:"template_model,omitempty"`
	Active        NullableBool `json:"active,omitempty"`
}

CustomDataStreamingPostBody struct for CustomDataStreamingPostBody

func NewCustomDataStreamingPostBody

func NewCustomDataStreamingPostBody() *CustomDataStreamingPostBody

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

func NewCustomDataStreamingPostBodyWithDefaults

func NewCustomDataStreamingPostBodyWithDefaults() *CustomDataStreamingPostBody

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

func (*CustomDataStreamingPostBody) GetActive

func (o *CustomDataStreamingPostBody) GetActive() bool

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

func (*CustomDataStreamingPostBody) GetActiveOk

func (o *CustomDataStreamingPostBody) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active 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 (*CustomDataStreamingPostBody) GetDataSource

func (o *CustomDataStreamingPostBody) GetDataSource() string

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

func (*CustomDataStreamingPostBody) GetDataSourceOk

func (o *CustomDataStreamingPostBody) GetDataSourceOk() (*string, bool)

GetDataSourceOk returns a tuple with the DataSource 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 (*CustomDataStreamingPostBody) GetName

func (o *CustomDataStreamingPostBody) GetName() string

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

func (*CustomDataStreamingPostBody) GetNameOk

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

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

func (*CustomDataStreamingPostBody) GetTemplateModel

func (o *CustomDataStreamingPostBody) GetTemplateModel() string

GetTemplateModel returns the TemplateModel field value if set, zero value otherwise.

func (*CustomDataStreamingPostBody) GetTemplateModelOk

func (o *CustomDataStreamingPostBody) GetTemplateModelOk() (*string, bool)

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

func (*CustomDataStreamingPostBody) HasActive

func (o *CustomDataStreamingPostBody) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*CustomDataStreamingPostBody) HasDataSource

func (o *CustomDataStreamingPostBody) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*CustomDataStreamingPostBody) HasName

func (o *CustomDataStreamingPostBody) HasName() bool

HasName returns a boolean if a field has been set.

func (*CustomDataStreamingPostBody) HasTemplateModel

func (o *CustomDataStreamingPostBody) HasTemplateModel() bool

HasTemplateModel returns a boolean if a field has been set.

func (CustomDataStreamingPostBody) MarshalJSON

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

func (*CustomDataStreamingPostBody) SetActive

func (o *CustomDataStreamingPostBody) SetActive(v bool)

SetActive gets a reference to the given NullableBool and assigns it to the Active field.

func (*CustomDataStreamingPostBody) SetActiveNil

func (o *CustomDataStreamingPostBody) SetActiveNil()

SetActiveNil sets the value for Active to be an explicit nil

func (*CustomDataStreamingPostBody) SetDataSource

func (o *CustomDataStreamingPostBody) SetDataSource(v string)

SetDataSource gets a reference to the given NullableString and assigns it to the DataSource field.

func (*CustomDataStreamingPostBody) SetDataSourceNil

func (o *CustomDataStreamingPostBody) SetDataSourceNil()

SetDataSourceNil sets the value for DataSource to be an explicit nil

func (*CustomDataStreamingPostBody) SetName

func (o *CustomDataStreamingPostBody) SetName(v string)

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

func (*CustomDataStreamingPostBody) SetTemplateModel

func (o *CustomDataStreamingPostBody) SetTemplateModel(v string)

SetTemplateModel gets a reference to the given string and assigns it to the TemplateModel field.

func (CustomDataStreamingPostBody) ToMap

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

func (*CustomDataStreamingPostBody) UnsetActive

func (o *CustomDataStreamingPostBody) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

func (*CustomDataStreamingPostBody) UnsetDataSource

func (o *CustomDataStreamingPostBody) UnsetDataSource()

UnsetDataSource ensures that no value is present for DataSource, not even an explicit nil

type DataStreamingAPIService added in v0.93.0

type DataStreamingAPIService service

DataStreamingAPIService DataStreamingAPI service

func (*DataStreamingAPIService) CreateNewDataStreaming added in v0.93.0

CreateNewDataStreaming Create a new data streaming

Create a new data streaming.

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

func (*DataStreamingAPIService) CreateNewDataStreamingExecute added in v0.93.0

Execute executes the request

@return CreateNewDataStreaming201Response

func (*DataStreamingAPIService) DeleteDataStreamingById added in v0.93.0

func (a *DataStreamingAPIService) DeleteDataStreamingById(ctx context.Context, dataStreamingId int32) ApiDeleteDataStreamingByIdRequest

DeleteDataStreamingById Delete data streaming

Use the DELETE method to remove a data streaming from your account.

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

func (*DataStreamingAPIService) DeleteDataStreamingByIdExecute added in v0.93.0

func (a *DataStreamingAPIService) DeleteDataStreamingByIdExecute(r ApiDeleteDataStreamingByIdRequest) (*http.Response, error)

Execute executes the request

func (*DataStreamingAPIService) EditDataStreamingById added in v0.93.0

func (a *DataStreamingAPIService) EditDataStreamingById(ctx context.Context, dataStreamingId int32) ApiEditDataStreamingByIdRequest

EditDataStreamingById Edit data streaming

Use the PATCH method to change only select settings of your data streaming.

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

func (*DataStreamingAPIService) EditDataStreamingByIdExecute added in v0.93.0

Execute executes the request

@return CreateNewDataStreaming201Response

func (*DataStreamingAPIService) ListDataStreamingById added in v0.93.0

func (a *DataStreamingAPIService) ListDataStreamingById(ctx context.Context, dataStreamingId int32) ApiListDataStreamingByIdRequest

ListDataStreamingById Get expecific data streaming by Data Streaming ID

Use the GET method and add the data streaming's ID to the URI of the request to get more data on a specific data streaming.

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

func (*DataStreamingAPIService) ListDataStreamingByIdExecute added in v0.93.0

Execute executes the request

@return DataStreamingsById

func (*DataStreamingAPIService) ListDataStreamings added in v0.93.0

ListDataStreamings List all exist data streamings

Use the GET method to list all data streamings, both active and inactive, and its properties.

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

func (*DataStreamingAPIService) ListDataStreamingsExecute added in v0.93.0

Execute executes the request

@return DataStreamingResponseWithResults

func (*DataStreamingAPIService) OverwriteDataStreamingById added in v0.93.0

func (a *DataStreamingAPIService) OverwriteDataStreamingById(ctx context.Context, dataStreamingId int32) ApiOverwriteDataStreamingByIdRequest

OverwriteDataStreamingById Overwrite data streaming

Use the PUT method to overwrite the data streaming. Although you can change a single property using the PUT method, you must pass all fields for the request to be completed.

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

func (*DataStreamingAPIService) OverwriteDataStreamingByIdExecute added in v0.93.0

Execute executes the request

@return CreateNewDataStreaming201Response

type DataStreamingDomainAPIService added in v0.93.0

type DataStreamingDomainAPIService service

DataStreamingDomainAPIService DataStreamingDomainAPI service

func (*DataStreamingDomainAPIService) ListDataStreaming added in v0.93.0

ListDataStreaming List all domains used on data streaming

Use the GET method to list all available domains that can be used on Data Streaming operations.

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

func (*DataStreamingDomainAPIService) ListDataStreamingExecute added in v0.93.0

Execute executes the request

@return DataStreamingsDomainResponse

type DataStreamingEndpointTypeDatadogDTS

type DataStreamingEndpointTypeDatadogDTS struct {
	EndpointType *string `json:"endpoint_type,omitempty"`
	Url          *string `json:"url,omitempty"`
	ApiKey       *string `json:"api_key,omitempty"`
}

DataStreamingEndpointTypeDatadogDTS struct for DataStreamingEndpointTypeDatadogDTS

func NewDataStreamingEndpointTypeDatadogDTS

func NewDataStreamingEndpointTypeDatadogDTS() *DataStreamingEndpointTypeDatadogDTS

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

func NewDataStreamingEndpointTypeDatadogDTSWithDefaults

func NewDataStreamingEndpointTypeDatadogDTSWithDefaults() *DataStreamingEndpointTypeDatadogDTS

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

func (*DataStreamingEndpointTypeDatadogDTS) GetApiKey

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeDatadogDTS) GetApiKeyOk

func (o *DataStreamingEndpointTypeDatadogDTS) GetApiKeyOk() (*string, bool)

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

func (*DataStreamingEndpointTypeDatadogDTS) GetEndpointType

func (o *DataStreamingEndpointTypeDatadogDTS) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeDatadogDTS) GetEndpointTypeOk

func (o *DataStreamingEndpointTypeDatadogDTS) GetEndpointTypeOk() (*string, bool)

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

func (*DataStreamingEndpointTypeDatadogDTS) GetUrl

GetUrl returns the Url field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeDatadogDTS) GetUrlOk

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

func (*DataStreamingEndpointTypeDatadogDTS) HasApiKey

HasApiKey returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeDatadogDTS) HasEndpointType

func (o *DataStreamingEndpointTypeDatadogDTS) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeDatadogDTS) HasUrl

HasUrl returns a boolean if a field has been set.

func (DataStreamingEndpointTypeDatadogDTS) MarshalJSON

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

func (*DataStreamingEndpointTypeDatadogDTS) SetApiKey

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*DataStreamingEndpointTypeDatadogDTS) SetEndpointType

func (o *DataStreamingEndpointTypeDatadogDTS) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*DataStreamingEndpointTypeDatadogDTS) SetUrl

SetUrl gets a reference to the given string and assigns it to the Url field.

func (DataStreamingEndpointTypeDatadogDTS) ToMap

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

type DataStreamingEndpointTypeKafka

type DataStreamingEndpointTypeKafka struct {
	EndpointType     *string `json:"endpoint_type,omitempty"`
	UseTls           *bool   `json:"use_tls,omitempty"`
	KafkaTopic       *string `json:"kafka_topic,omitempty"`
	BootstrapServers *string `json:"bootstrap_servers,omitempty"`
}

DataStreamingEndpointTypeKafka struct for DataStreamingEndpointTypeKafka

func NewDataStreamingEndpointTypeKafka

func NewDataStreamingEndpointTypeKafka() *DataStreamingEndpointTypeKafka

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

func NewDataStreamingEndpointTypeKafkaWithDefaults

func NewDataStreamingEndpointTypeKafkaWithDefaults() *DataStreamingEndpointTypeKafka

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

func (*DataStreamingEndpointTypeKafka) GetBootstrapServers

func (o *DataStreamingEndpointTypeKafka) GetBootstrapServers() string

GetBootstrapServers returns the BootstrapServers field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeKafka) GetBootstrapServersOk

func (o *DataStreamingEndpointTypeKafka) GetBootstrapServersOk() (*string, bool)

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

func (*DataStreamingEndpointTypeKafka) GetEndpointType

func (o *DataStreamingEndpointTypeKafka) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeKafka) GetEndpointTypeOk

func (o *DataStreamingEndpointTypeKafka) GetEndpointTypeOk() (*string, bool)

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

func (*DataStreamingEndpointTypeKafka) GetKafkaTopic

func (o *DataStreamingEndpointTypeKafka) GetKafkaTopic() string

GetKafkaTopic returns the KafkaTopic field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeKafka) GetKafkaTopicOk

func (o *DataStreamingEndpointTypeKafka) GetKafkaTopicOk() (*string, bool)

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

func (*DataStreamingEndpointTypeKafka) GetUseTls

func (o *DataStreamingEndpointTypeKafka) GetUseTls() bool

GetUseTls returns the UseTls field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeKafka) GetUseTlsOk

func (o *DataStreamingEndpointTypeKafka) GetUseTlsOk() (*bool, bool)

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

func (*DataStreamingEndpointTypeKafka) HasBootstrapServers

func (o *DataStreamingEndpointTypeKafka) HasBootstrapServers() bool

HasBootstrapServers returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeKafka) HasEndpointType

func (o *DataStreamingEndpointTypeKafka) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeKafka) HasKafkaTopic

func (o *DataStreamingEndpointTypeKafka) HasKafkaTopic() bool

HasKafkaTopic returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeKafka) HasUseTls

func (o *DataStreamingEndpointTypeKafka) HasUseTls() bool

HasUseTls returns a boolean if a field has been set.

func (DataStreamingEndpointTypeKafka) MarshalJSON

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

func (*DataStreamingEndpointTypeKafka) SetBootstrapServers

func (o *DataStreamingEndpointTypeKafka) SetBootstrapServers(v string)

SetBootstrapServers gets a reference to the given string and assigns it to the BootstrapServers field.

func (*DataStreamingEndpointTypeKafka) SetEndpointType

func (o *DataStreamingEndpointTypeKafka) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*DataStreamingEndpointTypeKafka) SetKafkaTopic

func (o *DataStreamingEndpointTypeKafka) SetKafkaTopic(v string)

SetKafkaTopic gets a reference to the given string and assigns it to the KafkaTopic field.

func (*DataStreamingEndpointTypeKafka) SetUseTls

func (o *DataStreamingEndpointTypeKafka) SetUseTls(v bool)

SetUseTls gets a reference to the given bool and assigns it to the UseTls field.

func (DataStreamingEndpointTypeKafka) ToMap

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

type DataStreamingEndpointTypeStandard

type DataStreamingEndpointTypeStandard struct {
	EndpointType     *string                                          `json:"endpoint_type,omitempty"`
	Url              *string                                          `json:"url,omitempty"`
	LogLineSeparator *string                                          `json:"log_line_separator,omitempty"`
	PayloadFormat    *string                                          `json:"payload_format,omitempty"`
	MaxSize          *int32                                           `json:"max_size,omitempty"`
	Headers          *DataStreamingEndpointTypeStandardHeadersExample `json:"headers,omitempty"`
}

DataStreamingEndpointTypeStandard struct for DataStreamingEndpointTypeStandard

func NewDataStreamingEndpointTypeStandard

func NewDataStreamingEndpointTypeStandard() *DataStreamingEndpointTypeStandard

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

func NewDataStreamingEndpointTypeStandardWithDefaults

func NewDataStreamingEndpointTypeStandardWithDefaults() *DataStreamingEndpointTypeStandard

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

func (*DataStreamingEndpointTypeStandard) GetEndpointType

func (o *DataStreamingEndpointTypeStandard) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetEndpointTypeOk

func (o *DataStreamingEndpointTypeStandard) GetEndpointTypeOk() (*string, bool)

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

func (*DataStreamingEndpointTypeStandard) GetHeaders

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetHeadersOk

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 (*DataStreamingEndpointTypeStandard) GetLogLineSeparator

func (o *DataStreamingEndpointTypeStandard) GetLogLineSeparator() string

GetLogLineSeparator returns the LogLineSeparator field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetLogLineSeparatorOk

func (o *DataStreamingEndpointTypeStandard) GetLogLineSeparatorOk() (*string, bool)

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

func (*DataStreamingEndpointTypeStandard) GetMaxSize

func (o *DataStreamingEndpointTypeStandard) GetMaxSize() int32

GetMaxSize returns the MaxSize field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetMaxSizeOk

func (o *DataStreamingEndpointTypeStandard) GetMaxSizeOk() (*int32, bool)

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

func (*DataStreamingEndpointTypeStandard) GetPayloadFormat

func (o *DataStreamingEndpointTypeStandard) GetPayloadFormat() string

GetPayloadFormat returns the PayloadFormat field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetPayloadFormatOk

func (o *DataStreamingEndpointTypeStandard) GetPayloadFormatOk() (*string, bool)

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

func (*DataStreamingEndpointTypeStandard) GetUrl

GetUrl returns the Url field value if set, zero value otherwise.

func (*DataStreamingEndpointTypeStandard) GetUrlOk

func (o *DataStreamingEndpointTypeStandard) GetUrlOk() (*string, bool)

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

func (*DataStreamingEndpointTypeStandard) HasEndpointType

func (o *DataStreamingEndpointTypeStandard) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandard) HasHeaders

func (o *DataStreamingEndpointTypeStandard) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandard) HasLogLineSeparator

func (o *DataStreamingEndpointTypeStandard) HasLogLineSeparator() bool

HasLogLineSeparator returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandard) HasMaxSize

func (o *DataStreamingEndpointTypeStandard) HasMaxSize() bool

HasMaxSize returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandard) HasPayloadFormat

func (o *DataStreamingEndpointTypeStandard) HasPayloadFormat() bool

HasPayloadFormat returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandard) HasUrl

HasUrl returns a boolean if a field has been set.

func (DataStreamingEndpointTypeStandard) MarshalJSON

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

func (*DataStreamingEndpointTypeStandard) SetEndpointType

func (o *DataStreamingEndpointTypeStandard) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*DataStreamingEndpointTypeStandard) SetHeaders

SetHeaders gets a reference to the given DataStreamingEndpointTypeStandardHeadersExample and assigns it to the Headers field.

func (*DataStreamingEndpointTypeStandard) SetLogLineSeparator

func (o *DataStreamingEndpointTypeStandard) SetLogLineSeparator(v string)

SetLogLineSeparator gets a reference to the given string and assigns it to the LogLineSeparator field.

func (*DataStreamingEndpointTypeStandard) SetMaxSize

func (o *DataStreamingEndpointTypeStandard) SetMaxSize(v int32)

SetMaxSize gets a reference to the given int32 and assigns it to the MaxSize field.

func (*DataStreamingEndpointTypeStandard) SetPayloadFormat

func (o *DataStreamingEndpointTypeStandard) SetPayloadFormat(v string)

SetPayloadFormat gets a reference to the given string and assigns it to the PayloadFormat field.

func (*DataStreamingEndpointTypeStandard) SetUrl

SetUrl gets a reference to the given string and assigns it to the Url field.

func (DataStreamingEndpointTypeStandard) ToMap

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

type DataStreamingEndpointTypeStandardHeadersExample

type DataStreamingEndpointTypeStandardHeadersExample struct {
	HeaderName1 NullableString `json:"header-name-1,omitempty"`
	HeaderName2 NullableString `json:"header-name-2,omitempty"`
	HeaderName3 NullableString `json:"header-name-3,omitempty"`
}

DataStreamingEndpointTypeStandardHeadersExample struct for DataStreamingEndpointTypeStandardHeadersExample

func NewDataStreamingEndpointTypeStandardHeadersExample

func NewDataStreamingEndpointTypeStandardHeadersExample() *DataStreamingEndpointTypeStandardHeadersExample

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

func NewDataStreamingEndpointTypeStandardHeadersExampleWithDefaults

func NewDataStreamingEndpointTypeStandardHeadersExampleWithDefaults() *DataStreamingEndpointTypeStandardHeadersExample

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

func (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName1

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

func (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName1Ok

GetHeaderName1Ok returns a tuple with the HeaderName1 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 (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName2

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

func (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName2Ok

GetHeaderName2Ok returns a tuple with the HeaderName2 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 (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName3

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

func (*DataStreamingEndpointTypeStandardHeadersExample) GetHeaderName3Ok

GetHeaderName3Ok returns a tuple with the HeaderName3 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 (*DataStreamingEndpointTypeStandardHeadersExample) HasHeaderName1

HasHeaderName1 returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandardHeadersExample) HasHeaderName2

HasHeaderName2 returns a boolean if a field has been set.

func (*DataStreamingEndpointTypeStandardHeadersExample) HasHeaderName3

HasHeaderName3 returns a boolean if a field has been set.

func (DataStreamingEndpointTypeStandardHeadersExample) MarshalJSON

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName1

SetHeaderName1 gets a reference to the given NullableString and assigns it to the HeaderName1 field.

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName1Nil

func (o *DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName1Nil()

SetHeaderName1Nil sets the value for HeaderName1 to be an explicit nil

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName2

SetHeaderName2 gets a reference to the given NullableString and assigns it to the HeaderName2 field.

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName2Nil

func (o *DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName2Nil()

SetHeaderName2Nil sets the value for HeaderName2 to be an explicit nil

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName3

SetHeaderName3 gets a reference to the given NullableString and assigns it to the HeaderName3 field.

func (*DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName3Nil

func (o *DataStreamingEndpointTypeStandardHeadersExample) SetHeaderName3Nil()

SetHeaderName3Nil sets the value for HeaderName3 to be an explicit nil

func (DataStreamingEndpointTypeStandardHeadersExample) ToMap

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

func (*DataStreamingEndpointTypeStandardHeadersExample) UnsetHeaderName1

UnsetHeaderName1 ensures that no value is present for HeaderName1, not even an explicit nil

func (*DataStreamingEndpointTypeStandardHeadersExample) UnsetHeaderName2

UnsetHeaderName2 ensures that no value is present for HeaderName2, not even an explicit nil

func (*DataStreamingEndpointTypeStandardHeadersExample) UnsetHeaderName3

UnsetHeaderName3 ensures that no value is present for HeaderName3, not even an explicit nil

type DataStreamingPostBody

type DataStreamingPostBody struct {
	Name *string `json:"name,omitempty"`
	// Options:  * `2` - Edge Applications Event Collector  * `4` - WAF Event Collector  * `86` - Edge Functions Event Collector  * `184` - Edge Applications + WAF Event Collector  * `251` - Activity History Collector
	TemplateId *int32 `json:"template_id,omitempty"`
	// Options:  * `http` - Edge Applications (default)  * `waf` - WAF Events  * `cells_console` - Edge Functions  * `rtm_activity` - Activity History
	DataSource NullableString `json:"data_source,omitempty"`
	Active     NullableBool   `json:"active,omitempty"`
	// Options' examples:  - `Standard HTTP/HTTPS POST` - { \"endpoint_type\": \"standard\", \"url\": \"http://example.com\", \"log_line_separator\": \"\\n\", \"payload_format\": \"$dataset\", \"max_size\": 1000024 }  - `Apache Kafka` - { \"endpoint_type\": \"kafka\", \"kafka_topic\": \"example_topic\", \"bootstrap_servers\": \"kafka-server.com:9092,kafka-server-2.com:9092\", \"use_tls\":true }  - `Simple Storage Service (S3)` - { \"endpoint_type\": \"s3\", \"access_key\": \"MYACCESSKEY\", \"region\": \"us-east-1\", \"object_key_prefix\": \"my_prefix_\", \"bucket_name\": \"bucket_example\", \"content_type\": \"plain/text\", \"host_url\": \"http://aws-host.com\", \"secret_key\": \"MYSECRETKEY\" }  - `Google BigQuery` - { \"endpoint_type\": \"big_query\", \"dataset_id\": \"my_dataset\", \"project_id\": \"my_project\", \"table_id\": \"my_table\", \"service_account_key\": \"{ \"service_account_key\": \"key_content\" }\" }  - `Elasticsearch` - { “endpoint_type”: \"elasticsearch\", “url”: “http://elasticsearch.com”, “api_key”: “XYZ_API_KEY” }  - `AWS Kinesis Data Firehose` -  { \"endpoint_type\": \"aws_kinesis_firehose\", \"access_key\": \"MYACCESSKEY\", \"stream_name\": \"my_stream_name\", \"region\": \"us-east-1\", \"secret_key\": \"MYSECRETKEY\" }  - `Datadog` - { \"endpoint_type\": \"datadog\", \"url\": \"https://http-intake.logs.datadoghq.com/v1/input\", \"api_key\": \"MYAPIKEY\" }  - `IBM QRadar` - { \"endpoint_type\": \"qradar\", \"url\": \"http://137.15.824.10:14440” }  - `Azure Monitor` - { \"endpoint_type\": \"azure_monitor\", \"log_type\": \"myLogType\", \"shared_key\": \"mysharedkey\", \"time_generated_field\": \"timeGeneratedField\", \"workspace_id\": \"anfhw-123sd-466gcs\"}  - `Azure Blob Storage` - { \"endpoint_type\": \"azure_blob_storage\", \"storage_account\": \"mystorageaccount\", \"container_name\": \"log_container\", \"blob_sas_token\": \"fd56e23e1f12efe\" }  - `Splunk` - { \"endpoint_type\": \"splunk\", \"url\": \"https://inputs.splunk-client.splunkcloud.com:1337/services/collector\", \"api_key\": \"MYAPIKEY\" }
	Endpoint *string `json:"endpoint,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	DomainsIds []int32 `json:"domains_ids,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	AllDomains NullableBool `json:"all_domains,omitempty"`
	// Note:  * `Range` - From 0 to 100.  * `To use:` [Contact the sales team](https://www.azion.com/en/contact-sales/) to activate this feature in your account.
	SamplingPercentage NullableInt32 `json:"sampling_percentage,omitempty"`
}

DataStreamingPostBody struct for DataStreamingPostBody

func NewDataStreamingPostBody

func NewDataStreamingPostBody() *DataStreamingPostBody

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

func NewDataStreamingPostBodyWithDefaults

func NewDataStreamingPostBodyWithDefaults() *DataStreamingPostBody

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

func (*DataStreamingPostBody) GetActive

func (o *DataStreamingPostBody) GetActive() bool

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

func (*DataStreamingPostBody) GetActiveOk

func (o *DataStreamingPostBody) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active 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 (*DataStreamingPostBody) GetAllDomains

func (o *DataStreamingPostBody) GetAllDomains() bool

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

func (*DataStreamingPostBody) GetAllDomainsOk

func (o *DataStreamingPostBody) GetAllDomainsOk() (*bool, bool)

GetAllDomainsOk returns a tuple with the AllDomains 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 (*DataStreamingPostBody) GetDataSource

func (o *DataStreamingPostBody) GetDataSource() string

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

func (*DataStreamingPostBody) GetDataSourceOk

func (o *DataStreamingPostBody) GetDataSourceOk() (*string, bool)

GetDataSourceOk returns a tuple with the DataSource 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 (*DataStreamingPostBody) GetDomainsIds

func (o *DataStreamingPostBody) GetDomainsIds() []int32

GetDomainsIds returns the DomainsIds field value if set, zero value otherwise.

func (*DataStreamingPostBody) GetDomainsIdsOk

func (o *DataStreamingPostBody) GetDomainsIdsOk() ([]int32, bool)

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

func (*DataStreamingPostBody) GetEndpoint

func (o *DataStreamingPostBody) GetEndpoint() string

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*DataStreamingPostBody) GetEndpointOk

func (o *DataStreamingPostBody) GetEndpointOk() (*string, bool)

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

func (*DataStreamingPostBody) GetName

func (o *DataStreamingPostBody) GetName() string

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

func (*DataStreamingPostBody) GetNameOk

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

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

func (*DataStreamingPostBody) GetSamplingPercentage

func (o *DataStreamingPostBody) GetSamplingPercentage() int32

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

func (*DataStreamingPostBody) GetSamplingPercentageOk

func (o *DataStreamingPostBody) GetSamplingPercentageOk() (*int32, bool)

GetSamplingPercentageOk returns a tuple with the SamplingPercentage 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 (*DataStreamingPostBody) GetTemplateId

func (o *DataStreamingPostBody) GetTemplateId() int32

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DataStreamingPostBody) GetTemplateIdOk

func (o *DataStreamingPostBody) GetTemplateIdOk() (*int32, bool)

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

func (*DataStreamingPostBody) HasActive

func (o *DataStreamingPostBody) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasAllDomains

func (o *DataStreamingPostBody) HasAllDomains() bool

HasAllDomains returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasDataSource

func (o *DataStreamingPostBody) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasDomainsIds

func (o *DataStreamingPostBody) HasDomainsIds() bool

HasDomainsIds returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasEndpoint

func (o *DataStreamingPostBody) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasName

func (o *DataStreamingPostBody) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasSamplingPercentage

func (o *DataStreamingPostBody) HasSamplingPercentage() bool

HasSamplingPercentage returns a boolean if a field has been set.

func (*DataStreamingPostBody) HasTemplateId

func (o *DataStreamingPostBody) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (DataStreamingPostBody) MarshalJSON

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

func (*DataStreamingPostBody) SetActive

func (o *DataStreamingPostBody) SetActive(v bool)

SetActive gets a reference to the given NullableBool and assigns it to the Active field.

func (*DataStreamingPostBody) SetActiveNil

func (o *DataStreamingPostBody) SetActiveNil()

SetActiveNil sets the value for Active to be an explicit nil

func (*DataStreamingPostBody) SetAllDomains

func (o *DataStreamingPostBody) SetAllDomains(v bool)

SetAllDomains gets a reference to the given NullableBool and assigns it to the AllDomains field.

func (*DataStreamingPostBody) SetAllDomainsNil

func (o *DataStreamingPostBody) SetAllDomainsNil()

SetAllDomainsNil sets the value for AllDomains to be an explicit nil

func (*DataStreamingPostBody) SetDataSource

func (o *DataStreamingPostBody) SetDataSource(v string)

SetDataSource gets a reference to the given NullableString and assigns it to the DataSource field.

func (*DataStreamingPostBody) SetDataSourceNil

func (o *DataStreamingPostBody) SetDataSourceNil()

SetDataSourceNil sets the value for DataSource to be an explicit nil

func (*DataStreamingPostBody) SetDomainsIds

func (o *DataStreamingPostBody) SetDomainsIds(v []int32)

SetDomainsIds gets a reference to the given []int32 and assigns it to the DomainsIds field.

func (*DataStreamingPostBody) SetEndpoint

func (o *DataStreamingPostBody) SetEndpoint(v string)

SetEndpoint gets a reference to the given string and assigns it to the Endpoint field.

func (*DataStreamingPostBody) SetName

func (o *DataStreamingPostBody) SetName(v string)

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

func (*DataStreamingPostBody) SetSamplingPercentage

func (o *DataStreamingPostBody) SetSamplingPercentage(v int32)

SetSamplingPercentage gets a reference to the given NullableInt32 and assigns it to the SamplingPercentage field.

func (*DataStreamingPostBody) SetSamplingPercentageNil

func (o *DataStreamingPostBody) SetSamplingPercentageNil()

SetSamplingPercentageNil sets the value for SamplingPercentage to be an explicit nil

func (*DataStreamingPostBody) SetTemplateId

func (o *DataStreamingPostBody) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (DataStreamingPostBody) ToMap

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

func (*DataStreamingPostBody) UnsetActive

func (o *DataStreamingPostBody) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

func (*DataStreamingPostBody) UnsetAllDomains

func (o *DataStreamingPostBody) UnsetAllDomains()

UnsetAllDomains ensures that no value is present for AllDomains, not even an explicit nil

func (*DataStreamingPostBody) UnsetDataSource

func (o *DataStreamingPostBody) UnsetDataSource()

UnsetDataSource ensures that no value is present for DataSource, not even an explicit nil

func (*DataStreamingPostBody) UnsetSamplingPercentage

func (o *DataStreamingPostBody) UnsetSamplingPercentage()

UnsetSamplingPercentage ensures that no value is present for SamplingPercentage, not even an explicit nil

type DataStreamingResponseGetResultTypeCustom

type DataStreamingResponseGetResultTypeCustom struct {
	Id            *int32                          `json:"id,omitempty"`
	Name          *string                         `json:"name,omitempty"`
	DataSource    *string                         `json:"data_source,omitempty"`
	Active        *bool                           `json:"active,omitempty"`
	Endpoint      *DataStreamingEndpointTypeKafka `json:"endpoint,omitempty"`
	AllDomains    *bool                           `json:"all_domains,omitempty"`
	TemplateModel *string                         `json:"template_model,omitempty"`
}

DataStreamingResponseGetResultTypeCustom struct for DataStreamingResponseGetResultTypeCustom

func NewDataStreamingResponseGetResultTypeCustom

func NewDataStreamingResponseGetResultTypeCustom() *DataStreamingResponseGetResultTypeCustom

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

func NewDataStreamingResponseGetResultTypeCustomWithDefaults

func NewDataStreamingResponseGetResultTypeCustomWithDefaults() *DataStreamingResponseGetResultTypeCustom

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

func (*DataStreamingResponseGetResultTypeCustom) GetActive

GetActive returns the Active field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeCustom) GetActiveOk

func (o *DataStreamingResponseGetResultTypeCustom) GetActiveOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeCustom) GetAllDomains

GetAllDomains returns the AllDomains field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeCustom) GetAllDomainsOk

func (o *DataStreamingResponseGetResultTypeCustom) GetAllDomainsOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeCustom) GetDataSource

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeCustom) GetDataSourceOk

func (o *DataStreamingResponseGetResultTypeCustom) GetDataSourceOk() (*string, bool)

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

func (*DataStreamingResponseGetResultTypeCustom) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeCustom) GetEndpointOk

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

func (*DataStreamingResponseGetResultTypeCustom) GetId

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

func (*DataStreamingResponseGetResultTypeCustom) GetIdOk

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

func (*DataStreamingResponseGetResultTypeCustom) GetName

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

func (*DataStreamingResponseGetResultTypeCustom) GetNameOk

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

func (*DataStreamingResponseGetResultTypeCustom) GetTemplateModel

func (o *DataStreamingResponseGetResultTypeCustom) GetTemplateModel() string

GetTemplateModel returns the TemplateModel field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeCustom) GetTemplateModelOk

func (o *DataStreamingResponseGetResultTypeCustom) GetTemplateModelOk() (*string, bool)

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

func (*DataStreamingResponseGetResultTypeCustom) HasActive

HasActive returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasAllDomains

HasAllDomains returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasDataSource

HasDataSource returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasEndpoint

HasEndpoint returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasId

HasId returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasName

HasName returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeCustom) HasTemplateModel

func (o *DataStreamingResponseGetResultTypeCustom) HasTemplateModel() bool

HasTemplateModel returns a boolean if a field has been set.

func (DataStreamingResponseGetResultTypeCustom) MarshalJSON

func (*DataStreamingResponseGetResultTypeCustom) SetActive

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*DataStreamingResponseGetResultTypeCustom) SetAllDomains

func (o *DataStreamingResponseGetResultTypeCustom) SetAllDomains(v bool)

SetAllDomains gets a reference to the given bool and assigns it to the AllDomains field.

func (*DataStreamingResponseGetResultTypeCustom) SetDataSource

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*DataStreamingResponseGetResultTypeCustom) SetEndpoint

SetEndpoint gets a reference to the given DataStreamingEndpointTypeKafka and assigns it to the Endpoint field.

func (*DataStreamingResponseGetResultTypeCustom) SetId

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

func (*DataStreamingResponseGetResultTypeCustom) SetName

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

func (*DataStreamingResponseGetResultTypeCustom) SetTemplateModel

func (o *DataStreamingResponseGetResultTypeCustom) SetTemplateModel(v string)

SetTemplateModel gets a reference to the given string and assigns it to the TemplateModel field.

func (DataStreamingResponseGetResultTypeCustom) ToMap

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

type DataStreamingResponseGetResultTypeDatadogDTS

type DataStreamingResponseGetResultTypeDatadogDTS struct {
	Id         *int32                               `json:"id,omitempty"`
	Name       *string                              `json:"name,omitempty"`
	TemplateId *int32                               `json:"template_id,omitempty"`
	DataSource *string                              `json:"data_source,omitempty"`
	Active     *bool                                `json:"active,omitempty"`
	Endpoint   *DataStreamingEndpointTypeDatadogDTS `json:"endpoint,omitempty"`
	AllDomains *bool                                `json:"all_domains,omitempty"`
}

DataStreamingResponseGetResultTypeDatadogDTS struct for DataStreamingResponseGetResultTypeDatadogDTS

func NewDataStreamingResponseGetResultTypeDatadogDTS

func NewDataStreamingResponseGetResultTypeDatadogDTS() *DataStreamingResponseGetResultTypeDatadogDTS

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

func NewDataStreamingResponseGetResultTypeDatadogDTSWithDefaults

func NewDataStreamingResponseGetResultTypeDatadogDTSWithDefaults() *DataStreamingResponseGetResultTypeDatadogDTS

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetActive

GetActive returns the Active field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetActiveOk

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetAllDomains

GetAllDomains returns the AllDomains field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetAllDomainsOk

func (o *DataStreamingResponseGetResultTypeDatadogDTS) GetAllDomainsOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetDataSource

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetDataSourceOk

func (o *DataStreamingResponseGetResultTypeDatadogDTS) GetDataSourceOk() (*string, bool)

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetEndpointOk

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetId

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetIdOk

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetName

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetNameOk

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetTemplateId

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeDatadogDTS) GetTemplateIdOk

func (o *DataStreamingResponseGetResultTypeDatadogDTS) GetTemplateIdOk() (*int32, bool)

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasActive

HasActive returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasAllDomains

HasAllDomains returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasDataSource

HasDataSource returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasEndpoint

HasEndpoint returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasId

HasId returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasName

HasName returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeDatadogDTS) HasTemplateId

HasTemplateId returns a boolean if a field has been set.

func (DataStreamingResponseGetResultTypeDatadogDTS) MarshalJSON

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetActive

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetAllDomains

SetAllDomains gets a reference to the given bool and assigns it to the AllDomains field.

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetDataSource

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetEndpoint

SetEndpoint gets a reference to the given DataStreamingEndpointTypeDatadogDTS and assigns it to the Endpoint field.

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetId

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetName

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

func (*DataStreamingResponseGetResultTypeDatadogDTS) SetTemplateId

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (DataStreamingResponseGetResultTypeDatadogDTS) ToMap

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

type DataStreamingResponseGetResultTypeKafka

type DataStreamingResponseGetResultTypeKafka struct {
	Id         *int32                          `json:"id,omitempty"`
	Name       *string                         `json:"name,omitempty"`
	TemplateId *int32                          `json:"template_id,omitempty"`
	DataSource *string                         `json:"data_source,omitempty"`
	Active     *bool                           `json:"active,omitempty"`
	Endpoint   *DataStreamingEndpointTypeKafka `json:"endpoint,omitempty"`
	AllDomains *bool                           `json:"all_domains,omitempty"`
}

DataStreamingResponseGetResultTypeKafka struct for DataStreamingResponseGetResultTypeKafka

func NewDataStreamingResponseGetResultTypeKafka

func NewDataStreamingResponseGetResultTypeKafka() *DataStreamingResponseGetResultTypeKafka

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

func NewDataStreamingResponseGetResultTypeKafkaWithDefaults

func NewDataStreamingResponseGetResultTypeKafkaWithDefaults() *DataStreamingResponseGetResultTypeKafka

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

func (*DataStreamingResponseGetResultTypeKafka) GetActive

GetActive returns the Active field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeKafka) GetActiveOk

func (o *DataStreamingResponseGetResultTypeKafka) GetActiveOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeKafka) GetAllDomains

func (o *DataStreamingResponseGetResultTypeKafka) GetAllDomains() bool

GetAllDomains returns the AllDomains field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeKafka) GetAllDomainsOk

func (o *DataStreamingResponseGetResultTypeKafka) GetAllDomainsOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeKafka) GetDataSource

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeKafka) GetDataSourceOk

func (o *DataStreamingResponseGetResultTypeKafka) GetDataSourceOk() (*string, bool)

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

func (*DataStreamingResponseGetResultTypeKafka) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeKafka) GetEndpointOk

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

func (*DataStreamingResponseGetResultTypeKafka) GetId

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

func (*DataStreamingResponseGetResultTypeKafka) GetIdOk

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

func (*DataStreamingResponseGetResultTypeKafka) GetName

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

func (*DataStreamingResponseGetResultTypeKafka) GetNameOk

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

func (*DataStreamingResponseGetResultTypeKafka) GetTemplateId

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeKafka) GetTemplateIdOk

func (o *DataStreamingResponseGetResultTypeKafka) GetTemplateIdOk() (*int32, bool)

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

func (*DataStreamingResponseGetResultTypeKafka) HasActive

HasActive returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasAllDomains

func (o *DataStreamingResponseGetResultTypeKafka) HasAllDomains() bool

HasAllDomains returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasDataSource

func (o *DataStreamingResponseGetResultTypeKafka) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasEndpoint

HasEndpoint returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasId

HasId returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasName

HasName returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeKafka) HasTemplateId

func (o *DataStreamingResponseGetResultTypeKafka) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (DataStreamingResponseGetResultTypeKafka) MarshalJSON

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

func (*DataStreamingResponseGetResultTypeKafka) SetActive

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*DataStreamingResponseGetResultTypeKafka) SetAllDomains

func (o *DataStreamingResponseGetResultTypeKafka) SetAllDomains(v bool)

SetAllDomains gets a reference to the given bool and assigns it to the AllDomains field.

func (*DataStreamingResponseGetResultTypeKafka) SetDataSource

func (o *DataStreamingResponseGetResultTypeKafka) SetDataSource(v string)

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*DataStreamingResponseGetResultTypeKafka) SetEndpoint

SetEndpoint gets a reference to the given DataStreamingEndpointTypeKafka and assigns it to the Endpoint field.

func (*DataStreamingResponseGetResultTypeKafka) SetId

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

func (*DataStreamingResponseGetResultTypeKafka) SetName

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

func (*DataStreamingResponseGetResultTypeKafka) SetTemplateId

func (o *DataStreamingResponseGetResultTypeKafka) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (DataStreamingResponseGetResultTypeKafka) ToMap

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

type DataStreamingResponseGetResultTypeStandard

type DataStreamingResponseGetResultTypeStandard struct {
	Id         *int32                             `json:"id,omitempty"`
	Name       *string                            `json:"name,omitempty"`
	TemplateId *int32                             `json:"template_id,omitempty"`
	DataSource *string                            `json:"data_source,omitempty"`
	Active     *bool                              `json:"active,omitempty"`
	Endpoint   *DataStreamingEndpointTypeStandard `json:"endpoint,omitempty"`
	AllDomains *bool                              `json:"all_domains,omitempty"`
}

DataStreamingResponseGetResultTypeStandard struct for DataStreamingResponseGetResultTypeStandard

func NewDataStreamingResponseGetResultTypeStandard

func NewDataStreamingResponseGetResultTypeStandard() *DataStreamingResponseGetResultTypeStandard

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

func NewDataStreamingResponseGetResultTypeStandardWithDefaults

func NewDataStreamingResponseGetResultTypeStandardWithDefaults() *DataStreamingResponseGetResultTypeStandard

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

func (*DataStreamingResponseGetResultTypeStandard) GetActive

GetActive returns the Active field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeStandard) GetActiveOk

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

func (*DataStreamingResponseGetResultTypeStandard) GetAllDomains

GetAllDomains returns the AllDomains field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeStandard) GetAllDomainsOk

func (o *DataStreamingResponseGetResultTypeStandard) GetAllDomainsOk() (*bool, bool)

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

func (*DataStreamingResponseGetResultTypeStandard) GetDataSource

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeStandard) GetDataSourceOk

func (o *DataStreamingResponseGetResultTypeStandard) GetDataSourceOk() (*string, bool)

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

func (*DataStreamingResponseGetResultTypeStandard) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeStandard) GetEndpointOk

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

func (*DataStreamingResponseGetResultTypeStandard) GetId

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

func (*DataStreamingResponseGetResultTypeStandard) GetIdOk

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

func (*DataStreamingResponseGetResultTypeStandard) GetName

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

func (*DataStreamingResponseGetResultTypeStandard) GetNameOk

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

func (*DataStreamingResponseGetResultTypeStandard) GetTemplateId

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DataStreamingResponseGetResultTypeStandard) GetTemplateIdOk

func (o *DataStreamingResponseGetResultTypeStandard) GetTemplateIdOk() (*int32, bool)

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

func (*DataStreamingResponseGetResultTypeStandard) HasActive

HasActive returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasAllDomains

HasAllDomains returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasDataSource

HasDataSource returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasEndpoint

HasEndpoint returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasId

HasId returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasName

HasName returns a boolean if a field has been set.

func (*DataStreamingResponseGetResultTypeStandard) HasTemplateId

HasTemplateId returns a boolean if a field has been set.

func (DataStreamingResponseGetResultTypeStandard) MarshalJSON

func (*DataStreamingResponseGetResultTypeStandard) SetActive

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*DataStreamingResponseGetResultTypeStandard) SetAllDomains

SetAllDomains gets a reference to the given bool and assigns it to the AllDomains field.

func (*DataStreamingResponseGetResultTypeStandard) SetDataSource

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*DataStreamingResponseGetResultTypeStandard) SetEndpoint

SetEndpoint gets a reference to the given DataStreamingEndpointTypeStandard and assigns it to the Endpoint field.

func (*DataStreamingResponseGetResultTypeStandard) SetId

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

func (*DataStreamingResponseGetResultTypeStandard) SetName

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

func (*DataStreamingResponseGetResultTypeStandard) SetTemplateId

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (DataStreamingResponseGetResultTypeStandard) ToMap

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

type DataStreamingResponseWithResults

type DataStreamingResponseWithResults struct {
	Results       []DataStreamingResponseWithResultsResultsInner `json:"results,omitempty"`
	SchemaVersion *float32                                       `json:"schema_version,omitempty"`
}

DataStreamingResponseWithResults struct for DataStreamingResponseWithResults

func NewDataStreamingResponseWithResults

func NewDataStreamingResponseWithResults() *DataStreamingResponseWithResults

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

func NewDataStreamingResponseWithResultsWithDefaults

func NewDataStreamingResponseWithResultsWithDefaults() *DataStreamingResponseWithResults

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

func (*DataStreamingResponseWithResults) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*DataStreamingResponseWithResults) GetResultsOk

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

func (*DataStreamingResponseWithResults) GetSchemaVersion

func (o *DataStreamingResponseWithResults) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*DataStreamingResponseWithResults) GetSchemaVersionOk

func (o *DataStreamingResponseWithResults) GetSchemaVersionOk() (*float32, bool)

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

func (*DataStreamingResponseWithResults) HasResults

func (o *DataStreamingResponseWithResults) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*DataStreamingResponseWithResults) HasSchemaVersion

func (o *DataStreamingResponseWithResults) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (DataStreamingResponseWithResults) MarshalJSON

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

func (*DataStreamingResponseWithResults) SetResults

SetResults gets a reference to the given []DataStreamingResponseWithResultsResultsInner and assigns it to the Results field.

func (*DataStreamingResponseWithResults) SetSchemaVersion

func (o *DataStreamingResponseWithResults) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (DataStreamingResponseWithResults) ToMap

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

type DataStreamingResponseWithResultsResultsInner

type DataStreamingResponseWithResultsResultsInner struct {
	DataStreamingResponseGetResultTypeCustom     *DataStreamingResponseGetResultTypeCustom
	DataStreamingResponseGetResultTypeDatadogDTS *DataStreamingResponseGetResultTypeDatadogDTS
	DataStreamingResponseGetResultTypeKafka      *DataStreamingResponseGetResultTypeKafka
	DataStreamingResponseGetResultTypeStandard   *DataStreamingResponseGetResultTypeStandard
}

DataStreamingResponseWithResultsResultsInner struct for DataStreamingResponseWithResultsResultsInner

func (*DataStreamingResponseWithResultsResultsInner) MarshalJSON

Marshal data from the first non-nil pointers in the struct to JSON

func (*DataStreamingResponseWithResultsResultsInner) UnmarshalJSON

func (dst *DataStreamingResponseWithResultsResultsInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DataStreamingTemplatesAPIService added in v0.93.0

type DataStreamingTemplatesAPIService service

DataStreamingTemplatesAPIService DataStreamingTemplatesAPI service

func (*DataStreamingTemplatesAPIService) GetDataStramingTemplateById added in v0.93.0

func (a *DataStreamingTemplatesAPIService) GetDataStramingTemplateById(ctx context.Context, templateId int32) ApiGetDataStramingTemplateByIdRequest

GetDataStramingTemplateById Get an global Template info by template ID

Use the GET method and add the data streaming's ID to the URI of the request to get more data on a specific data streaming global template.

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

func (*DataStreamingTemplatesAPIService) GetDataStramingTemplateByIdExecute added in v0.93.0

Execute executes the request

@return TemplateResultById

func (*DataStreamingTemplatesAPIService) ListDataStreamingTemplates added in v0.93.0

ListDataStreamingTemplates List all global Templates that can be used on Data Streaming operations

Use the GET method to list all global templates that can be used on Data Streaming operations.

**Note:** Customized templates won't be listed.

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

func (*DataStreamingTemplatesAPIService) ListDataStreamingTemplatesExecute added in v0.93.0

Execute executes the request

@return TemplateResults

type DataStreamingsById

type DataStreamingsById struct {
	Results       *DataStreamingResponseGetResultTypeKafka `json:"results,omitempty"`
	SchemaVersion *float32                                 `json:"schema_version,omitempty"`
}

DataStreamingsById struct for DataStreamingsById

func NewDataStreamingsById

func NewDataStreamingsById() *DataStreamingsById

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

func NewDataStreamingsByIdWithDefaults

func NewDataStreamingsByIdWithDefaults() *DataStreamingsById

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

func (*DataStreamingsById) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*DataStreamingsById) GetResultsOk

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

func (*DataStreamingsById) GetSchemaVersion

func (o *DataStreamingsById) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*DataStreamingsById) GetSchemaVersionOk

func (o *DataStreamingsById) GetSchemaVersionOk() (*float32, bool)

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

func (*DataStreamingsById) HasResults

func (o *DataStreamingsById) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*DataStreamingsById) HasSchemaVersion

func (o *DataStreamingsById) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (DataStreamingsById) MarshalJSON

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

func (*DataStreamingsById) SetResults

SetResults gets a reference to the given DataStreamingResponseGetResultTypeKafka and assigns it to the Results field.

func (*DataStreamingsById) SetSchemaVersion

func (o *DataStreamingsById) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (DataStreamingsById) ToMap

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

type DataStreamingsDomainResponse

type DataStreamingsDomainResponse struct {
	Count         *int32                             `json:"count,omitempty"`
	TotalPages    *int32                             `json:"total_pages,omitempty"`
	SchemaVersion *float32                           `json:"schema_version,omitempty"`
	Links         *DataStreamingsDomainResponseLinks `json:"links,omitempty"`
	Results       []DataStreamingsDomainResult       `json:"results,omitempty"`
}

DataStreamingsDomainResponse struct for DataStreamingsDomainResponse

func NewDataStreamingsDomainResponse

func NewDataStreamingsDomainResponse() *DataStreamingsDomainResponse

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

func NewDataStreamingsDomainResponseWithDefaults

func NewDataStreamingsDomainResponseWithDefaults() *DataStreamingsDomainResponse

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

func (*DataStreamingsDomainResponse) GetCount

func (o *DataStreamingsDomainResponse) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*DataStreamingsDomainResponse) GetCountOk

func (o *DataStreamingsDomainResponse) GetCountOk() (*int32, bool)

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

GetLinks returns the Links field value if set, zero value otherwise.

func (*DataStreamingsDomainResponse) GetLinksOk

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

func (*DataStreamingsDomainResponse) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*DataStreamingsDomainResponse) GetResultsOk

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

func (*DataStreamingsDomainResponse) GetSchemaVersion

func (o *DataStreamingsDomainResponse) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*DataStreamingsDomainResponse) GetSchemaVersionOk

func (o *DataStreamingsDomainResponse) GetSchemaVersionOk() (*float32, bool)

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

func (*DataStreamingsDomainResponse) GetTotalPages

func (o *DataStreamingsDomainResponse) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*DataStreamingsDomainResponse) GetTotalPagesOk

func (o *DataStreamingsDomainResponse) GetTotalPagesOk() (*int32, bool)

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

func (*DataStreamingsDomainResponse) HasCount

func (o *DataStreamingsDomainResponse) HasCount() bool

HasCount returns a boolean if a field has been set.

func (o *DataStreamingsDomainResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*DataStreamingsDomainResponse) HasResults

func (o *DataStreamingsDomainResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*DataStreamingsDomainResponse) HasSchemaVersion

func (o *DataStreamingsDomainResponse) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (*DataStreamingsDomainResponse) HasTotalPages

func (o *DataStreamingsDomainResponse) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (DataStreamingsDomainResponse) MarshalJSON

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

func (*DataStreamingsDomainResponse) SetCount

func (o *DataStreamingsDomainResponse) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

SetLinks gets a reference to the given DataStreamingsDomainResponseLinks and assigns it to the Links field.

func (*DataStreamingsDomainResponse) SetResults

SetResults gets a reference to the given []DataStreamingsDomainResult and assigns it to the Results field.

func (*DataStreamingsDomainResponse) SetSchemaVersion

func (o *DataStreamingsDomainResponse) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (*DataStreamingsDomainResponse) SetTotalPages

func (o *DataStreamingsDomainResponse) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (DataStreamingsDomainResponse) ToMap

func (o DataStreamingsDomainResponse) ToMap() (map[string]interface{}, error)
type DataStreamingsDomainResponseLinks struct {
	Previous NullableString `json:"previous,omitempty"`
	Next     NullableString `json:"next,omitempty"`
}

DataStreamingsDomainResponseLinks struct for DataStreamingsDomainResponseLinks

func NewDataStreamingsDomainResponseLinks() *DataStreamingsDomainResponseLinks

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

func NewDataStreamingsDomainResponseLinksWithDefaults

func NewDataStreamingsDomainResponseLinksWithDefaults() *DataStreamingsDomainResponseLinks

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

func (*DataStreamingsDomainResponseLinks) GetNext

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

func (*DataStreamingsDomainResponseLinks) GetNextOk

func (o *DataStreamingsDomainResponseLinks) 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 (*DataStreamingsDomainResponseLinks) GetPrevious

func (o *DataStreamingsDomainResponseLinks) GetPrevious() string

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

func (*DataStreamingsDomainResponseLinks) GetPreviousOk

func (o *DataStreamingsDomainResponseLinks) GetPreviousOk() (*string, bool)

GetPreviousOk returns a tuple with the Previous 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 (*DataStreamingsDomainResponseLinks) HasNext

HasNext returns a boolean if a field has been set.

func (*DataStreamingsDomainResponseLinks) HasPrevious

func (o *DataStreamingsDomainResponseLinks) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (DataStreamingsDomainResponseLinks) MarshalJSON

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

func (*DataStreamingsDomainResponseLinks) SetNext

SetNext gets a reference to the given NullableString and assigns it to the Next field.

func (*DataStreamingsDomainResponseLinks) SetNextNil

func (o *DataStreamingsDomainResponseLinks) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*DataStreamingsDomainResponseLinks) SetPrevious

func (o *DataStreamingsDomainResponseLinks) SetPrevious(v string)

SetPrevious gets a reference to the given NullableString and assigns it to the Previous field.

func (*DataStreamingsDomainResponseLinks) SetPreviousNil

func (o *DataStreamingsDomainResponseLinks) SetPreviousNil()

SetPreviousNil sets the value for Previous to be an explicit nil

func (DataStreamingsDomainResponseLinks) ToMap

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

func (*DataStreamingsDomainResponseLinks) UnsetNext

func (o *DataStreamingsDomainResponseLinks) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*DataStreamingsDomainResponseLinks) UnsetPrevious

func (o *DataStreamingsDomainResponseLinks) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

type DataStreamingsDomainResult

type DataStreamingsDomainResult struct {
	DomainId *int32       `json:"domain_id,omitempty"`
	Name     *string      `json:"name,omitempty"`
	Selected NullableBool `json:"selected,omitempty"`
}

DataStreamingsDomainResult struct for DataStreamingsDomainResult

func NewDataStreamingsDomainResult

func NewDataStreamingsDomainResult() *DataStreamingsDomainResult

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

func NewDataStreamingsDomainResultWithDefaults

func NewDataStreamingsDomainResultWithDefaults() *DataStreamingsDomainResult

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

func (*DataStreamingsDomainResult) GetDomainId

func (o *DataStreamingsDomainResult) GetDomainId() int32

GetDomainId returns the DomainId field value if set, zero value otherwise.

func (*DataStreamingsDomainResult) GetDomainIdOk

func (o *DataStreamingsDomainResult) GetDomainIdOk() (*int32, bool)

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

func (*DataStreamingsDomainResult) GetName

func (o *DataStreamingsDomainResult) GetName() string

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

func (*DataStreamingsDomainResult) GetNameOk

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

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

func (*DataStreamingsDomainResult) GetSelected

func (o *DataStreamingsDomainResult) GetSelected() bool

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

func (*DataStreamingsDomainResult) GetSelectedOk

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

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

func (*DataStreamingsDomainResult) HasDomainId

func (o *DataStreamingsDomainResult) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

func (*DataStreamingsDomainResult) HasName

func (o *DataStreamingsDomainResult) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataStreamingsDomainResult) HasSelected

func (o *DataStreamingsDomainResult) HasSelected() bool

HasSelected returns a boolean if a field has been set.

func (DataStreamingsDomainResult) MarshalJSON

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

func (*DataStreamingsDomainResult) SetDomainId

func (o *DataStreamingsDomainResult) SetDomainId(v int32)

SetDomainId gets a reference to the given int32 and assigns it to the DomainId field.

func (*DataStreamingsDomainResult) SetName

func (o *DataStreamingsDomainResult) SetName(v string)

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

func (*DataStreamingsDomainResult) SetSelected

func (o *DataStreamingsDomainResult) SetSelected(v bool)

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

func (*DataStreamingsDomainResult) SetSelectedNil

func (o *DataStreamingsDomainResult) SetSelectedNil()

SetSelectedNil sets the value for Selected to be an explicit nil

func (DataStreamingsDomainResult) ToMap

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

func (*DataStreamingsDomainResult) UnsetSelected

func (o *DataStreamingsDomainResult) UnsetSelected()

UnsetSelected ensures that no value is present for Selected, not even an explicit nil

type EndpoinrtS3

type EndpoinrtS3 struct {
	EndpointType    *string `json:"endpoint_type,omitempty"`
	AccessKey       *string `json:"access_key,omitempty"`
	Region          *string `json:"region,omitempty"`
	ObjectKeyPrefix *string `json:"object_key_prefix,omitempty"`
	BucketName      *string `json:"bucket_name,omitempty"`
	ContentType     *string `json:"content_type,omitempty"`
	HostUrl         *string `json:"host_url,omitempty"`
	SecretKey       *string `json:"secret_key,omitempty"`
}

EndpoinrtS3 struct for EndpoinrtS3

func NewEndpoinrtS3

func NewEndpoinrtS3() *EndpoinrtS3

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

func NewEndpoinrtS3WithDefaults

func NewEndpoinrtS3WithDefaults() *EndpoinrtS3

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

func (*EndpoinrtS3) GetAccessKey

func (o *EndpoinrtS3) GetAccessKey() string

GetAccessKey returns the AccessKey field value if set, zero value otherwise.

func (*EndpoinrtS3) GetAccessKeyOk

func (o *EndpoinrtS3) GetAccessKeyOk() (*string, bool)

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

func (*EndpoinrtS3) GetBucketName

func (o *EndpoinrtS3) GetBucketName() string

GetBucketName returns the BucketName field value if set, zero value otherwise.

func (*EndpoinrtS3) GetBucketNameOk

func (o *EndpoinrtS3) GetBucketNameOk() (*string, bool)

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

func (*EndpoinrtS3) GetContentType

func (o *EndpoinrtS3) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*EndpoinrtS3) GetContentTypeOk

func (o *EndpoinrtS3) GetContentTypeOk() (*string, bool)

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

func (*EndpoinrtS3) GetEndpointType

func (o *EndpoinrtS3) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpoinrtS3) GetEndpointTypeOk

func (o *EndpoinrtS3) GetEndpointTypeOk() (*string, bool)

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

func (*EndpoinrtS3) GetHostUrl

func (o *EndpoinrtS3) GetHostUrl() string

GetHostUrl returns the HostUrl field value if set, zero value otherwise.

func (*EndpoinrtS3) GetHostUrlOk

func (o *EndpoinrtS3) GetHostUrlOk() (*string, bool)

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

func (*EndpoinrtS3) GetObjectKeyPrefix

func (o *EndpoinrtS3) GetObjectKeyPrefix() string

GetObjectKeyPrefix returns the ObjectKeyPrefix field value if set, zero value otherwise.

func (*EndpoinrtS3) GetObjectKeyPrefixOk

func (o *EndpoinrtS3) GetObjectKeyPrefixOk() (*string, bool)

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

func (*EndpoinrtS3) GetRegion

func (o *EndpoinrtS3) GetRegion() string

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

func (*EndpoinrtS3) GetRegionOk

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

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

func (*EndpoinrtS3) GetSecretKey

func (o *EndpoinrtS3) GetSecretKey() string

GetSecretKey returns the SecretKey field value if set, zero value otherwise.

func (*EndpoinrtS3) GetSecretKeyOk

func (o *EndpoinrtS3) GetSecretKeyOk() (*string, bool)

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

func (*EndpoinrtS3) HasAccessKey

func (o *EndpoinrtS3) HasAccessKey() bool

HasAccessKey returns a boolean if a field has been set.

func (*EndpoinrtS3) HasBucketName

func (o *EndpoinrtS3) HasBucketName() bool

HasBucketName returns a boolean if a field has been set.

func (*EndpoinrtS3) HasContentType

func (o *EndpoinrtS3) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*EndpoinrtS3) HasEndpointType

func (o *EndpoinrtS3) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpoinrtS3) HasHostUrl

func (o *EndpoinrtS3) HasHostUrl() bool

HasHostUrl returns a boolean if a field has been set.

func (*EndpoinrtS3) HasObjectKeyPrefix

func (o *EndpoinrtS3) HasObjectKeyPrefix() bool

HasObjectKeyPrefix returns a boolean if a field has been set.

func (*EndpoinrtS3) HasRegion

func (o *EndpoinrtS3) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*EndpoinrtS3) HasSecretKey

func (o *EndpoinrtS3) HasSecretKey() bool

HasSecretKey returns a boolean if a field has been set.

func (EndpoinrtS3) MarshalJSON

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

func (*EndpoinrtS3) SetAccessKey

func (o *EndpoinrtS3) SetAccessKey(v string)

SetAccessKey gets a reference to the given string and assigns it to the AccessKey field.

func (*EndpoinrtS3) SetBucketName

func (o *EndpoinrtS3) SetBucketName(v string)

SetBucketName gets a reference to the given string and assigns it to the BucketName field.

func (*EndpoinrtS3) SetContentType

func (o *EndpoinrtS3) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*EndpoinrtS3) SetEndpointType

func (o *EndpoinrtS3) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpoinrtS3) SetHostUrl

func (o *EndpoinrtS3) SetHostUrl(v string)

SetHostUrl gets a reference to the given string and assigns it to the HostUrl field.

func (*EndpoinrtS3) SetObjectKeyPrefix

func (o *EndpoinrtS3) SetObjectKeyPrefix(v string)

SetObjectKeyPrefix gets a reference to the given string and assigns it to the ObjectKeyPrefix field.

func (*EndpoinrtS3) SetRegion

func (o *EndpoinrtS3) SetRegion(v string)

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

func (*EndpoinrtS3) SetSecretKey

func (o *EndpoinrtS3) SetSecretKey(v string)

SetSecretKey gets a reference to the given string and assigns it to the SecretKey field.

func (EndpoinrtS3) ToMap

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

type EndpointAWSKinesisFirehose

type EndpointAWSKinesisFirehose struct {
	EndpointType *string `json:"endpoint_type,omitempty"`
	AccessKey    *string `json:"access_key,omitempty"`
	StreamName   *string `json:"stream_name,omitempty"`
	Region       *string `json:"region,omitempty"`
	SecretKey    *string `json:"secret_key,omitempty"`
}

EndpointAWSKinesisFirehose struct for EndpointAWSKinesisFirehose

func NewEndpointAWSKinesisFirehose

func NewEndpointAWSKinesisFirehose() *EndpointAWSKinesisFirehose

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

func NewEndpointAWSKinesisFirehoseWithDefaults

func NewEndpointAWSKinesisFirehoseWithDefaults() *EndpointAWSKinesisFirehose

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

func (*EndpointAWSKinesisFirehose) GetAccessKey

func (o *EndpointAWSKinesisFirehose) GetAccessKey() string

GetAccessKey returns the AccessKey field value if set, zero value otherwise.

func (*EndpointAWSKinesisFirehose) GetAccessKeyOk

func (o *EndpointAWSKinesisFirehose) GetAccessKeyOk() (*string, bool)

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

func (*EndpointAWSKinesisFirehose) GetEndpointType

func (o *EndpointAWSKinesisFirehose) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointAWSKinesisFirehose) GetEndpointTypeOk

func (o *EndpointAWSKinesisFirehose) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointAWSKinesisFirehose) GetRegion

func (o *EndpointAWSKinesisFirehose) GetRegion() string

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

func (*EndpointAWSKinesisFirehose) GetRegionOk

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

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

func (*EndpointAWSKinesisFirehose) GetSecretKey

func (o *EndpointAWSKinesisFirehose) GetSecretKey() string

GetSecretKey returns the SecretKey field value if set, zero value otherwise.

func (*EndpointAWSKinesisFirehose) GetSecretKeyOk

func (o *EndpointAWSKinesisFirehose) GetSecretKeyOk() (*string, bool)

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

func (*EndpointAWSKinesisFirehose) GetStreamName

func (o *EndpointAWSKinesisFirehose) GetStreamName() string

GetStreamName returns the StreamName field value if set, zero value otherwise.

func (*EndpointAWSKinesisFirehose) GetStreamNameOk

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

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

func (*EndpointAWSKinesisFirehose) HasAccessKey

func (o *EndpointAWSKinesisFirehose) HasAccessKey() bool

HasAccessKey returns a boolean if a field has been set.

func (*EndpointAWSKinesisFirehose) HasEndpointType

func (o *EndpointAWSKinesisFirehose) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointAWSKinesisFirehose) HasRegion

func (o *EndpointAWSKinesisFirehose) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*EndpointAWSKinesisFirehose) HasSecretKey

func (o *EndpointAWSKinesisFirehose) HasSecretKey() bool

HasSecretKey returns a boolean if a field has been set.

func (*EndpointAWSKinesisFirehose) HasStreamName

func (o *EndpointAWSKinesisFirehose) HasStreamName() bool

HasStreamName returns a boolean if a field has been set.

func (EndpointAWSKinesisFirehose) MarshalJSON

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

func (*EndpointAWSKinesisFirehose) SetAccessKey

func (o *EndpointAWSKinesisFirehose) SetAccessKey(v string)

SetAccessKey gets a reference to the given string and assigns it to the AccessKey field.

func (*EndpointAWSKinesisFirehose) SetEndpointType

func (o *EndpointAWSKinesisFirehose) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointAWSKinesisFirehose) SetRegion

func (o *EndpointAWSKinesisFirehose) SetRegion(v string)

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

func (*EndpointAWSKinesisFirehose) SetSecretKey

func (o *EndpointAWSKinesisFirehose) SetSecretKey(v string)

SetSecretKey gets a reference to the given string and assigns it to the SecretKey field.

func (*EndpointAWSKinesisFirehose) SetStreamName

func (o *EndpointAWSKinesisFirehose) SetStreamName(v string)

SetStreamName gets a reference to the given string and assigns it to the StreamName field.

func (EndpointAWSKinesisFirehose) ToMap

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

type EndpointAzureBlobStorage

type EndpointAzureBlobStorage struct {
	EndpointType   *string `json:"endpoint_type,omitempty"`
	StorageAccount *string `json:"storage_account,omitempty"`
	ContainerName  *string `json:"container_name,omitempty"`
	BlobSasToken   *string `json:"blob_sas_token,omitempty"`
}

EndpointAzureBlobStorage struct for EndpointAzureBlobStorage

func NewEndpointAzureBlobStorage

func NewEndpointAzureBlobStorage() *EndpointAzureBlobStorage

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

func NewEndpointAzureBlobStorageWithDefaults

func NewEndpointAzureBlobStorageWithDefaults() *EndpointAzureBlobStorage

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

func (*EndpointAzureBlobStorage) GetBlobSasToken

func (o *EndpointAzureBlobStorage) GetBlobSasToken() string

GetBlobSasToken returns the BlobSasToken field value if set, zero value otherwise.

func (*EndpointAzureBlobStorage) GetBlobSasTokenOk

func (o *EndpointAzureBlobStorage) GetBlobSasTokenOk() (*string, bool)

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

func (*EndpointAzureBlobStorage) GetContainerName

func (o *EndpointAzureBlobStorage) GetContainerName() string

GetContainerName returns the ContainerName field value if set, zero value otherwise.

func (*EndpointAzureBlobStorage) GetContainerNameOk

func (o *EndpointAzureBlobStorage) GetContainerNameOk() (*string, bool)

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

func (*EndpointAzureBlobStorage) GetEndpointType

func (o *EndpointAzureBlobStorage) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointAzureBlobStorage) GetEndpointTypeOk

func (o *EndpointAzureBlobStorage) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointAzureBlobStorage) GetStorageAccount

func (o *EndpointAzureBlobStorage) GetStorageAccount() string

GetStorageAccount returns the StorageAccount field value if set, zero value otherwise.

func (*EndpointAzureBlobStorage) GetStorageAccountOk

func (o *EndpointAzureBlobStorage) GetStorageAccountOk() (*string, bool)

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

func (*EndpointAzureBlobStorage) HasBlobSasToken

func (o *EndpointAzureBlobStorage) HasBlobSasToken() bool

HasBlobSasToken returns a boolean if a field has been set.

func (*EndpointAzureBlobStorage) HasContainerName

func (o *EndpointAzureBlobStorage) HasContainerName() bool

HasContainerName returns a boolean if a field has been set.

func (*EndpointAzureBlobStorage) HasEndpointType

func (o *EndpointAzureBlobStorage) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointAzureBlobStorage) HasStorageAccount

func (o *EndpointAzureBlobStorage) HasStorageAccount() bool

HasStorageAccount returns a boolean if a field has been set.

func (EndpointAzureBlobStorage) MarshalJSON

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

func (*EndpointAzureBlobStorage) SetBlobSasToken

func (o *EndpointAzureBlobStorage) SetBlobSasToken(v string)

SetBlobSasToken gets a reference to the given string and assigns it to the BlobSasToken field.

func (*EndpointAzureBlobStorage) SetContainerName

func (o *EndpointAzureBlobStorage) SetContainerName(v string)

SetContainerName gets a reference to the given string and assigns it to the ContainerName field.

func (*EndpointAzureBlobStorage) SetEndpointType

func (o *EndpointAzureBlobStorage) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointAzureBlobStorage) SetStorageAccount

func (o *EndpointAzureBlobStorage) SetStorageAccount(v string)

SetStorageAccount gets a reference to the given string and assigns it to the StorageAccount field.

func (EndpointAzureBlobStorage) ToMap

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

type EndpointAzureMonitor

type EndpointAzureMonitor struct {
	EndpointType       *string `json:"endpoint_type,omitempty"`
	LogType            *string `json:"log_type,omitempty"`
	SharedKey          *string `json:"shared_key,omitempty"`
	TimeGeneratedField *string `json:"time_generated_field,omitempty"`
	WorkspaceId        *string `json:"workspace_id,omitempty"`
}

EndpointAzureMonitor struct for EndpointAzureMonitor

func NewEndpointAzureMonitor

func NewEndpointAzureMonitor() *EndpointAzureMonitor

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

func NewEndpointAzureMonitorWithDefaults

func NewEndpointAzureMonitorWithDefaults() *EndpointAzureMonitor

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

func (*EndpointAzureMonitor) GetEndpointType

func (o *EndpointAzureMonitor) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointAzureMonitor) GetEndpointTypeOk

func (o *EndpointAzureMonitor) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointAzureMonitor) GetLogType

func (o *EndpointAzureMonitor) GetLogType() string

GetLogType returns the LogType field value if set, zero value otherwise.

func (*EndpointAzureMonitor) GetLogTypeOk

func (o *EndpointAzureMonitor) GetLogTypeOk() (*string, bool)

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

func (*EndpointAzureMonitor) GetSharedKey

func (o *EndpointAzureMonitor) GetSharedKey() string

GetSharedKey returns the SharedKey field value if set, zero value otherwise.

func (*EndpointAzureMonitor) GetSharedKeyOk

func (o *EndpointAzureMonitor) GetSharedKeyOk() (*string, bool)

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

func (*EndpointAzureMonitor) GetTimeGeneratedField

func (o *EndpointAzureMonitor) GetTimeGeneratedField() string

GetTimeGeneratedField returns the TimeGeneratedField field value if set, zero value otherwise.

func (*EndpointAzureMonitor) GetTimeGeneratedFieldOk

func (o *EndpointAzureMonitor) GetTimeGeneratedFieldOk() (*string, bool)

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

func (*EndpointAzureMonitor) GetWorkspaceId

func (o *EndpointAzureMonitor) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*EndpointAzureMonitor) GetWorkspaceIdOk

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

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

func (*EndpointAzureMonitor) HasEndpointType

func (o *EndpointAzureMonitor) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointAzureMonitor) HasLogType

func (o *EndpointAzureMonitor) HasLogType() bool

HasLogType returns a boolean if a field has been set.

func (*EndpointAzureMonitor) HasSharedKey

func (o *EndpointAzureMonitor) HasSharedKey() bool

HasSharedKey returns a boolean if a field has been set.

func (*EndpointAzureMonitor) HasTimeGeneratedField

func (o *EndpointAzureMonitor) HasTimeGeneratedField() bool

HasTimeGeneratedField returns a boolean if a field has been set.

func (*EndpointAzureMonitor) HasWorkspaceId

func (o *EndpointAzureMonitor) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (EndpointAzureMonitor) MarshalJSON

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

func (*EndpointAzureMonitor) SetEndpointType

func (o *EndpointAzureMonitor) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointAzureMonitor) SetLogType

func (o *EndpointAzureMonitor) SetLogType(v string)

SetLogType gets a reference to the given string and assigns it to the LogType field.

func (*EndpointAzureMonitor) SetSharedKey

func (o *EndpointAzureMonitor) SetSharedKey(v string)

SetSharedKey gets a reference to the given string and assigns it to the SharedKey field.

func (*EndpointAzureMonitor) SetTimeGeneratedField

func (o *EndpointAzureMonitor) SetTimeGeneratedField(v string)

SetTimeGeneratedField gets a reference to the given string and assigns it to the TimeGeneratedField field.

func (*EndpointAzureMonitor) SetWorkspaceId

func (o *EndpointAzureMonitor) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

func (EndpointAzureMonitor) ToMap

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

type EndpointDatadog

type EndpointDatadog struct {
	EndpointType *string     `json:"endpoint_type,omitempty"`
	Url          *string     `json:"url,omitempty"`
	ApiKey       interface{} `json:"api_key,omitempty"`
}

EndpointDatadog struct for EndpointDatadog

func NewEndpointDatadog

func NewEndpointDatadog() *EndpointDatadog

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

func NewEndpointDatadogWithDefaults

func NewEndpointDatadogWithDefaults() *EndpointDatadog

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

func (*EndpointDatadog) GetApiKey

func (o *EndpointDatadog) GetApiKey() interface{}

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

func (*EndpointDatadog) GetApiKeyOk

func (o *EndpointDatadog) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*EndpointDatadog) GetEndpointType

func (o *EndpointDatadog) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointDatadog) GetEndpointTypeOk

func (o *EndpointDatadog) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointDatadog) GetUrl

func (o *EndpointDatadog) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointDatadog) GetUrlOk

func (o *EndpointDatadog) GetUrlOk() (*string, bool)

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

func (*EndpointDatadog) HasApiKey

func (o *EndpointDatadog) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*EndpointDatadog) HasEndpointType

func (o *EndpointDatadog) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointDatadog) HasUrl

func (o *EndpointDatadog) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EndpointDatadog) MarshalJSON

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

func (*EndpointDatadog) SetApiKey

func (o *EndpointDatadog) SetApiKey(v interface{})

SetApiKey gets a reference to the given interface{} and assigns it to the ApiKey field.

func (*EndpointDatadog) SetEndpointType

func (o *EndpointDatadog) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointDatadog) SetUrl

func (o *EndpointDatadog) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (EndpointDatadog) ToMap

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

type EndpointDefault

type EndpointDefault struct {
	EndpointType     *string             `json:"endpoint_type,omitempty"`
	Url              *string             `json:"url,omitempty"`
	LogLineSeparator *string             `json:"log_line_separator,omitempty"`
	PayloadFormat    *string             `json:"payload_format,omitempty"`
	MaxSize          *int32              `json:"max_size,omitempty"`
	Headers          []map[string]string `json:"headers,omitempty"`
}

EndpointDefault struct for EndpointDefault

func NewEndpointDefault

func NewEndpointDefault() *EndpointDefault

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

func NewEndpointDefaultWithDefaults

func NewEndpointDefaultWithDefaults() *EndpointDefault

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

func (*EndpointDefault) GetEndpointType

func (o *EndpointDefault) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointDefault) GetEndpointTypeOk

func (o *EndpointDefault) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointDefault) GetHeaders

func (o *EndpointDefault) GetHeaders() []map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*EndpointDefault) GetHeadersOk

func (o *EndpointDefault) GetHeadersOk() ([]map[string]string, 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 (*EndpointDefault) GetLogLineSeparator

func (o *EndpointDefault) GetLogLineSeparator() string

GetLogLineSeparator returns the LogLineSeparator field value if set, zero value otherwise.

func (*EndpointDefault) GetLogLineSeparatorOk

func (o *EndpointDefault) GetLogLineSeparatorOk() (*string, bool)

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

func (*EndpointDefault) GetMaxSize

func (o *EndpointDefault) GetMaxSize() int32

GetMaxSize returns the MaxSize field value if set, zero value otherwise.

func (*EndpointDefault) GetMaxSizeOk

func (o *EndpointDefault) GetMaxSizeOk() (*int32, bool)

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

func (*EndpointDefault) GetPayloadFormat

func (o *EndpointDefault) GetPayloadFormat() string

GetPayloadFormat returns the PayloadFormat field value if set, zero value otherwise.

func (*EndpointDefault) GetPayloadFormatOk

func (o *EndpointDefault) GetPayloadFormatOk() (*string, bool)

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

func (*EndpointDefault) GetUrl

func (o *EndpointDefault) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointDefault) GetUrlOk

func (o *EndpointDefault) GetUrlOk() (*string, bool)

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

func (*EndpointDefault) HasEndpointType

func (o *EndpointDefault) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointDefault) HasHeaders

func (o *EndpointDefault) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*EndpointDefault) HasLogLineSeparator

func (o *EndpointDefault) HasLogLineSeparator() bool

HasLogLineSeparator returns a boolean if a field has been set.

func (*EndpointDefault) HasMaxSize

func (o *EndpointDefault) HasMaxSize() bool

HasMaxSize returns a boolean if a field has been set.

func (*EndpointDefault) HasPayloadFormat

func (o *EndpointDefault) HasPayloadFormat() bool

HasPayloadFormat returns a boolean if a field has been set.

func (*EndpointDefault) HasUrl

func (o *EndpointDefault) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EndpointDefault) MarshalJSON

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

func (*EndpointDefault) SetEndpointType

func (o *EndpointDefault) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointDefault) SetHeaders

func (o *EndpointDefault) SetHeaders(v []map[string]string)

SetHeaders gets a reference to the given []map[string]string and assigns it to the Headers field.

func (*EndpointDefault) SetLogLineSeparator

func (o *EndpointDefault) SetLogLineSeparator(v string)

SetLogLineSeparator gets a reference to the given string and assigns it to the LogLineSeparator field.

func (*EndpointDefault) SetMaxSize

func (o *EndpointDefault) SetMaxSize(v int32)

SetMaxSize gets a reference to the given int32 and assigns it to the MaxSize field.

func (*EndpointDefault) SetPayloadFormat

func (o *EndpointDefault) SetPayloadFormat(v string)

SetPayloadFormat gets a reference to the given string and assigns it to the PayloadFormat field.

func (*EndpointDefault) SetUrl

func (o *EndpointDefault) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (EndpointDefault) ToMap

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

type EndpointElasticsearch

type EndpointElasticsearch struct {
	EndpointType *string     `json:"endpoint_type,omitempty"`
	Url          *string     `json:"url,omitempty"`
	ApiKey       interface{} `json:"api_key,omitempty"`
}

EndpointElasticsearch struct for EndpointElasticsearch

func NewEndpointElasticsearch

func NewEndpointElasticsearch() *EndpointElasticsearch

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

func NewEndpointElasticsearchWithDefaults

func NewEndpointElasticsearchWithDefaults() *EndpointElasticsearch

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

func (*EndpointElasticsearch) GetApiKey

func (o *EndpointElasticsearch) GetApiKey() interface{}

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

func (*EndpointElasticsearch) GetApiKeyOk

func (o *EndpointElasticsearch) GetApiKeyOk() (*interface{}, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*EndpointElasticsearch) GetEndpointType

func (o *EndpointElasticsearch) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointElasticsearch) GetEndpointTypeOk

func (o *EndpointElasticsearch) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointElasticsearch) GetUrl

func (o *EndpointElasticsearch) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointElasticsearch) GetUrlOk

func (o *EndpointElasticsearch) GetUrlOk() (*string, bool)

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

func (*EndpointElasticsearch) HasApiKey

func (o *EndpointElasticsearch) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*EndpointElasticsearch) HasEndpointType

func (o *EndpointElasticsearch) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointElasticsearch) HasUrl

func (o *EndpointElasticsearch) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EndpointElasticsearch) MarshalJSON

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

func (*EndpointElasticsearch) SetApiKey

func (o *EndpointElasticsearch) SetApiKey(v interface{})

SetApiKey gets a reference to the given interface{} and assigns it to the ApiKey field.

func (*EndpointElasticsearch) SetEndpointType

func (o *EndpointElasticsearch) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointElasticsearch) SetUrl

func (o *EndpointElasticsearch) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (EndpointElasticsearch) ToMap

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

type EndpointGoogleBigQuery

type EndpointGoogleBigQuery struct {
	EndpointType      *string                                  `json:"endpoint_type,omitempty"`
	DatasetId         *string                                  `json:"dataset_id,omitempty"`
	ProjectId         *string                                  `json:"project_id,omitempty"`
	TableId           *string                                  `json:"table_id,omitempty"`
	ServiceAccountKey *EndpointGoogleBigQueryServiceAccountKey `json:"service_account_key,omitempty"`
}

EndpointGoogleBigQuery struct for EndpointGoogleBigQuery

func NewEndpointGoogleBigQuery

func NewEndpointGoogleBigQuery() *EndpointGoogleBigQuery

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

func NewEndpointGoogleBigQueryWithDefaults

func NewEndpointGoogleBigQueryWithDefaults() *EndpointGoogleBigQuery

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

func (*EndpointGoogleBigQuery) GetDatasetId

func (o *EndpointGoogleBigQuery) GetDatasetId() string

GetDatasetId returns the DatasetId field value if set, zero value otherwise.

func (*EndpointGoogleBigQuery) GetDatasetIdOk

func (o *EndpointGoogleBigQuery) GetDatasetIdOk() (*string, bool)

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

func (*EndpointGoogleBigQuery) GetEndpointType

func (o *EndpointGoogleBigQuery) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointGoogleBigQuery) GetEndpointTypeOk

func (o *EndpointGoogleBigQuery) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointGoogleBigQuery) GetProjectId

func (o *EndpointGoogleBigQuery) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*EndpointGoogleBigQuery) GetProjectIdOk

func (o *EndpointGoogleBigQuery) GetProjectIdOk() (*string, bool)

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

func (*EndpointGoogleBigQuery) GetServiceAccountKey

GetServiceAccountKey returns the ServiceAccountKey field value if set, zero value otherwise.

func (*EndpointGoogleBigQuery) GetServiceAccountKeyOk

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

func (*EndpointGoogleBigQuery) GetTableId

func (o *EndpointGoogleBigQuery) GetTableId() string

GetTableId returns the TableId field value if set, zero value otherwise.

func (*EndpointGoogleBigQuery) GetTableIdOk

func (o *EndpointGoogleBigQuery) GetTableIdOk() (*string, bool)

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

func (*EndpointGoogleBigQuery) HasDatasetId

func (o *EndpointGoogleBigQuery) HasDatasetId() bool

HasDatasetId returns a boolean if a field has been set.

func (*EndpointGoogleBigQuery) HasEndpointType

func (o *EndpointGoogleBigQuery) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointGoogleBigQuery) HasProjectId

func (o *EndpointGoogleBigQuery) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*EndpointGoogleBigQuery) HasServiceAccountKey

func (o *EndpointGoogleBigQuery) HasServiceAccountKey() bool

HasServiceAccountKey returns a boolean if a field has been set.

func (*EndpointGoogleBigQuery) HasTableId

func (o *EndpointGoogleBigQuery) HasTableId() bool

HasTableId returns a boolean if a field has been set.

func (EndpointGoogleBigQuery) MarshalJSON

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

func (*EndpointGoogleBigQuery) SetDatasetId

func (o *EndpointGoogleBigQuery) SetDatasetId(v string)

SetDatasetId gets a reference to the given string and assigns it to the DatasetId field.

func (*EndpointGoogleBigQuery) SetEndpointType

func (o *EndpointGoogleBigQuery) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointGoogleBigQuery) SetProjectId

func (o *EndpointGoogleBigQuery) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*EndpointGoogleBigQuery) SetServiceAccountKey

SetServiceAccountKey gets a reference to the given EndpointGoogleBigQueryServiceAccountKey and assigns it to the ServiceAccountKey field.

func (*EndpointGoogleBigQuery) SetTableId

func (o *EndpointGoogleBigQuery) SetTableId(v string)

SetTableId gets a reference to the given string and assigns it to the TableId field.

func (EndpointGoogleBigQuery) ToMap

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

type EndpointGoogleBigQueryServiceAccountKey

type EndpointGoogleBigQueryServiceAccountKey struct {
	ServiceAccountKey *string `json:"service_account_key,omitempty"`
}

EndpointGoogleBigQueryServiceAccountKey struct for EndpointGoogleBigQueryServiceAccountKey

func NewEndpointGoogleBigQueryServiceAccountKey

func NewEndpointGoogleBigQueryServiceAccountKey() *EndpointGoogleBigQueryServiceAccountKey

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

func NewEndpointGoogleBigQueryServiceAccountKeyWithDefaults

func NewEndpointGoogleBigQueryServiceAccountKeyWithDefaults() *EndpointGoogleBigQueryServiceAccountKey

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

func (*EndpointGoogleBigQueryServiceAccountKey) GetServiceAccountKey

func (o *EndpointGoogleBigQueryServiceAccountKey) GetServiceAccountKey() string

GetServiceAccountKey returns the ServiceAccountKey field value if set, zero value otherwise.

func (*EndpointGoogleBigQueryServiceAccountKey) GetServiceAccountKeyOk

func (o *EndpointGoogleBigQueryServiceAccountKey) GetServiceAccountKeyOk() (*string, bool)

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

func (*EndpointGoogleBigQueryServiceAccountKey) HasServiceAccountKey

func (o *EndpointGoogleBigQueryServiceAccountKey) HasServiceAccountKey() bool

HasServiceAccountKey returns a boolean if a field has been set.

func (EndpointGoogleBigQueryServiceAccountKey) MarshalJSON

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

func (*EndpointGoogleBigQueryServiceAccountKey) SetServiceAccountKey

func (o *EndpointGoogleBigQueryServiceAccountKey) SetServiceAccountKey(v string)

SetServiceAccountKey gets a reference to the given string and assigns it to the ServiceAccountKey field.

func (EndpointGoogleBigQueryServiceAccountKey) ToMap

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

type EndpointIBMQRadar

type EndpointIBMQRadar struct {
	EndpointType *string `json:"endpoint_type,omitempty"`
	Url          *string `json:"url,omitempty"`
}

EndpointIBMQRadar struct for EndpointIBMQRadar

func NewEndpointIBMQRadar

func NewEndpointIBMQRadar() *EndpointIBMQRadar

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

func NewEndpointIBMQRadarWithDefaults

func NewEndpointIBMQRadarWithDefaults() *EndpointIBMQRadar

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

func (*EndpointIBMQRadar) GetEndpointType

func (o *EndpointIBMQRadar) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointIBMQRadar) GetEndpointTypeOk

func (o *EndpointIBMQRadar) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointIBMQRadar) GetUrl

func (o *EndpointIBMQRadar) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointIBMQRadar) GetUrlOk

func (o *EndpointIBMQRadar) GetUrlOk() (*string, bool)

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

func (*EndpointIBMQRadar) HasEndpointType

func (o *EndpointIBMQRadar) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointIBMQRadar) HasUrl

func (o *EndpointIBMQRadar) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EndpointIBMQRadar) MarshalJSON

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

func (*EndpointIBMQRadar) SetEndpointType

func (o *EndpointIBMQRadar) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointIBMQRadar) SetUrl

func (o *EndpointIBMQRadar) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (EndpointIBMQRadar) ToMap

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

type EndpointKafka

type EndpointKafka struct {
	EndpointType     *string `json:"endpoint_type,omitempty"`
	KafkaTopic       *string `json:"kafka_topic,omitempty"`
	BootstrapServers *string `json:"bootstrap_servers,omitempty"`
	UseTls           *bool   `json:"use_tls,omitempty"`
}

EndpointKafka struct for EndpointKafka

func NewEndpointKafka

func NewEndpointKafka() *EndpointKafka

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

func NewEndpointKafkaWithDefaults

func NewEndpointKafkaWithDefaults() *EndpointKafka

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

func (*EndpointKafka) GetBootstrapServers

func (o *EndpointKafka) GetBootstrapServers() string

GetBootstrapServers returns the BootstrapServers field value if set, zero value otherwise.

func (*EndpointKafka) GetBootstrapServersOk

func (o *EndpointKafka) GetBootstrapServersOk() (*string, bool)

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

func (*EndpointKafka) GetEndpointType

func (o *EndpointKafka) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointKafka) GetEndpointTypeOk

func (o *EndpointKafka) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointKafka) GetKafkaTopic

func (o *EndpointKafka) GetKafkaTopic() string

GetKafkaTopic returns the KafkaTopic field value if set, zero value otherwise.

func (*EndpointKafka) GetKafkaTopicOk

func (o *EndpointKafka) GetKafkaTopicOk() (*string, bool)

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

func (*EndpointKafka) GetUseTls

func (o *EndpointKafka) GetUseTls() bool

GetUseTls returns the UseTls field value if set, zero value otherwise.

func (*EndpointKafka) GetUseTlsOk

func (o *EndpointKafka) GetUseTlsOk() (*bool, bool)

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

func (*EndpointKafka) HasBootstrapServers

func (o *EndpointKafka) HasBootstrapServers() bool

HasBootstrapServers returns a boolean if a field has been set.

func (*EndpointKafka) HasEndpointType

func (o *EndpointKafka) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointKafka) HasKafkaTopic

func (o *EndpointKafka) HasKafkaTopic() bool

HasKafkaTopic returns a boolean if a field has been set.

func (*EndpointKafka) HasUseTls

func (o *EndpointKafka) HasUseTls() bool

HasUseTls returns a boolean if a field has been set.

func (EndpointKafka) MarshalJSON

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

func (*EndpointKafka) SetBootstrapServers

func (o *EndpointKafka) SetBootstrapServers(v string)

SetBootstrapServers gets a reference to the given string and assigns it to the BootstrapServers field.

func (*EndpointKafka) SetEndpointType

func (o *EndpointKafka) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointKafka) SetKafkaTopic

func (o *EndpointKafka) SetKafkaTopic(v string)

SetKafkaTopic gets a reference to the given string and assigns it to the KafkaTopic field.

func (*EndpointKafka) SetUseTls

func (o *EndpointKafka) SetUseTls(v bool)

SetUseTls gets a reference to the given bool and assigns it to the UseTls field.

func (EndpointKafka) ToMap

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

type EndpointSplunk

type EndpointSplunk struct {
	EndpointType *string `json:"endpoint_type,omitempty"`
	Url          *string `json:"url,omitempty"`
	ApiKey       *string `json:"api_key,omitempty"`
}

EndpointSplunk struct for EndpointSplunk

func NewEndpointSplunk

func NewEndpointSplunk() *EndpointSplunk

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

func NewEndpointSplunkWithDefaults

func NewEndpointSplunkWithDefaults() *EndpointSplunk

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

func (*EndpointSplunk) GetApiKey

func (o *EndpointSplunk) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*EndpointSplunk) GetApiKeyOk

func (o *EndpointSplunk) GetApiKeyOk() (*string, bool)

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

func (*EndpointSplunk) GetEndpointType

func (o *EndpointSplunk) GetEndpointType() string

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*EndpointSplunk) GetEndpointTypeOk

func (o *EndpointSplunk) GetEndpointTypeOk() (*string, bool)

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

func (*EndpointSplunk) GetUrl

func (o *EndpointSplunk) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*EndpointSplunk) GetUrlOk

func (o *EndpointSplunk) GetUrlOk() (*string, bool)

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

func (*EndpointSplunk) HasApiKey

func (o *EndpointSplunk) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*EndpointSplunk) HasEndpointType

func (o *EndpointSplunk) HasEndpointType() bool

HasEndpointType returns a boolean if a field has been set.

func (*EndpointSplunk) HasUrl

func (o *EndpointSplunk) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (EndpointSplunk) MarshalJSON

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

func (*EndpointSplunk) SetApiKey

func (o *EndpointSplunk) SetApiKey(v string)

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*EndpointSplunk) SetEndpointType

func (o *EndpointSplunk) SetEndpointType(v string)

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*EndpointSplunk) SetUrl

func (o *EndpointSplunk) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (EndpointSplunk) ToMap

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

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 MappedNullable

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

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCreateCustomDataStreamingResponse

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

func (NullableCreateCustomDataStreamingResponse) Get

func (NullableCreateCustomDataStreamingResponse) IsSet

func (NullableCreateCustomDataStreamingResponse) MarshalJSON

func (*NullableCreateCustomDataStreamingResponse) Set

func (*NullableCreateCustomDataStreamingResponse) UnmarshalJSON

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

func (*NullableCreateCustomDataStreamingResponse) Unset

type NullableCreateDataStreamingResponse

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

func (NullableCreateDataStreamingResponse) Get

func (NullableCreateDataStreamingResponse) IsSet

func (NullableCreateDataStreamingResponse) MarshalJSON

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

func (*NullableCreateDataStreamingResponse) Set

func (*NullableCreateDataStreamingResponse) UnmarshalJSON

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

func (*NullableCreateDataStreamingResponse) Unset

type NullableCreateNewDataStreaming201Response

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

func (NullableCreateNewDataStreaming201Response) Get

func (NullableCreateNewDataStreaming201Response) IsSet

func (NullableCreateNewDataStreaming201Response) MarshalJSON

func (*NullableCreateNewDataStreaming201Response) Set

func (*NullableCreateNewDataStreaming201Response) UnmarshalJSON

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

func (*NullableCreateNewDataStreaming201Response) Unset

type NullableCreateNewDataStreamingRequest

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

func (NullableCreateNewDataStreamingRequest) Get

func (NullableCreateNewDataStreamingRequest) IsSet

func (NullableCreateNewDataStreamingRequest) MarshalJSON

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

func (*NullableCreateNewDataStreamingRequest) Set

func (*NullableCreateNewDataStreamingRequest) UnmarshalJSON

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

func (*NullableCreateNewDataStreamingRequest) Unset

type NullableCustomDataStreamingPostBody

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

func (NullableCustomDataStreamingPostBody) Get

func (NullableCustomDataStreamingPostBody) IsSet

func (NullableCustomDataStreamingPostBody) MarshalJSON

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

func (*NullableCustomDataStreamingPostBody) Set

func (*NullableCustomDataStreamingPostBody) UnmarshalJSON

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

func (*NullableCustomDataStreamingPostBody) Unset

type NullableDataStreamingEndpointTypeDatadogDTS

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

func (NullableDataStreamingEndpointTypeDatadogDTS) Get

func (NullableDataStreamingEndpointTypeDatadogDTS) IsSet

func (NullableDataStreamingEndpointTypeDatadogDTS) MarshalJSON

func (*NullableDataStreamingEndpointTypeDatadogDTS) Set

func (*NullableDataStreamingEndpointTypeDatadogDTS) UnmarshalJSON

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

func (*NullableDataStreamingEndpointTypeDatadogDTS) Unset

type NullableDataStreamingEndpointTypeKafka

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

func (NullableDataStreamingEndpointTypeKafka) Get

func (NullableDataStreamingEndpointTypeKafka) IsSet

func (NullableDataStreamingEndpointTypeKafka) MarshalJSON

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

func (*NullableDataStreamingEndpointTypeKafka) Set

func (*NullableDataStreamingEndpointTypeKafka) UnmarshalJSON

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

func (*NullableDataStreamingEndpointTypeKafka) Unset

type NullableDataStreamingEndpointTypeStandard

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

func (NullableDataStreamingEndpointTypeStandard) Get

func (NullableDataStreamingEndpointTypeStandard) IsSet

func (NullableDataStreamingEndpointTypeStandard) MarshalJSON

func (*NullableDataStreamingEndpointTypeStandard) Set

func (*NullableDataStreamingEndpointTypeStandard) UnmarshalJSON

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

func (*NullableDataStreamingEndpointTypeStandard) Unset

type NullableDataStreamingEndpointTypeStandardHeadersExample

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

func (NullableDataStreamingEndpointTypeStandardHeadersExample) Get

func (NullableDataStreamingEndpointTypeStandardHeadersExample) IsSet

func (NullableDataStreamingEndpointTypeStandardHeadersExample) MarshalJSON

func (*NullableDataStreamingEndpointTypeStandardHeadersExample) Set

func (*NullableDataStreamingEndpointTypeStandardHeadersExample) UnmarshalJSON

func (*NullableDataStreamingEndpointTypeStandardHeadersExample) Unset

type NullableDataStreamingPostBody

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

func (NullableDataStreamingPostBody) Get

func (NullableDataStreamingPostBody) IsSet

func (NullableDataStreamingPostBody) MarshalJSON

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

func (*NullableDataStreamingPostBody) Set

func (*NullableDataStreamingPostBody) UnmarshalJSON

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

func (*NullableDataStreamingPostBody) Unset

func (v *NullableDataStreamingPostBody) Unset()

type NullableDataStreamingResponseGetResultTypeCustom

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

func (NullableDataStreamingResponseGetResultTypeCustom) Get

func (NullableDataStreamingResponseGetResultTypeCustom) IsSet

func (NullableDataStreamingResponseGetResultTypeCustom) MarshalJSON

func (*NullableDataStreamingResponseGetResultTypeCustom) Set

func (*NullableDataStreamingResponseGetResultTypeCustom) UnmarshalJSON

func (*NullableDataStreamingResponseGetResultTypeCustom) Unset

type NullableDataStreamingResponseGetResultTypeDatadogDTS

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

func (NullableDataStreamingResponseGetResultTypeDatadogDTS) Get

func (NullableDataStreamingResponseGetResultTypeDatadogDTS) IsSet

func (NullableDataStreamingResponseGetResultTypeDatadogDTS) MarshalJSON

func (*NullableDataStreamingResponseGetResultTypeDatadogDTS) Set

func (*NullableDataStreamingResponseGetResultTypeDatadogDTS) UnmarshalJSON

func (*NullableDataStreamingResponseGetResultTypeDatadogDTS) Unset

type NullableDataStreamingResponseGetResultTypeKafka

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

func (NullableDataStreamingResponseGetResultTypeKafka) Get

func (NullableDataStreamingResponseGetResultTypeKafka) IsSet

func (NullableDataStreamingResponseGetResultTypeKafka) MarshalJSON

func (*NullableDataStreamingResponseGetResultTypeKafka) Set

func (*NullableDataStreamingResponseGetResultTypeKafka) UnmarshalJSON

func (*NullableDataStreamingResponseGetResultTypeKafka) Unset

type NullableDataStreamingResponseGetResultTypeStandard

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

func (NullableDataStreamingResponseGetResultTypeStandard) Get

func (NullableDataStreamingResponseGetResultTypeStandard) IsSet

func (NullableDataStreamingResponseGetResultTypeStandard) MarshalJSON

func (*NullableDataStreamingResponseGetResultTypeStandard) Set

func (*NullableDataStreamingResponseGetResultTypeStandard) UnmarshalJSON

func (*NullableDataStreamingResponseGetResultTypeStandard) Unset

type NullableDataStreamingResponseWithResults

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

func (NullableDataStreamingResponseWithResults) Get

func (NullableDataStreamingResponseWithResults) IsSet

func (NullableDataStreamingResponseWithResults) MarshalJSON

func (*NullableDataStreamingResponseWithResults) Set

func (*NullableDataStreamingResponseWithResults) UnmarshalJSON

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

func (*NullableDataStreamingResponseWithResults) Unset

type NullableDataStreamingResponseWithResultsResultsInner

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

func (NullableDataStreamingResponseWithResultsResultsInner) Get

func (NullableDataStreamingResponseWithResultsResultsInner) IsSet

func (NullableDataStreamingResponseWithResultsResultsInner) MarshalJSON

func (*NullableDataStreamingResponseWithResultsResultsInner) Set

func (*NullableDataStreamingResponseWithResultsResultsInner) UnmarshalJSON

func (*NullableDataStreamingResponseWithResultsResultsInner) Unset

type NullableDataStreamingsById

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

func NewNullableDataStreamingsById

func NewNullableDataStreamingsById(val *DataStreamingsById) *NullableDataStreamingsById

func (NullableDataStreamingsById) Get

func (NullableDataStreamingsById) IsSet

func (v NullableDataStreamingsById) IsSet() bool

func (NullableDataStreamingsById) MarshalJSON

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

func (*NullableDataStreamingsById) Set

func (*NullableDataStreamingsById) UnmarshalJSON

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

func (*NullableDataStreamingsById) Unset

func (v *NullableDataStreamingsById) Unset()

type NullableDataStreamingsDomainResponse

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

func (NullableDataStreamingsDomainResponse) Get

func (NullableDataStreamingsDomainResponse) IsSet

func (NullableDataStreamingsDomainResponse) MarshalJSON

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

func (*NullableDataStreamingsDomainResponse) Set

func (*NullableDataStreamingsDomainResponse) UnmarshalJSON

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

func (*NullableDataStreamingsDomainResponse) Unset

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

func (NullableDataStreamingsDomainResponseLinks) Get

func (NullableDataStreamingsDomainResponseLinks) IsSet

func (NullableDataStreamingsDomainResponseLinks) MarshalJSON

func (*NullableDataStreamingsDomainResponseLinks) Set

func (*NullableDataStreamingsDomainResponseLinks) UnmarshalJSON

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

func (*NullableDataStreamingsDomainResponseLinks) Unset

type NullableDataStreamingsDomainResult

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

func (NullableDataStreamingsDomainResult) Get

func (NullableDataStreamingsDomainResult) IsSet

func (NullableDataStreamingsDomainResult) MarshalJSON

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

func (*NullableDataStreamingsDomainResult) Set

func (*NullableDataStreamingsDomainResult) UnmarshalJSON

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

func (*NullableDataStreamingsDomainResult) Unset

type NullableEndpoinrtS3

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

func NewNullableEndpoinrtS3

func NewNullableEndpoinrtS3(val *EndpoinrtS3) *NullableEndpoinrtS3

func (NullableEndpoinrtS3) Get

func (NullableEndpoinrtS3) IsSet

func (v NullableEndpoinrtS3) IsSet() bool

func (NullableEndpoinrtS3) MarshalJSON

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

func (*NullableEndpoinrtS3) Set

func (v *NullableEndpoinrtS3) Set(val *EndpoinrtS3)

func (*NullableEndpoinrtS3) UnmarshalJSON

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

func (*NullableEndpoinrtS3) Unset

func (v *NullableEndpoinrtS3) Unset()

type NullableEndpointAWSKinesisFirehose

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

func (NullableEndpointAWSKinesisFirehose) Get

func (NullableEndpointAWSKinesisFirehose) IsSet

func (NullableEndpointAWSKinesisFirehose) MarshalJSON

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

func (*NullableEndpointAWSKinesisFirehose) Set

func (*NullableEndpointAWSKinesisFirehose) UnmarshalJSON

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

func (*NullableEndpointAWSKinesisFirehose) Unset

type NullableEndpointAzureBlobStorage

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

func (NullableEndpointAzureBlobStorage) Get

func (NullableEndpointAzureBlobStorage) IsSet

func (NullableEndpointAzureBlobStorage) MarshalJSON

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

func (*NullableEndpointAzureBlobStorage) Set

func (*NullableEndpointAzureBlobStorage) UnmarshalJSON

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

func (*NullableEndpointAzureBlobStorage) Unset

type NullableEndpointAzureMonitor

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

func NewNullableEndpointAzureMonitor

func NewNullableEndpointAzureMonitor(val *EndpointAzureMonitor) *NullableEndpointAzureMonitor

func (NullableEndpointAzureMonitor) Get

func (NullableEndpointAzureMonitor) IsSet

func (NullableEndpointAzureMonitor) MarshalJSON

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

func (*NullableEndpointAzureMonitor) Set

func (*NullableEndpointAzureMonitor) UnmarshalJSON

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

func (*NullableEndpointAzureMonitor) Unset

func (v *NullableEndpointAzureMonitor) Unset()

type NullableEndpointDatadog

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

func NewNullableEndpointDatadog

func NewNullableEndpointDatadog(val *EndpointDatadog) *NullableEndpointDatadog

func (NullableEndpointDatadog) Get

func (NullableEndpointDatadog) IsSet

func (v NullableEndpointDatadog) IsSet() bool

func (NullableEndpointDatadog) MarshalJSON

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

func (*NullableEndpointDatadog) Set

func (*NullableEndpointDatadog) UnmarshalJSON

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

func (*NullableEndpointDatadog) Unset

func (v *NullableEndpointDatadog) Unset()

type NullableEndpointDefault

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

func NewNullableEndpointDefault

func NewNullableEndpointDefault(val *EndpointDefault) *NullableEndpointDefault

func (NullableEndpointDefault) Get

func (NullableEndpointDefault) IsSet

func (v NullableEndpointDefault) IsSet() bool

func (NullableEndpointDefault) MarshalJSON

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

func (*NullableEndpointDefault) Set

func (*NullableEndpointDefault) UnmarshalJSON

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

func (*NullableEndpointDefault) Unset

func (v *NullableEndpointDefault) Unset()

type NullableEndpointElasticsearch

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

func (NullableEndpointElasticsearch) Get

func (NullableEndpointElasticsearch) IsSet

func (NullableEndpointElasticsearch) MarshalJSON

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

func (*NullableEndpointElasticsearch) Set

func (*NullableEndpointElasticsearch) UnmarshalJSON

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

func (*NullableEndpointElasticsearch) Unset

func (v *NullableEndpointElasticsearch) Unset()

type NullableEndpointGoogleBigQuery

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

func (NullableEndpointGoogleBigQuery) Get

func (NullableEndpointGoogleBigQuery) IsSet

func (NullableEndpointGoogleBigQuery) MarshalJSON

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

func (*NullableEndpointGoogleBigQuery) Set

func (*NullableEndpointGoogleBigQuery) UnmarshalJSON

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

func (*NullableEndpointGoogleBigQuery) Unset

func (v *NullableEndpointGoogleBigQuery) Unset()

type NullableEndpointGoogleBigQueryServiceAccountKey

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

func (NullableEndpointGoogleBigQueryServiceAccountKey) Get

func (NullableEndpointGoogleBigQueryServiceAccountKey) IsSet

func (NullableEndpointGoogleBigQueryServiceAccountKey) MarshalJSON

func (*NullableEndpointGoogleBigQueryServiceAccountKey) Set

func (*NullableEndpointGoogleBigQueryServiceAccountKey) UnmarshalJSON

func (*NullableEndpointGoogleBigQueryServiceAccountKey) Unset

type NullableEndpointIBMQRadar

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

func NewNullableEndpointIBMQRadar

func NewNullableEndpointIBMQRadar(val *EndpointIBMQRadar) *NullableEndpointIBMQRadar

func (NullableEndpointIBMQRadar) Get

func (NullableEndpointIBMQRadar) IsSet

func (v NullableEndpointIBMQRadar) IsSet() bool

func (NullableEndpointIBMQRadar) MarshalJSON

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

func (*NullableEndpointIBMQRadar) Set

func (*NullableEndpointIBMQRadar) UnmarshalJSON

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

func (*NullableEndpointIBMQRadar) Unset

func (v *NullableEndpointIBMQRadar) Unset()

type NullableEndpointKafka

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

func NewNullableEndpointKafka

func NewNullableEndpointKafka(val *EndpointKafka) *NullableEndpointKafka

func (NullableEndpointKafka) Get

func (NullableEndpointKafka) IsSet

func (v NullableEndpointKafka) IsSet() bool

func (NullableEndpointKafka) MarshalJSON

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

func (*NullableEndpointKafka) Set

func (v *NullableEndpointKafka) Set(val *EndpointKafka)

func (*NullableEndpointKafka) UnmarshalJSON

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

func (*NullableEndpointKafka) Unset

func (v *NullableEndpointKafka) Unset()

type NullableEndpointSplunk

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

func NewNullableEndpointSplunk

func NewNullableEndpointSplunk(val *EndpointSplunk) *NullableEndpointSplunk

func (NullableEndpointSplunk) Get

func (NullableEndpointSplunk) IsSet

func (v NullableEndpointSplunk) IsSet() bool

func (NullableEndpointSplunk) MarshalJSON

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

func (*NullableEndpointSplunk) Set

func (*NullableEndpointSplunk) UnmarshalJSON

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

func (*NullableEndpointSplunk) Unset

func (v *NullableEndpointSplunk) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullablePostCustomDataStreamingResponse

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

func (NullablePostCustomDataStreamingResponse) Get

func (NullablePostCustomDataStreamingResponse) IsSet

func (NullablePostCustomDataStreamingResponse) MarshalJSON

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

func (*NullablePostCustomDataStreamingResponse) Set

func (*NullablePostCustomDataStreamingResponse) UnmarshalJSON

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

func (*NullablePostCustomDataStreamingResponse) Unset

type NullablePostDataStreamingResponse

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

func (NullablePostDataStreamingResponse) Get

func (NullablePostDataStreamingResponse) IsSet

func (NullablePostDataStreamingResponse) MarshalJSON

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

func (*NullablePostDataStreamingResponse) Set

func (*NullablePostDataStreamingResponse) UnmarshalJSON

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

func (*NullablePostDataStreamingResponse) Unset

type NullablePostDataStreamingResponseEndpointInner

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

func (NullablePostDataStreamingResponseEndpointInner) Get

func (NullablePostDataStreamingResponseEndpointInner) IsSet

func (NullablePostDataStreamingResponseEndpointInner) MarshalJSON

func (*NullablePostDataStreamingResponseEndpointInner) Set

func (*NullablePostDataStreamingResponseEndpointInner) UnmarshalJSON

func (*NullablePostDataStreamingResponseEndpointInner) Unset

type NullableStandardDataStreamingPostBody

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

func (NullableStandardDataStreamingPostBody) Get

func (NullableStandardDataStreamingPostBody) IsSet

func (NullableStandardDataStreamingPostBody) MarshalJSON

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

func (*NullableStandardDataStreamingPostBody) Set

func (*NullableStandardDataStreamingPostBody) UnmarshalJSON

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

func (*NullableStandardDataStreamingPostBody) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTemplate

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

func NewNullableTemplate

func NewNullableTemplate(val *Template) *NullableTemplate

func (NullableTemplate) Get

func (v NullableTemplate) Get() *Template

func (NullableTemplate) IsSet

func (v NullableTemplate) IsSet() bool

func (NullableTemplate) MarshalJSON

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

func (*NullableTemplate) Set

func (v *NullableTemplate) Set(val *Template)

func (*NullableTemplate) UnmarshalJSON

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

func (*NullableTemplate) Unset

func (v *NullableTemplate) Unset()

type NullableTemplateResultById

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

func NewNullableTemplateResultById

func NewNullableTemplateResultById(val *TemplateResultById) *NullableTemplateResultById

func (NullableTemplateResultById) Get

func (NullableTemplateResultById) IsSet

func (v NullableTemplateResultById) IsSet() bool

func (NullableTemplateResultById) MarshalJSON

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

func (*NullableTemplateResultById) Set

func (*NullableTemplateResultById) UnmarshalJSON

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

func (*NullableTemplateResultById) Unset

func (v *NullableTemplateResultById) Unset()

type NullableTemplateResults

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

func NewNullableTemplateResults

func NewNullableTemplateResults(val *TemplateResults) *NullableTemplateResults

func (NullableTemplateResults) Get

func (NullableTemplateResults) IsSet

func (v NullableTemplateResults) IsSet() bool

func (NullableTemplateResults) MarshalJSON

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

func (*NullableTemplateResults) Set

func (*NullableTemplateResults) UnmarshalJSON

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

func (*NullableTemplateResults) Unset

func (v *NullableTemplateResults) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type PostCustomDataStreamingResponse

type PostCustomDataStreamingResponse struct {
	Id   *int32  `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
	// Options:  * `http` - Edge Applications  * `waf` - WAF Events  * `cells_console` - Edge Functions  * `rtm_activity` - Activity History
	DataSource *string `json:"data_source,omitempty"`
	// Note:  * Add all variables and values that will be used to stream according to the data source you choose to use.
	TemplateModel *string `json:"template_model,omitempty"`
	Active        *bool   `json:"active,omitempty"`
	Endpoint      *string `json:"endpoint,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	AllDomains NullableBool `json:"all_domains,omitempty"`
}

PostCustomDataStreamingResponse struct for PostCustomDataStreamingResponse

func NewPostCustomDataStreamingResponse

func NewPostCustomDataStreamingResponse() *PostCustomDataStreamingResponse

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

func NewPostCustomDataStreamingResponseWithDefaults

func NewPostCustomDataStreamingResponseWithDefaults() *PostCustomDataStreamingResponse

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

func (*PostCustomDataStreamingResponse) GetActive

func (o *PostCustomDataStreamingResponse) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*PostCustomDataStreamingResponse) GetActiveOk

func (o *PostCustomDataStreamingResponse) GetActiveOk() (*bool, bool)

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

func (*PostCustomDataStreamingResponse) GetAllDomains

func (o *PostCustomDataStreamingResponse) GetAllDomains() bool

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

func (*PostCustomDataStreamingResponse) GetAllDomainsOk

func (o *PostCustomDataStreamingResponse) GetAllDomainsOk() (*bool, bool)

GetAllDomainsOk returns a tuple with the AllDomains 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 (*PostCustomDataStreamingResponse) GetDataSource

func (o *PostCustomDataStreamingResponse) GetDataSource() string

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*PostCustomDataStreamingResponse) GetDataSourceOk

func (o *PostCustomDataStreamingResponse) GetDataSourceOk() (*string, bool)

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

func (*PostCustomDataStreamingResponse) GetEndpoint

func (o *PostCustomDataStreamingResponse) GetEndpoint() string

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*PostCustomDataStreamingResponse) GetEndpointOk

func (o *PostCustomDataStreamingResponse) GetEndpointOk() (*string, bool)

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

func (*PostCustomDataStreamingResponse) GetId

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

func (*PostCustomDataStreamingResponse) GetIdOk

func (o *PostCustomDataStreamingResponse) GetIdOk() (*int32, bool)

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

func (*PostCustomDataStreamingResponse) GetName

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

func (*PostCustomDataStreamingResponse) GetNameOk

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

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

func (*PostCustomDataStreamingResponse) GetTemplateModel

func (o *PostCustomDataStreamingResponse) GetTemplateModel() string

GetTemplateModel returns the TemplateModel field value if set, zero value otherwise.

func (*PostCustomDataStreamingResponse) GetTemplateModelOk

func (o *PostCustomDataStreamingResponse) GetTemplateModelOk() (*string, bool)

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

func (*PostCustomDataStreamingResponse) HasActive

func (o *PostCustomDataStreamingResponse) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasAllDomains

func (o *PostCustomDataStreamingResponse) HasAllDomains() bool

HasAllDomains returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasDataSource

func (o *PostCustomDataStreamingResponse) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasEndpoint

func (o *PostCustomDataStreamingResponse) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasId

HasId returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasName

HasName returns a boolean if a field has been set.

func (*PostCustomDataStreamingResponse) HasTemplateModel

func (o *PostCustomDataStreamingResponse) HasTemplateModel() bool

HasTemplateModel returns a boolean if a field has been set.

func (PostCustomDataStreamingResponse) MarshalJSON

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

func (*PostCustomDataStreamingResponse) SetActive

func (o *PostCustomDataStreamingResponse) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*PostCustomDataStreamingResponse) SetAllDomains

func (o *PostCustomDataStreamingResponse) SetAllDomains(v bool)

SetAllDomains gets a reference to the given NullableBool and assigns it to the AllDomains field.

func (*PostCustomDataStreamingResponse) SetAllDomainsNil

func (o *PostCustomDataStreamingResponse) SetAllDomainsNil()

SetAllDomainsNil sets the value for AllDomains to be an explicit nil

func (*PostCustomDataStreamingResponse) SetDataSource

func (o *PostCustomDataStreamingResponse) SetDataSource(v string)

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*PostCustomDataStreamingResponse) SetEndpoint

func (o *PostCustomDataStreamingResponse) SetEndpoint(v string)

SetEndpoint gets a reference to the given string and assigns it to the Endpoint field.

func (*PostCustomDataStreamingResponse) SetId

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

func (*PostCustomDataStreamingResponse) SetName

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

func (*PostCustomDataStreamingResponse) SetTemplateModel

func (o *PostCustomDataStreamingResponse) SetTemplateModel(v string)

SetTemplateModel gets a reference to the given string and assigns it to the TemplateModel field.

func (PostCustomDataStreamingResponse) ToMap

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

func (*PostCustomDataStreamingResponse) UnsetAllDomains

func (o *PostCustomDataStreamingResponse) UnsetAllDomains()

UnsetAllDomains ensures that no value is present for AllDomains, not even an explicit nil

type PostDataStreamingResponse

type PostDataStreamingResponse struct {
	Id   *int32  `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
	// Options:  * `2` - Edge Applications Event Collector  * `4` - WAF Event Collector  * `86` - Edge Functions Event Collector  * `184` - Edge Applications + WAF Event Collector  * `251` - Activity History Collector
	TemplateId *int32 `json:"template_id,omitempty"`
	// Options:  * `http` - Edge Applications  * `waf` - WAF Events  * `cells_console` - Edge Functions  * `rtm_activity` - Activity History
	DataSource *string                                  `json:"data_source,omitempty"`
	Active     *bool                                    `json:"active,omitempty"`
	Endpoint   []PostDataStreamingResponseEndpointInner `json:"endpoint,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	AllDomains NullableBool `json:"all_domains,omitempty"`
}

PostDataStreamingResponse struct for PostDataStreamingResponse

func NewPostDataStreamingResponse

func NewPostDataStreamingResponse() *PostDataStreamingResponse

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

func NewPostDataStreamingResponseWithDefaults

func NewPostDataStreamingResponseWithDefaults() *PostDataStreamingResponse

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

func (*PostDataStreamingResponse) GetActive

func (o *PostDataStreamingResponse) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*PostDataStreamingResponse) GetActiveOk

func (o *PostDataStreamingResponse) GetActiveOk() (*bool, bool)

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

func (*PostDataStreamingResponse) GetAllDomains

func (o *PostDataStreamingResponse) GetAllDomains() bool

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

func (*PostDataStreamingResponse) GetAllDomainsOk

func (o *PostDataStreamingResponse) GetAllDomainsOk() (*bool, bool)

GetAllDomainsOk returns a tuple with the AllDomains 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 (*PostDataStreamingResponse) GetDataSource

func (o *PostDataStreamingResponse) GetDataSource() string

GetDataSource returns the DataSource field value if set, zero value otherwise.

func (*PostDataStreamingResponse) GetDataSourceOk

func (o *PostDataStreamingResponse) GetDataSourceOk() (*string, bool)

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

func (*PostDataStreamingResponse) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*PostDataStreamingResponse) GetEndpointOk

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

func (*PostDataStreamingResponse) GetId

func (o *PostDataStreamingResponse) GetId() int32

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

func (*PostDataStreamingResponse) GetIdOk

func (o *PostDataStreamingResponse) GetIdOk() (*int32, bool)

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

func (*PostDataStreamingResponse) GetName

func (o *PostDataStreamingResponse) GetName() string

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

func (*PostDataStreamingResponse) GetNameOk

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

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

func (*PostDataStreamingResponse) GetTemplateId

func (o *PostDataStreamingResponse) GetTemplateId() int32

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*PostDataStreamingResponse) GetTemplateIdOk

func (o *PostDataStreamingResponse) GetTemplateIdOk() (*int32, bool)

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

func (*PostDataStreamingResponse) HasActive

func (o *PostDataStreamingResponse) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasAllDomains

func (o *PostDataStreamingResponse) HasAllDomains() bool

HasAllDomains returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasDataSource

func (o *PostDataStreamingResponse) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasEndpoint

func (o *PostDataStreamingResponse) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasId

func (o *PostDataStreamingResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasName

func (o *PostDataStreamingResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*PostDataStreamingResponse) HasTemplateId

func (o *PostDataStreamingResponse) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (PostDataStreamingResponse) MarshalJSON

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

func (*PostDataStreamingResponse) SetActive

func (o *PostDataStreamingResponse) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*PostDataStreamingResponse) SetAllDomains

func (o *PostDataStreamingResponse) SetAllDomains(v bool)

SetAllDomains gets a reference to the given NullableBool and assigns it to the AllDomains field.

func (*PostDataStreamingResponse) SetAllDomainsNil

func (o *PostDataStreamingResponse) SetAllDomainsNil()

SetAllDomainsNil sets the value for AllDomains to be an explicit nil

func (*PostDataStreamingResponse) SetDataSource

func (o *PostDataStreamingResponse) SetDataSource(v string)

SetDataSource gets a reference to the given string and assigns it to the DataSource field.

func (*PostDataStreamingResponse) SetEndpoint

SetEndpoint gets a reference to the given []PostDataStreamingResponseEndpointInner and assigns it to the Endpoint field.

func (*PostDataStreamingResponse) SetId

func (o *PostDataStreamingResponse) SetId(v int32)

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

func (*PostDataStreamingResponse) SetName

func (o *PostDataStreamingResponse) SetName(v string)

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

func (*PostDataStreamingResponse) SetTemplateId

func (o *PostDataStreamingResponse) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (PostDataStreamingResponse) ToMap

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

func (*PostDataStreamingResponse) UnsetAllDomains

func (o *PostDataStreamingResponse) UnsetAllDomains()

UnsetAllDomains ensures that no value is present for AllDomains, not even an explicit nil

type PostDataStreamingResponseEndpointInner

type PostDataStreamingResponseEndpointInner struct {
	EndpoinrtS3                *EndpoinrtS3
	EndpointAWSKinesisFirehose *EndpointAWSKinesisFirehose
	EndpointAzureBlobStorage   *EndpointAzureBlobStorage
	EndpointAzureMonitor       *EndpointAzureMonitor
	EndpointDatadog            *EndpointDatadog
	EndpointDefault            *EndpointDefault
	EndpointElasticsearch      *EndpointElasticsearch
	EndpointGoogleBigQuery     *EndpointGoogleBigQuery
	EndpointIBMQRadar          *EndpointIBMQRadar
	EndpointKafka              *EndpointKafka
	EndpointSplunk             *EndpointSplunk
}

PostDataStreamingResponseEndpointInner - struct for PostDataStreamingResponseEndpointInner

func EndpoinrtS3AsPostDataStreamingResponseEndpointInner

func EndpoinrtS3AsPostDataStreamingResponseEndpointInner(v *EndpoinrtS3) PostDataStreamingResponseEndpointInner

EndpoinrtS3AsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpoinrtS3 wrapped in PostDataStreamingResponseEndpointInner

func EndpointAWSKinesisFirehoseAsPostDataStreamingResponseEndpointInner

func EndpointAWSKinesisFirehoseAsPostDataStreamingResponseEndpointInner(v *EndpointAWSKinesisFirehose) PostDataStreamingResponseEndpointInner

EndpointAWSKinesisFirehoseAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointAWSKinesisFirehose wrapped in PostDataStreamingResponseEndpointInner

func EndpointAzureBlobStorageAsPostDataStreamingResponseEndpointInner

func EndpointAzureBlobStorageAsPostDataStreamingResponseEndpointInner(v *EndpointAzureBlobStorage) PostDataStreamingResponseEndpointInner

EndpointAzureBlobStorageAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointAzureBlobStorage wrapped in PostDataStreamingResponseEndpointInner

func EndpointAzureMonitorAsPostDataStreamingResponseEndpointInner

func EndpointAzureMonitorAsPostDataStreamingResponseEndpointInner(v *EndpointAzureMonitor) PostDataStreamingResponseEndpointInner

EndpointAzureMonitorAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointAzureMonitor wrapped in PostDataStreamingResponseEndpointInner

func EndpointDatadogAsPostDataStreamingResponseEndpointInner

func EndpointDatadogAsPostDataStreamingResponseEndpointInner(v *EndpointDatadog) PostDataStreamingResponseEndpointInner

EndpointDatadogAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointDatadog wrapped in PostDataStreamingResponseEndpointInner

func EndpointDefaultAsPostDataStreamingResponseEndpointInner

func EndpointDefaultAsPostDataStreamingResponseEndpointInner(v *EndpointDefault) PostDataStreamingResponseEndpointInner

EndpointDefaultAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointDefault wrapped in PostDataStreamingResponseEndpointInner

func EndpointElasticsearchAsPostDataStreamingResponseEndpointInner

func EndpointElasticsearchAsPostDataStreamingResponseEndpointInner(v *EndpointElasticsearch) PostDataStreamingResponseEndpointInner

EndpointElasticsearchAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointElasticsearch wrapped in PostDataStreamingResponseEndpointInner

func EndpointGoogleBigQueryAsPostDataStreamingResponseEndpointInner

func EndpointGoogleBigQueryAsPostDataStreamingResponseEndpointInner(v *EndpointGoogleBigQuery) PostDataStreamingResponseEndpointInner

EndpointGoogleBigQueryAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointGoogleBigQuery wrapped in PostDataStreamingResponseEndpointInner

func EndpointIBMQRadarAsPostDataStreamingResponseEndpointInner

func EndpointIBMQRadarAsPostDataStreamingResponseEndpointInner(v *EndpointIBMQRadar) PostDataStreamingResponseEndpointInner

EndpointIBMQRadarAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointIBMQRadar wrapped in PostDataStreamingResponseEndpointInner

func EndpointKafkaAsPostDataStreamingResponseEndpointInner

func EndpointKafkaAsPostDataStreamingResponseEndpointInner(v *EndpointKafka) PostDataStreamingResponseEndpointInner

EndpointKafkaAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointKafka wrapped in PostDataStreamingResponseEndpointInner

func EndpointSplunkAsPostDataStreamingResponseEndpointInner

func EndpointSplunkAsPostDataStreamingResponseEndpointInner(v *EndpointSplunk) PostDataStreamingResponseEndpointInner

EndpointSplunkAsPostDataStreamingResponseEndpointInner is a convenience function that returns EndpointSplunk wrapped in PostDataStreamingResponseEndpointInner

func (*PostDataStreamingResponseEndpointInner) GetActualInstance

func (obj *PostDataStreamingResponseEndpointInner) GetActualInstance() interface{}

Get the actual instance

func (PostDataStreamingResponseEndpointInner) MarshalJSON

func (src PostDataStreamingResponseEndpointInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PostDataStreamingResponseEndpointInner) UnmarshalJSON

func (dst *PostDataStreamingResponseEndpointInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StandardDataStreamingPostBody

type StandardDataStreamingPostBody struct {
	Name *string `json:"name,omitempty"`
	// Options:  * `2` - Edge Applications Event Collector  * `4` - WAF Event Collector  * `86` - Edge Functions Event Collector  * `184` - Edge Applications + WAF Event Collector  * `251` - Activity History Collector
	TemplateId *int32 `json:"template_id,omitempty"`
	// Options:  * `http` - Edge Applications (default)  * `waf` - WAF Events  * `cells_console` - Edge Functions  * `rtm_activity` - Activity History
	DataSource NullableString                     `json:"data_source,omitempty"`
	Active     NullableBool                       `json:"active,omitempty"`
	Endpoint   *DataStreamingEndpointTypeStandard `json:"endpoint,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	DomainsIds []int32 `json:"domains_ids,omitempty"`
	// Note:  * Field not used with the rtm_activity data source.
	AllDomains NullableBool `json:"all_domains,omitempty"`
}

StandardDataStreamingPostBody struct for StandardDataStreamingPostBody

func NewStandardDataStreamingPostBody

func NewStandardDataStreamingPostBody() *StandardDataStreamingPostBody

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

func NewStandardDataStreamingPostBodyWithDefaults

func NewStandardDataStreamingPostBodyWithDefaults() *StandardDataStreamingPostBody

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

func (*StandardDataStreamingPostBody) GetActive

func (o *StandardDataStreamingPostBody) GetActive() bool

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

func (*StandardDataStreamingPostBody) GetActiveOk

func (o *StandardDataStreamingPostBody) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active 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 (*StandardDataStreamingPostBody) GetAllDomains

func (o *StandardDataStreamingPostBody) GetAllDomains() bool

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

func (*StandardDataStreamingPostBody) GetAllDomainsOk

func (o *StandardDataStreamingPostBody) GetAllDomainsOk() (*bool, bool)

GetAllDomainsOk returns a tuple with the AllDomains 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 (*StandardDataStreamingPostBody) GetDataSource

func (o *StandardDataStreamingPostBody) GetDataSource() string

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

func (*StandardDataStreamingPostBody) GetDataSourceOk

func (o *StandardDataStreamingPostBody) GetDataSourceOk() (*string, bool)

GetDataSourceOk returns a tuple with the DataSource 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 (*StandardDataStreamingPostBody) GetDomainsIds

func (o *StandardDataStreamingPostBody) GetDomainsIds() []int32

GetDomainsIds returns the DomainsIds field value if set, zero value otherwise.

func (*StandardDataStreamingPostBody) GetDomainsIdsOk

func (o *StandardDataStreamingPostBody) GetDomainsIdsOk() ([]int32, bool)

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

func (*StandardDataStreamingPostBody) GetEndpoint

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*StandardDataStreamingPostBody) GetEndpointOk

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

func (*StandardDataStreamingPostBody) GetName

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

func (*StandardDataStreamingPostBody) GetNameOk

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

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

func (*StandardDataStreamingPostBody) GetTemplateId

func (o *StandardDataStreamingPostBody) GetTemplateId() int32

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*StandardDataStreamingPostBody) GetTemplateIdOk

func (o *StandardDataStreamingPostBody) GetTemplateIdOk() (*int32, bool)

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

func (*StandardDataStreamingPostBody) HasActive

func (o *StandardDataStreamingPostBody) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasAllDomains

func (o *StandardDataStreamingPostBody) HasAllDomains() bool

HasAllDomains returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasDataSource

func (o *StandardDataStreamingPostBody) HasDataSource() bool

HasDataSource returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasDomainsIds

func (o *StandardDataStreamingPostBody) HasDomainsIds() bool

HasDomainsIds returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasEndpoint

func (o *StandardDataStreamingPostBody) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasName

func (o *StandardDataStreamingPostBody) HasName() bool

HasName returns a boolean if a field has been set.

func (*StandardDataStreamingPostBody) HasTemplateId

func (o *StandardDataStreamingPostBody) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (StandardDataStreamingPostBody) MarshalJSON

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

func (*StandardDataStreamingPostBody) SetActive

func (o *StandardDataStreamingPostBody) SetActive(v bool)

SetActive gets a reference to the given NullableBool and assigns it to the Active field.

func (*StandardDataStreamingPostBody) SetActiveNil

func (o *StandardDataStreamingPostBody) SetActiveNil()

SetActiveNil sets the value for Active to be an explicit nil

func (*StandardDataStreamingPostBody) SetAllDomains

func (o *StandardDataStreamingPostBody) SetAllDomains(v bool)

SetAllDomains gets a reference to the given NullableBool and assigns it to the AllDomains field.

func (*StandardDataStreamingPostBody) SetAllDomainsNil

func (o *StandardDataStreamingPostBody) SetAllDomainsNil()

SetAllDomainsNil sets the value for AllDomains to be an explicit nil

func (*StandardDataStreamingPostBody) SetDataSource

func (o *StandardDataStreamingPostBody) SetDataSource(v string)

SetDataSource gets a reference to the given NullableString and assigns it to the DataSource field.

func (*StandardDataStreamingPostBody) SetDataSourceNil

func (o *StandardDataStreamingPostBody) SetDataSourceNil()

SetDataSourceNil sets the value for DataSource to be an explicit nil

func (*StandardDataStreamingPostBody) SetDomainsIds

func (o *StandardDataStreamingPostBody) SetDomainsIds(v []int32)

SetDomainsIds gets a reference to the given []int32 and assigns it to the DomainsIds field.

func (*StandardDataStreamingPostBody) SetEndpoint

SetEndpoint gets a reference to the given DataStreamingEndpointTypeStandard and assigns it to the Endpoint field.

func (*StandardDataStreamingPostBody) SetName

func (o *StandardDataStreamingPostBody) SetName(v string)

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

func (*StandardDataStreamingPostBody) SetTemplateId

func (o *StandardDataStreamingPostBody) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (StandardDataStreamingPostBody) ToMap

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

func (*StandardDataStreamingPostBody) UnsetActive

func (o *StandardDataStreamingPostBody) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

func (*StandardDataStreamingPostBody) UnsetAllDomains

func (o *StandardDataStreamingPostBody) UnsetAllDomains()

UnsetAllDomains ensures that no value is present for AllDomains, not even an explicit nil

func (*StandardDataStreamingPostBody) UnsetDataSource

func (o *StandardDataStreamingPostBody) UnsetDataSource()

UnsetDataSource ensures that no value is present for DataSource, not even an explicit nil

type Template

type Template struct {
	Id            *int32  `json:"id,omitempty"`
	Name          *string `json:"name,omitempty"`
	TemplateModel *string `json:"template_model,omitempty"`
}

Template struct for Template

func NewTemplate

func NewTemplate() *Template

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

func NewTemplateWithDefaults

func NewTemplateWithDefaults() *Template

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

func (*Template) GetId

func (o *Template) GetId() int32

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

func (*Template) GetIdOk

func (o *Template) GetIdOk() (*int32, bool)

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

func (*Template) GetName

func (o *Template) GetName() string

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

func (*Template) GetNameOk

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

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

func (*Template) GetTemplateModel

func (o *Template) GetTemplateModel() string

GetTemplateModel returns the TemplateModel field value if set, zero value otherwise.

func (*Template) GetTemplateModelOk

func (o *Template) GetTemplateModelOk() (*string, bool)

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

func (*Template) HasId

func (o *Template) HasId() bool

HasId returns a boolean if a field has been set.

func (*Template) HasName

func (o *Template) HasName() bool

HasName returns a boolean if a field has been set.

func (*Template) HasTemplateModel

func (o *Template) HasTemplateModel() bool

HasTemplateModel returns a boolean if a field has been set.

func (Template) MarshalJSON

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

func (*Template) SetId

func (o *Template) SetId(v int32)

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

func (*Template) SetName

func (o *Template) SetName(v string)

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

func (*Template) SetTemplateModel

func (o *Template) SetTemplateModel(v string)

SetTemplateModel gets a reference to the given string and assigns it to the TemplateModel field.

func (Template) ToMap

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

type TemplateResultById

type TemplateResultById struct {
	Results       *Template `json:"results,omitempty"`
	SchemaVersion *float32  `json:"schema_version,omitempty"`
}

TemplateResultById struct for TemplateResultById

func NewTemplateResultById

func NewTemplateResultById() *TemplateResultById

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

func NewTemplateResultByIdWithDefaults

func NewTemplateResultByIdWithDefaults() *TemplateResultById

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

func (*TemplateResultById) GetResults

func (o *TemplateResultById) GetResults() Template

GetResults returns the Results field value if set, zero value otherwise.

func (*TemplateResultById) GetResultsOk

func (o *TemplateResultById) GetResultsOk() (*Template, bool)

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

func (*TemplateResultById) GetSchemaVersion

func (o *TemplateResultById) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*TemplateResultById) GetSchemaVersionOk

func (o *TemplateResultById) GetSchemaVersionOk() (*float32, bool)

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

func (*TemplateResultById) HasResults

func (o *TemplateResultById) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*TemplateResultById) HasSchemaVersion

func (o *TemplateResultById) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (TemplateResultById) MarshalJSON

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

func (*TemplateResultById) SetResults

func (o *TemplateResultById) SetResults(v Template)

SetResults gets a reference to the given Template and assigns it to the Results field.

func (*TemplateResultById) SetSchemaVersion

func (o *TemplateResultById) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (TemplateResultById) ToMap

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

type TemplateResults

type TemplateResults struct {
	Results       []Template `json:"results,omitempty"`
	SchemaVersion *float32   `json:"schema_version,omitempty"`
}

TemplateResults struct for TemplateResults

func NewTemplateResults

func NewTemplateResults() *TemplateResults

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

func NewTemplateResultsWithDefaults

func NewTemplateResultsWithDefaults() *TemplateResults

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

func (*TemplateResults) GetResults

func (o *TemplateResults) GetResults() []Template

GetResults returns the Results field value if set, zero value otherwise.

func (*TemplateResults) GetResultsOk

func (o *TemplateResults) GetResultsOk() ([]Template, bool)

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

func (*TemplateResults) GetSchemaVersion

func (o *TemplateResults) GetSchemaVersion() float32

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*TemplateResults) GetSchemaVersionOk

func (o *TemplateResults) GetSchemaVersionOk() (*float32, bool)

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

func (*TemplateResults) HasResults

func (o *TemplateResults) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*TemplateResults) HasSchemaVersion

func (o *TemplateResults) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (TemplateResults) MarshalJSON

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

func (*TemplateResults) SetResults

func (o *TemplateResults) SetResults(v []Template)

SetResults gets a reference to the given []Template and assigns it to the Results field.

func (*TemplateResults) SetSchemaVersion

func (o *TemplateResults) SetSchemaVersion(v float32)

SetSchemaVersion gets a reference to the given float32 and assigns it to the SchemaVersion field.

func (TemplateResults) ToMap

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

Source Files

Jump to

Keyboard shortcuts

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