openapi

package
v0.1.7 Latest Latest
Warning

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

Go to latest
Published: Nov 8, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// 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")
)
View Source
var AllowedSupportedClientsEnumValues = []SupportedClients{
	"http",
	"grpc",
}

All allowed values of SupportedClients enum

View Source
var AllowedSupportedConnectionTypesEnumValues = []SupportedConnectionTypes{
	"direct",
	"collector",
}

All allowed values of SupportedConnectionTypes enum

View Source
var AllowedSupportedDataStoresEnumValues = []SupportedDataStores{
	"agent",
	"jaeger",
	"opensearch",
	"tempo",
	"signalfx",
	"otlp",
	"elasticapm",
	"newrelic",
	"lightstep",
	"datadog",
	"awsxray",
	"honeycomb",
	"azureappinsights",
	"signoz",
	"dynatrace",
}

All allowed values of SupportedDataStores enum

View Source
var AllowedSupportedGatesEnumValues = []SupportedGates{
	"analyzer-score",
	"analyzer-rules",
	"test-specs",
}

All allowed values of SupportedGates enum

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ApiApi *ApiApiService

	ResourceApiApi *ResourceApiApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the TraceTest API v0.2.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiApiService

type ApiApiService service

ApiApiService ApiApi service

func (*ApiApiService) DeleteTestRun

func (a *ApiApiService) DeleteTestRun(ctx context.Context, testId string, runId int32) ApiDeleteTestRunRequest

DeleteTestRun delete a test run

delete a test run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiDeleteTestRunRequest

func (*ApiApiService) DeleteTestRunExecute

func (a *ApiApiService) DeleteTestRunExecute(r ApiDeleteTestRunRequest) (*http.Response, error)

Execute executes the request

func (*ApiApiService) DeleteTestSuiteRun added in v0.1.7

func (a *ApiApiService) DeleteTestSuiteRun(ctx context.Context, testSuiteId string, runId int32) ApiDeleteTestSuiteRunRequest

DeleteTestSuiteRun Delete a specific run from a particular TestSuite

Delete a specific run from a particular TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@param runId id of the run
@return ApiDeleteTestSuiteRunRequest

func (*ApiApiService) DeleteTestSuiteRunExecute added in v0.1.7

func (a *ApiApiService) DeleteTestSuiteRunExecute(r ApiDeleteTestSuiteRunRequest) (*http.Response, error)

Execute executes the request

func (*ApiApiService) DryRunAssertion

func (a *ApiApiService) DryRunAssertion(ctx context.Context, testId string, runId int32) ApiDryRunAssertionRequest

DryRunAssertion run given assertions against the traces from the given run without persisting anything

use this method to test a definition against an actual trace without creating a new version or persisting anything

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiDryRunAssertionRequest

func (*ApiApiService) DryRunAssertionExecute

func (a *ApiApiService) DryRunAssertionExecute(r ApiDryRunAssertionRequest) (*AssertionResults, *http.Response, error)

Execute executes the request

@return AssertionResults

func (*ApiApiService) ExportTestRun

func (a *ApiApiService) ExportTestRun(ctx context.Context, testId string, runId int32) ApiExportTestRunRequest

ExportTestRun export test and test run information

export test and test run information for debugging

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiExportTestRunRequest

func (*ApiApiService) ExportTestRunExecute

Execute executes the request

@return ExportedTestInformation

func (*ApiApiService) ExpressionResolve

func (a *ApiApiService) ExpressionResolve(ctx context.Context) ApiExpressionResolveRequest

ExpressionResolve resolves an expression and returns the result string

resolves an expression and returns the result string

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

func (*ApiApiService) ExpressionResolveExecute

func (a *ApiApiService) ExpressionResolveExecute(r ApiExpressionResolveRequest) (*ResolveResponseInfo, *http.Response, error)

Execute executes the request

@return ResolveResponseInfo

func (*ApiApiService) GetResources

func (a *ApiApiService) GetResources(ctx context.Context) ApiGetResourcesRequest

GetResources Get resources

get resources

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

func (*ApiApiService) GetResourcesExecute

func (a *ApiApiService) GetResourcesExecute(r ApiGetResourcesRequest) ([]Resource, *http.Response, error)

Execute executes the request

@return []Resource

func (*ApiApiService) GetRunResultJUnit

func (a *ApiApiService) GetRunResultJUnit(ctx context.Context, testId string, runId int32) ApiGetRunResultJUnitRequest

GetRunResultJUnit get test run results in JUnit xml format

get test run results in JUnit xml format

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiGetRunResultJUnitRequest

func (*ApiApiService) GetRunResultJUnitExecute

func (a *ApiApiService) GetRunResultJUnitExecute(r ApiGetRunResultJUnitRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*ApiApiService) GetTestResultSelectedSpans

func (a *ApiApiService) GetTestResultSelectedSpans(ctx context.Context, testId string, runId int32) ApiGetTestResultSelectedSpansRequest

GetTestResultSelectedSpans retrieve spans that will be selected by selector

get the spans ids that would be selected by a specific selector query

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiGetTestResultSelectedSpansRequest

func (*ApiApiService) GetTestResultSelectedSpansExecute

func (a *ApiApiService) GetTestResultSelectedSpansExecute(r ApiGetTestResultSelectedSpansRequest) (*SelectedSpansResult, *http.Response, error)

Execute executes the request

@return SelectedSpansResult

func (*ApiApiService) GetTestRun

func (a *ApiApiService) GetTestRun(ctx context.Context, testId string, runId int32) ApiGetTestRunRequest

GetTestRun get test Run

get a particular test Run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiGetTestRunRequest

func (*ApiApiService) GetTestRunEvents added in v0.1.7

func (a *ApiApiService) GetTestRunEvents(ctx context.Context, testId string, runId int32) ApiGetTestRunEventsRequest

GetTestRunEvents get events from a test run

get events from a test run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiGetTestRunEventsRequest

func (*ApiApiService) GetTestRunEventsExecute added in v0.1.7

func (a *ApiApiService) GetTestRunEventsExecute(r ApiGetTestRunEventsRequest) ([]TestRunEvent, *http.Response, error)

Execute executes the request

@return []TestRunEvent

func (*ApiApiService) GetTestRunExecute

func (a *ApiApiService) GetTestRunExecute(r ApiGetTestRunRequest) (*TestRun, *http.Response, error)

Execute executes the request

@return TestRun

func (*ApiApiService) GetTestRuns

func (a *ApiApiService) GetTestRuns(ctx context.Context, testId string) ApiGetTestRunsRequest

GetTestRuns get the runs for a test

get the runs from a particular test

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiGetTestRunsRequest

func (*ApiApiService) GetTestRunsExecute

func (a *ApiApiService) GetTestRunsExecute(r ApiGetTestRunsRequest) ([]TestRun, *http.Response, error)

Execute executes the request

@return []TestRun

func (*ApiApiService) GetTestSpecs

func (a *ApiApiService) GetTestSpecs(ctx context.Context, testId string) ApiGetTestSpecsRequest

GetTestSpecs Get definition for a test

Gets definition for a test

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiGetTestSpecsRequest

func (*ApiApiService) GetTestSpecsExecute

func (a *ApiApiService) GetTestSpecsExecute(r ApiGetTestSpecsRequest) ([]TestSpecs, *http.Response, error)

Execute executes the request

@return []TestSpecs

func (*ApiApiService) GetTestSuiteRun added in v0.1.7

func (a *ApiApiService) GetTestSuiteRun(ctx context.Context, testSuiteId string, runId int32) ApiGetTestSuiteRunRequest

GetTestSuiteRun Get a specific run from a particular TestSuite

Get a specific run from a particular TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@param runId id of the run
@return ApiGetTestSuiteRunRequest

func (*ApiApiService) GetTestSuiteRunExecute added in v0.1.7

func (a *ApiApiService) GetTestSuiteRunExecute(r ApiGetTestSuiteRunRequest) (*TestSuiteRun, *http.Response, error)

Execute executes the request

@return TestSuiteRun

func (*ApiApiService) GetTestSuiteRuns added in v0.1.7

func (a *ApiApiService) GetTestSuiteRuns(ctx context.Context, testSuiteId string) ApiGetTestSuiteRunsRequest

GetTestSuiteRuns Get all runs from a particular TestSuite

Get all runs from a particular TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@return ApiGetTestSuiteRunsRequest

func (*ApiApiService) GetTestSuiteRunsExecute added in v0.1.7

func (a *ApiApiService) GetTestSuiteRunsExecute(r ApiGetTestSuiteRunsRequest) ([]TestSuiteRun, *http.Response, error)

Execute executes the request

@return []TestSuiteRun

func (*ApiApiService) GetTestSuiteVersion added in v0.1.7

func (a *ApiApiService) GetTestSuiteVersion(ctx context.Context, testSuiteId string, version int32) ApiGetTestSuiteVersionRequest

GetTestSuiteVersion get a TestSuite specific version

get a TestSuite specific version

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@param version version of the test
@return ApiGetTestSuiteVersionRequest

func (*ApiApiService) GetTestSuiteVersionExecute added in v0.1.7

func (a *ApiApiService) GetTestSuiteVersionExecute(r ApiGetTestSuiteVersionRequest) (*TestSuite, *http.Response, error)

Execute executes the request

@return TestSuite

func (*ApiApiService) GetTestVersion

func (a *ApiApiService) GetTestVersion(ctx context.Context, testId string, version int32) ApiGetTestVersionRequest

GetTestVersion get a test specific version

get a test specific version

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param version version of the test
@return ApiGetTestVersionRequest

func (*ApiApiService) GetTestVersionExecute

func (a *ApiApiService) GetTestVersionExecute(r ApiGetTestVersionRequest) (*Test, *http.Response, error)

Execute executes the request

@return Test

func (*ApiApiService) GetVersion added in v0.1.7

func (a *ApiApiService) GetVersion(ctx context.Context, fileExtension string) ApiGetVersionRequest

GetVersion Get the version of the API

Get the version of the API

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

func (*ApiApiService) GetVersionExecute added in v0.1.7

func (a *ApiApiService) GetVersionExecute(r ApiGetVersionRequest) (*Version, *http.Response, error)

Execute executes the request

@return Version

func (*ApiApiService) ImportTestRun

func (a *ApiApiService) ImportTestRun(ctx context.Context) ApiImportTestRunRequest

ImportTestRun import test and test run information

import test and test run information for debugging

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

func (*ApiApiService) ImportTestRunExecute

Execute executes the request

@return ExportedTestInformation

func (*ApiApiService) RerunTestRun

func (a *ApiApiService) RerunTestRun(ctx context.Context, testId string, runId int32) ApiRerunTestRunRequest

RerunTestRun rerun a test run

rerun a test run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiRerunTestRunRequest

func (*ApiApiService) RerunTestRunExecute

func (a *ApiApiService) RerunTestRunExecute(r ApiRerunTestRunRequest) (*TestRun, *http.Response, error)

Execute executes the request

@return TestRun

func (*ApiApiService) RunTest

func (a *ApiApiService) RunTest(ctx context.Context, testId string) ApiRunTestRequest

RunTest run test

run a particular test

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiRunTestRequest

func (*ApiApiService) RunTestExecute

func (a *ApiApiService) RunTestExecute(r ApiRunTestRequest) (*TestRun, *http.Response, error)

Execute executes the request

@return TestRun

func (*ApiApiService) RunTestSuite added in v0.1.7

func (a *ApiApiService) RunTestSuite(ctx context.Context, testSuiteId string) ApiRunTestSuiteRequest

RunTestSuite run TestSuite

run a particular TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@return ApiRunTestSuiteRequest

func (*ApiApiService) RunTestSuiteExecute added in v0.1.7

func (a *ApiApiService) RunTestSuiteExecute(r ApiRunTestSuiteRequest) (*TestSuiteRun, *http.Response, error)

Execute executes the request

@return TestSuiteRun

func (*ApiApiService) StopTestRun added in v0.1.7

func (a *ApiApiService) StopTestRun(ctx context.Context, testId string, runId int32) ApiStopTestRunRequest

StopTestRun stops the execution of a test run

stops the execution of a test run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiStopTestRunRequest

func (*ApiApiService) StopTestRunExecute added in v0.1.7

func (a *ApiApiService) StopTestRunExecute(r ApiStopTestRunRequest) (*http.Response, error)

Execute executes the request

func (*ApiApiService) TestConnection

func (a *ApiApiService) TestConnection(ctx context.Context) ApiTestConnectionRequest

TestConnection Tests the config data store/exporter connection

Tests the config data store/exporter connection

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

func (*ApiApiService) TestConnectionExecute

Execute executes the request

@return TestConnectionResponse

func (*ApiApiService) UpdateTestRun added in v0.1.7

func (a *ApiApiService) UpdateTestRun(ctx context.Context, testId string, runId int32) ApiUpdateTestRunRequest

UpdateTestRun update a test run

update a test run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@param runId id of the run
@return ApiUpdateTestRunRequest

func (*ApiApiService) UpdateTestRunExecute added in v0.1.7

func (a *ApiApiService) UpdateTestRunExecute(r ApiUpdateTestRunRequest) (*TestRun, *http.Response, error)

Execute executes the request

@return TestRun

type ApiCreateDemoRequest added in v0.1.7

type ApiCreateDemoRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateDemoRequest) Demo added in v0.1.7

func (ApiCreateDemoRequest) Execute added in v0.1.7

func (r ApiCreateDemoRequest) Execute() (*Demo, *http.Response, error)

type ApiCreateLinterRequest added in v0.1.7

type ApiCreateLinterRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateLinterRequest) Execute added in v0.1.7

func (ApiCreateLinterRequest) LinterResource added in v0.1.7

func (r ApiCreateLinterRequest) LinterResource(linterResource LinterResource) ApiCreateLinterRequest

type ApiCreateTestRequest

type ApiCreateTestRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateTestRequest) Execute

func (r ApiCreateTestRequest) Execute() (*Test, *http.Response, error)

func (ApiCreateTestRequest) Test

type ApiCreateTestSuiteRequest added in v0.1.7

type ApiCreateTestSuiteRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateTestSuiteRequest) Execute added in v0.1.7

func (ApiCreateTestSuiteRequest) TestSuiteResource added in v0.1.7

func (r ApiCreateTestSuiteRequest) TestSuiteResource(testSuiteResource TestSuiteResource) ApiCreateTestSuiteRequest

type ApiCreateVariableSetRequest added in v0.1.7

type ApiCreateVariableSetRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateVariableSetRequest) Execute added in v0.1.7

func (ApiCreateVariableSetRequest) VariableSetResource added in v0.1.7

func (r ApiCreateVariableSetRequest) VariableSetResource(variableSetResource VariableSetResource) ApiCreateVariableSetRequest

type ApiDeleteDataStoreRequest

type ApiDeleteDataStoreRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDataStoreRequest) Execute

func (r ApiDeleteDataStoreRequest) Execute() (*http.Response, error)

type ApiDeleteDemoRequest added in v0.1.7

type ApiDeleteDemoRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDemoRequest) Execute added in v0.1.7

func (r ApiDeleteDemoRequest) Execute() (*http.Response, error)

type ApiDeleteLinterRequest added in v0.1.7

type ApiDeleteLinterRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteLinterRequest) Execute added in v0.1.7

func (r ApiDeleteLinterRequest) Execute() (*http.Response, error)

type ApiDeleteTestRequest

type ApiDeleteTestRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTestRequest) Execute

func (r ApiDeleteTestRequest) Execute() (*http.Response, error)

type ApiDeleteTestRunRequest

type ApiDeleteTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTestRunRequest) Execute

func (r ApiDeleteTestRunRequest) Execute() (*http.Response, error)

type ApiDeleteTestSuiteRequest added in v0.1.7

type ApiDeleteTestSuiteRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTestSuiteRequest) Execute added in v0.1.7

func (r ApiDeleteTestSuiteRequest) Execute() (*http.Response, error)

type ApiDeleteTestSuiteRunRequest added in v0.1.7

type ApiDeleteTestSuiteRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTestSuiteRunRequest) Execute added in v0.1.7

type ApiDeleteVariableSetRequest added in v0.1.7

type ApiDeleteVariableSetRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVariableSetRequest) Execute added in v0.1.7

type ApiDryRunAssertionRequest

type ApiDryRunAssertionRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiDryRunAssertionRequest) Execute

func (ApiDryRunAssertionRequest) TestSpecs

type ApiExportTestRunRequest

type ApiExportTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiExportTestRunRequest) Execute

type ApiExpressionResolveRequest

type ApiExpressionResolveRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiExpressionResolveRequest) Execute

func (ApiExpressionResolveRequest) ResolveRequestInfo

func (r ApiExpressionResolveRequest) ResolveRequestInfo(resolveRequestInfo ResolveRequestInfo) ApiExpressionResolveRequest

type ApiGetConfigurationRequest added in v0.1.7

type ApiGetConfigurationRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetConfigurationRequest) Execute added in v0.1.7

type ApiGetDataStoreRequest

type ApiGetDataStoreRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetDataStoreRequest) Execute

type ApiGetDemoRequest added in v0.1.7

type ApiGetDemoRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetDemoRequest) Execute added in v0.1.7

func (r ApiGetDemoRequest) Execute() (*Demo, *http.Response, error)

type ApiGetLinterRequest added in v0.1.7

type ApiGetLinterRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetLinterRequest) Execute added in v0.1.7

type ApiGetPollingProfileRequest added in v0.1.7

type ApiGetPollingProfileRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetPollingProfileRequest) Execute added in v0.1.7

type ApiGetResourcesRequest

type ApiGetResourcesRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetResourcesRequest) Execute

func (r ApiGetResourcesRequest) Execute() ([]Resource, *http.Response, error)

func (ApiGetResourcesRequest) Query

query to search resources

func (ApiGetResourcesRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiGetResourcesRequest) SortBy

indicates the sort field for the resources

func (ApiGetResourcesRequest) SortDirection

func (r ApiGetResourcesRequest) SortDirection(sortDirection string) ApiGetResourcesRequest

indicates the sort direction for the resources

func (ApiGetResourcesRequest) Take

indicates how many resources can be returned by each page

type ApiGetRunResultJUnitRequest

type ApiGetRunResultJUnitRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetRunResultJUnitRequest) Execute

type ApiGetTestResultSelectedSpansRequest

type ApiGetTestResultSelectedSpansRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestResultSelectedSpansRequest) Execute

func (ApiGetTestResultSelectedSpansRequest) Query

query to search resources

type ApiGetTestRunEventsRequest added in v0.1.7

type ApiGetTestRunEventsRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestRunEventsRequest) Execute added in v0.1.7

type ApiGetTestRunRequest

type ApiGetTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestRunRequest) Execute

func (r ApiGetTestRunRequest) Execute() (*TestRun, *http.Response, error)

type ApiGetTestRunsRequest

type ApiGetTestRunsRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestRunsRequest) Execute

func (r ApiGetTestRunsRequest) Execute() ([]TestRun, *http.Response, error)

func (ApiGetTestRunsRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiGetTestRunsRequest) Take

indicates how many resources can be returned by each page

type ApiGetTestSpecsRequest

type ApiGetTestSpecsRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSpecsRequest) Execute

func (r ApiGetTestSpecsRequest) Execute() ([]TestSpecs, *http.Response, error)

type ApiGetTestSuiteRequest added in v0.1.7

type ApiGetTestSuiteRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSuiteRequest) Execute added in v0.1.7

type ApiGetTestSuiteRunRequest added in v0.1.7

type ApiGetTestSuiteRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSuiteRunRequest) Execute added in v0.1.7

type ApiGetTestSuiteRunsRequest added in v0.1.7

type ApiGetTestSuiteRunsRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSuiteRunsRequest) Execute added in v0.1.7

func (ApiGetTestSuiteRunsRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiGetTestSuiteRunsRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiGetTestSuiteVersionRequest added in v0.1.7

type ApiGetTestSuiteVersionRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSuiteVersionRequest) Execute added in v0.1.7

type ApiGetTestSuitesRequest added in v0.1.7

type ApiGetTestSuitesRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestSuitesRequest) Execute added in v0.1.7

func (ApiGetTestSuitesRequest) Query added in v0.1.7

query to search resources

func (ApiGetTestSuitesRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiGetTestSuitesRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiGetTestSuitesRequest) SortDirection added in v0.1.7

func (r ApiGetTestSuitesRequest) SortDirection(sortDirection string) ApiGetTestSuitesRequest

indicates the sort direction for the resources

func (ApiGetTestSuitesRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiGetTestVersionRequest

type ApiGetTestVersionRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestVersionRequest) Execute

func (r ApiGetTestVersionRequest) Execute() (*Test, *http.Response, error)

type ApiGetTestsRequest

type ApiGetTestsRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTestsRequest) Execute

func (ApiGetTestsRequest) Query

query to search resources

func (ApiGetTestsRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiGetTestsRequest) SortBy

func (r ApiGetTestsRequest) SortBy(sortBy string) ApiGetTestsRequest

indicates the sort field for the resources

func (ApiGetTestsRequest) SortDirection

func (r ApiGetTestsRequest) SortDirection(sortDirection string) ApiGetTestsRequest

indicates the sort direction for the resources

func (ApiGetTestsRequest) Take

indicates how many resources can be returned by each page

type ApiGetVariableSetRequest added in v0.1.7

type ApiGetVariableSetRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetVariableSetRequest) Execute added in v0.1.7

type ApiGetVersionRequest added in v0.1.7

type ApiGetVersionRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiGetVersionRequest) Execute added in v0.1.7

func (r ApiGetVersionRequest) Execute() (*Version, *http.Response, error)

type ApiImportTestRunRequest

type ApiImportTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiImportTestRunRequest) Execute

func (ApiImportTestRunRequest) ExportedTestInformation

func (r ApiImportTestRunRequest) ExportedTestInformation(exportedTestInformation ExportedTestInformation) ApiImportTestRunRequest

type ApiListConfigurationRequest added in v0.1.7

type ApiListConfigurationRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListConfigurationRequest) Execute added in v0.1.7

func (ApiListConfigurationRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListConfigurationRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListConfigurationRequest) SortDirection added in v0.1.7

func (r ApiListConfigurationRequest) SortDirection(sortDirection string) ApiListConfigurationRequest

indicates the sort direction for the resources

func (ApiListConfigurationRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiListDataStoreRequest added in v0.1.7

type ApiListDataStoreRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListDataStoreRequest) Execute added in v0.1.7

func (ApiListDataStoreRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListDataStoreRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListDataStoreRequest) SortDirection added in v0.1.7

func (r ApiListDataStoreRequest) SortDirection(sortDirection string) ApiListDataStoreRequest

indicates the sort direction for the resources

func (ApiListDataStoreRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiListDemosRequest added in v0.1.7

type ApiListDemosRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListDemosRequest) Execute added in v0.1.7

func (r ApiListDemosRequest) Execute() (*DemoList, *http.Response, error)

func (ApiListDemosRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListDemosRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListDemosRequest) SortDirection added in v0.1.7

func (r ApiListDemosRequest) SortDirection(sortDirection string) ApiListDemosRequest

indicates the sort direction for the resources

func (ApiListDemosRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiListLintersRequest added in v0.1.7

type ApiListLintersRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListLintersRequest) Execute added in v0.1.7

func (ApiListLintersRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListLintersRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListLintersRequest) SortDirection added in v0.1.7

func (r ApiListLintersRequest) SortDirection(sortDirection string) ApiListLintersRequest

indicates the sort direction for the resources

func (ApiListLintersRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiListPollingProfileRequest added in v0.1.7

type ApiListPollingProfileRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListPollingProfileRequest) Execute added in v0.1.7

func (ApiListPollingProfileRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListPollingProfileRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListPollingProfileRequest) SortDirection added in v0.1.7

func (r ApiListPollingProfileRequest) SortDirection(sortDirection string) ApiListPollingProfileRequest

indicates the sort direction for the resources

func (ApiListPollingProfileRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiListVariableSetsRequest added in v0.1.7

type ApiListVariableSetsRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiListVariableSetsRequest) Execute added in v0.1.7

func (ApiListVariableSetsRequest) Skip added in v0.1.7

indicates how many resources will be skipped when paginating

func (ApiListVariableSetsRequest) SortBy added in v0.1.7

indicates the sort field for the resources

func (ApiListVariableSetsRequest) SortDirection added in v0.1.7

func (r ApiListVariableSetsRequest) SortDirection(sortDirection string) ApiListVariableSetsRequest

indicates the sort direction for the resources

func (ApiListVariableSetsRequest) Take added in v0.1.7

indicates how many resources can be returned by each page

type ApiRerunTestRunRequest

type ApiRerunTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiRerunTestRunRequest) Execute

func (r ApiRerunTestRunRequest) Execute() (*TestRun, *http.Response, error)

type ApiRunTestRequest

type ApiRunTestRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiRunTestRequest) Execute

func (r ApiRunTestRequest) Execute() (*TestRun, *http.Response, error)

func (ApiRunTestRequest) RunInformation

func (r ApiRunTestRequest) RunInformation(runInformation RunInformation) ApiRunTestRequest

type ApiRunTestSuiteRequest added in v0.1.7

type ApiRunTestSuiteRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiRunTestSuiteRequest) Execute added in v0.1.7

func (ApiRunTestSuiteRequest) RunInformation added in v0.1.7

func (r ApiRunTestSuiteRequest) RunInformation(runInformation RunInformation) ApiRunTestSuiteRequest

type ApiStopTestRunRequest added in v0.1.7

type ApiStopTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiStopTestRunRequest) Execute added in v0.1.7

func (r ApiStopTestRunRequest) Execute() (*http.Response, error)

type ApiTestConnectionRequest

type ApiTestConnectionRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiTestConnectionRequest) DataStore

func (ApiTestConnectionRequest) Execute

type ApiTestsTestIdGetRequest added in v0.1.7

type ApiTestsTestIdGetRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiTestsTestIdGetRequest) Execute added in v0.1.7

type ApiUpdateConfigurationRequest added in v0.1.7

type ApiUpdateConfigurationRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateConfigurationRequest) ConfigurationResource added in v0.1.7

func (r ApiUpdateConfigurationRequest) ConfigurationResource(configurationResource ConfigurationResource) ApiUpdateConfigurationRequest

func (ApiUpdateConfigurationRequest) Execute added in v0.1.7

type ApiUpdateDataStoreRequest

type ApiUpdateDataStoreRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDataStoreRequest) DataStore

func (ApiUpdateDataStoreRequest) Execute

func (r ApiUpdateDataStoreRequest) Execute() (*http.Response, error)

type ApiUpdateDemoRequest added in v0.1.7

type ApiUpdateDemoRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDemoRequest) Demo added in v0.1.7

func (ApiUpdateDemoRequest) Execute added in v0.1.7

func (r ApiUpdateDemoRequest) Execute() (*Demo, *http.Response, error)

type ApiUpdateLinterRequest added in v0.1.7

type ApiUpdateLinterRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateLinterRequest) Execute added in v0.1.7

func (ApiUpdateLinterRequest) LinterResource added in v0.1.7

func (r ApiUpdateLinterRequest) LinterResource(linterResource LinterResource) ApiUpdateLinterRequest

type ApiUpdatePollingProfileRequest added in v0.1.7

type ApiUpdatePollingProfileRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePollingProfileRequest) Execute added in v0.1.7

func (ApiUpdatePollingProfileRequest) PollingProfile added in v0.1.7

type ApiUpdateTestRequest

type ApiUpdateTestRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTestRequest) Execute

func (r ApiUpdateTestRequest) Execute() (*http.Response, error)

func (ApiUpdateTestRequest) Test

type ApiUpdateTestRunRequest added in v0.1.7

type ApiUpdateTestRunRequest struct {
	ApiService *ApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTestRunRequest) Execute added in v0.1.7

func (ApiUpdateTestRunRequest) TestRun added in v0.1.7

type ApiUpdateTestSuiteRequest added in v0.1.7

type ApiUpdateTestSuiteRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTestSuiteRequest) Execute added in v0.1.7

func (ApiUpdateTestSuiteRequest) TestSuiteResource added in v0.1.7

func (r ApiUpdateTestSuiteRequest) TestSuiteResource(testSuiteResource TestSuiteResource) ApiUpdateTestSuiteRequest

type ApiUpdateVariableSetRequest added in v0.1.7

type ApiUpdateVariableSetRequest struct {
	ApiService *ResourceApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVariableSetRequest) Execute added in v0.1.7

func (ApiUpdateVariableSetRequest) VariableSetResource added in v0.1.7

func (r ApiUpdateVariableSetRequest) VariableSetResource(variableSetResource VariableSetResource) ApiUpdateVariableSetRequest

type AssertionResult

type AssertionResult struct {
	Assertion   *string               `json:"assertion,omitempty"`
	AllPassed   *bool                 `json:"allPassed,omitempty"`
	SpanResults []AssertionSpanResult `json:"spanResults,omitempty"`
}

AssertionResult struct for AssertionResult

func NewAssertionResult

func NewAssertionResult() *AssertionResult

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

func NewAssertionResultWithDefaults

func NewAssertionResultWithDefaults() *AssertionResult

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

func (*AssertionResult) GetAllPassed

func (o *AssertionResult) GetAllPassed() bool

GetAllPassed returns the AllPassed field value if set, zero value otherwise.

func (*AssertionResult) GetAllPassedOk

func (o *AssertionResult) GetAllPassedOk() (*bool, bool)

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

func (*AssertionResult) GetAssertion

func (o *AssertionResult) GetAssertion() string

GetAssertion returns the Assertion field value if set, zero value otherwise.

func (*AssertionResult) GetAssertionOk

func (o *AssertionResult) GetAssertionOk() (*string, bool)

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

func (*AssertionResult) GetSpanResults

func (o *AssertionResult) GetSpanResults() []AssertionSpanResult

GetSpanResults returns the SpanResults field value if set, zero value otherwise.

func (*AssertionResult) GetSpanResultsOk

func (o *AssertionResult) GetSpanResultsOk() ([]AssertionSpanResult, bool)

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

func (*AssertionResult) HasAllPassed

func (o *AssertionResult) HasAllPassed() bool

HasAllPassed returns a boolean if a field has been set.

func (*AssertionResult) HasAssertion

func (o *AssertionResult) HasAssertion() bool

HasAssertion returns a boolean if a field has been set.

func (*AssertionResult) HasSpanResults

func (o *AssertionResult) HasSpanResults() bool

HasSpanResults returns a boolean if a field has been set.

func (AssertionResult) MarshalJSON

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

func (*AssertionResult) SetAllPassed

func (o *AssertionResult) SetAllPassed(v bool)

SetAllPassed gets a reference to the given bool and assigns it to the AllPassed field.

func (*AssertionResult) SetAssertion

func (o *AssertionResult) SetAssertion(v string)

SetAssertion gets a reference to the given string and assigns it to the Assertion field.

func (*AssertionResult) SetSpanResults

func (o *AssertionResult) SetSpanResults(v []AssertionSpanResult)

SetSpanResults gets a reference to the given []AssertionSpanResult and assigns it to the SpanResults field.

func (AssertionResult) ToMap added in v0.1.7

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

type AssertionResults

type AssertionResults struct {
	AllPassed *bool                          `json:"allPassed,omitempty"`
	Results   []AssertionResultsResultsInner `json:"results,omitempty"`
}

AssertionResults struct for AssertionResults

func NewAssertionResults

func NewAssertionResults() *AssertionResults

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

func NewAssertionResultsWithDefaults

func NewAssertionResultsWithDefaults() *AssertionResults

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

func (*AssertionResults) GetAllPassed

func (o *AssertionResults) GetAllPassed() bool

GetAllPassed returns the AllPassed field value if set, zero value otherwise.

func (*AssertionResults) GetAllPassedOk

func (o *AssertionResults) GetAllPassedOk() (*bool, bool)

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

func (*AssertionResults) GetResults

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

func (*AssertionResults) GetResultsOk

func (o *AssertionResults) GetResultsOk() ([]AssertionResultsResultsInner, 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 (*AssertionResults) HasAllPassed

func (o *AssertionResults) HasAllPassed() bool

HasAllPassed returns a boolean if a field has been set.

func (*AssertionResults) HasResults

func (o *AssertionResults) HasResults() bool

HasResults returns a boolean if a field has been set.

func (AssertionResults) MarshalJSON

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

func (*AssertionResults) SetAllPassed

func (o *AssertionResults) SetAllPassed(v bool)

SetAllPassed gets a reference to the given bool and assigns it to the AllPassed field.

func (*AssertionResults) SetResults

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

func (AssertionResults) ToMap added in v0.1.7

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

type AssertionResultsResultsInner added in v0.1.7

type AssertionResultsResultsInner struct {
	Selector *Selector         `json:"selector,omitempty"`
	Results  []AssertionResult `json:"results,omitempty"`
}

AssertionResultsResultsInner struct for AssertionResultsResultsInner

func NewAssertionResultsResultsInner added in v0.1.7

func NewAssertionResultsResultsInner() *AssertionResultsResultsInner

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

func NewAssertionResultsResultsInnerWithDefaults added in v0.1.7

func NewAssertionResultsResultsInnerWithDefaults() *AssertionResultsResultsInner

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

func (*AssertionResultsResultsInner) GetResults added in v0.1.7

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

func (*AssertionResultsResultsInner) GetResultsOk added in v0.1.7

func (o *AssertionResultsResultsInner) GetResultsOk() ([]AssertionResult, 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 (*AssertionResultsResultsInner) GetSelector added in v0.1.7

func (o *AssertionResultsResultsInner) GetSelector() Selector

GetSelector returns the Selector field value if set, zero value otherwise.

func (*AssertionResultsResultsInner) GetSelectorOk added in v0.1.7

func (o *AssertionResultsResultsInner) GetSelectorOk() (*Selector, bool)

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

func (*AssertionResultsResultsInner) HasResults added in v0.1.7

func (o *AssertionResultsResultsInner) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*AssertionResultsResultsInner) HasSelector added in v0.1.7

func (o *AssertionResultsResultsInner) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (AssertionResultsResultsInner) MarshalJSON added in v0.1.7

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

func (*AssertionResultsResultsInner) SetResults added in v0.1.7

func (o *AssertionResultsResultsInner) SetResults(v []AssertionResult)

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

func (*AssertionResultsResultsInner) SetSelector added in v0.1.7

func (o *AssertionResultsResultsInner) SetSelector(v Selector)

SetSelector gets a reference to the given Selector and assigns it to the Selector field.

func (AssertionResultsResultsInner) ToMap added in v0.1.7

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

type AssertionSpanResult

type AssertionSpanResult struct {
	SpanId        *string `json:"spanId,omitempty"`
	ObservedValue *string `json:"observedValue,omitempty"`
	Passed        *bool   `json:"passed,omitempty"`
	Error         *string `json:"error,omitempty"`
}

AssertionSpanResult struct for AssertionSpanResult

func NewAssertionSpanResult

func NewAssertionSpanResult() *AssertionSpanResult

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

func NewAssertionSpanResultWithDefaults

func NewAssertionSpanResultWithDefaults() *AssertionSpanResult

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

func (*AssertionSpanResult) GetError

func (o *AssertionSpanResult) GetError() string

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

func (*AssertionSpanResult) GetErrorOk

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

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

func (*AssertionSpanResult) GetObservedValue

func (o *AssertionSpanResult) GetObservedValue() string

GetObservedValue returns the ObservedValue field value if set, zero value otherwise.

func (*AssertionSpanResult) GetObservedValueOk

func (o *AssertionSpanResult) GetObservedValueOk() (*string, bool)

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

func (*AssertionSpanResult) GetPassed

func (o *AssertionSpanResult) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*AssertionSpanResult) GetPassedOk

func (o *AssertionSpanResult) GetPassedOk() (*bool, bool)

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

func (*AssertionSpanResult) GetSpanId

func (o *AssertionSpanResult) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*AssertionSpanResult) GetSpanIdOk

func (o *AssertionSpanResult) GetSpanIdOk() (*string, bool)

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

func (*AssertionSpanResult) HasError

func (o *AssertionSpanResult) HasError() bool

HasError returns a boolean if a field has been set.

func (*AssertionSpanResult) HasObservedValue

func (o *AssertionSpanResult) HasObservedValue() bool

HasObservedValue returns a boolean if a field has been set.

func (*AssertionSpanResult) HasPassed

func (o *AssertionSpanResult) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*AssertionSpanResult) HasSpanId

func (o *AssertionSpanResult) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (AssertionSpanResult) MarshalJSON

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

func (*AssertionSpanResult) SetError

func (o *AssertionSpanResult) SetError(v string)

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

func (*AssertionSpanResult) SetObservedValue

func (o *AssertionSpanResult) SetObservedValue(v string)

SetObservedValue gets a reference to the given string and assigns it to the ObservedValue field.

func (*AssertionSpanResult) SetPassed

func (o *AssertionSpanResult) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*AssertionSpanResult) SetSpanId

func (o *AssertionSpanResult) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (AssertionSpanResult) ToMap added in v0.1.7

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

type AwsXRay added in v0.1.7

type AwsXRay struct {
	Region          *string `json:"region,omitempty"`
	AccessKeyId     *string `json:"accessKeyId,omitempty"`
	SecretAccessKey *string `json:"secretAccessKey,omitempty"`
	SessionToken    *string `json:"sessionToken,omitempty"`
	UseDefaultAuth  *bool   `json:"useDefaultAuth,omitempty"`
}

AwsXRay struct for AwsXRay

func NewAwsXRay added in v0.1.7

func NewAwsXRay() *AwsXRay

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

func NewAwsXRayWithDefaults added in v0.1.7

func NewAwsXRayWithDefaults() *AwsXRay

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

func (*AwsXRay) GetAccessKeyId added in v0.1.7

func (o *AwsXRay) GetAccessKeyId() string

GetAccessKeyId returns the AccessKeyId field value if set, zero value otherwise.

func (*AwsXRay) GetAccessKeyIdOk added in v0.1.7

func (o *AwsXRay) GetAccessKeyIdOk() (*string, bool)

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

func (*AwsXRay) GetRegion added in v0.1.7

func (o *AwsXRay) GetRegion() string

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

func (*AwsXRay) GetRegionOk added in v0.1.7

func (o *AwsXRay) 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 (*AwsXRay) GetSecretAccessKey added in v0.1.7

func (o *AwsXRay) GetSecretAccessKey() string

GetSecretAccessKey returns the SecretAccessKey field value if set, zero value otherwise.

func (*AwsXRay) GetSecretAccessKeyOk added in v0.1.7

func (o *AwsXRay) GetSecretAccessKeyOk() (*string, bool)

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

func (*AwsXRay) GetSessionToken added in v0.1.7

func (o *AwsXRay) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*AwsXRay) GetSessionTokenOk added in v0.1.7

func (o *AwsXRay) GetSessionTokenOk() (*string, bool)

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

func (*AwsXRay) GetUseDefaultAuth added in v0.1.7

func (o *AwsXRay) GetUseDefaultAuth() bool

GetUseDefaultAuth returns the UseDefaultAuth field value if set, zero value otherwise.

func (*AwsXRay) GetUseDefaultAuthOk added in v0.1.7

func (o *AwsXRay) GetUseDefaultAuthOk() (*bool, bool)

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

func (*AwsXRay) HasAccessKeyId added in v0.1.7

func (o *AwsXRay) HasAccessKeyId() bool

HasAccessKeyId returns a boolean if a field has been set.

func (*AwsXRay) HasRegion added in v0.1.7

func (o *AwsXRay) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*AwsXRay) HasSecretAccessKey added in v0.1.7

func (o *AwsXRay) HasSecretAccessKey() bool

HasSecretAccessKey returns a boolean if a field has been set.

func (*AwsXRay) HasSessionToken added in v0.1.7

func (o *AwsXRay) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (*AwsXRay) HasUseDefaultAuth added in v0.1.7

func (o *AwsXRay) HasUseDefaultAuth() bool

HasUseDefaultAuth returns a boolean if a field has been set.

func (AwsXRay) MarshalJSON added in v0.1.7

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

func (*AwsXRay) SetAccessKeyId added in v0.1.7

func (o *AwsXRay) SetAccessKeyId(v string)

SetAccessKeyId gets a reference to the given string and assigns it to the AccessKeyId field.

func (*AwsXRay) SetRegion added in v0.1.7

func (o *AwsXRay) SetRegion(v string)

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

func (*AwsXRay) SetSecretAccessKey added in v0.1.7

func (o *AwsXRay) SetSecretAccessKey(v string)

SetSecretAccessKey gets a reference to the given string and assigns it to the SecretAccessKey field.

func (*AwsXRay) SetSessionToken added in v0.1.7

func (o *AwsXRay) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (*AwsXRay) SetUseDefaultAuth added in v0.1.7

func (o *AwsXRay) SetUseDefaultAuth(v bool)

SetUseDefaultAuth gets a reference to the given bool and assigns it to the UseDefaultAuth field.

func (AwsXRay) ToMap added in v0.1.7

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

type AzureAppInsights added in v0.1.7

type AzureAppInsights struct {
	UseAzureActiveDirectoryAuth *bool                     `json:"useAzureActiveDirectoryAuth,omitempty"`
	AccessToken                 *string                   `json:"accessToken,omitempty"`
	ConnectionType              *SupportedConnectionTypes `json:"connectionType,omitempty"`
	ResourceArmId               *string                   `json:"resourceArmId,omitempty"`
}

AzureAppInsights struct for AzureAppInsights

func NewAzureAppInsights added in v0.1.7

func NewAzureAppInsights() *AzureAppInsights

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

func NewAzureAppInsightsWithDefaults added in v0.1.7

func NewAzureAppInsightsWithDefaults() *AzureAppInsights

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

func (*AzureAppInsights) GetAccessToken added in v0.1.7

func (o *AzureAppInsights) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*AzureAppInsights) GetAccessTokenOk added in v0.1.7

func (o *AzureAppInsights) GetAccessTokenOk() (*string, bool)

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

func (*AzureAppInsights) GetConnectionType added in v0.1.7

func (o *AzureAppInsights) GetConnectionType() SupportedConnectionTypes

GetConnectionType returns the ConnectionType field value if set, zero value otherwise.

func (*AzureAppInsights) GetConnectionTypeOk added in v0.1.7

func (o *AzureAppInsights) GetConnectionTypeOk() (*SupportedConnectionTypes, bool)

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

func (*AzureAppInsights) GetResourceArmId added in v0.1.7

func (o *AzureAppInsights) GetResourceArmId() string

GetResourceArmId returns the ResourceArmId field value if set, zero value otherwise.

func (*AzureAppInsights) GetResourceArmIdOk added in v0.1.7

func (o *AzureAppInsights) GetResourceArmIdOk() (*string, bool)

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

func (*AzureAppInsights) GetUseAzureActiveDirectoryAuth added in v0.1.7

func (o *AzureAppInsights) GetUseAzureActiveDirectoryAuth() bool

GetUseAzureActiveDirectoryAuth returns the UseAzureActiveDirectoryAuth field value if set, zero value otherwise.

func (*AzureAppInsights) GetUseAzureActiveDirectoryAuthOk added in v0.1.7

func (o *AzureAppInsights) GetUseAzureActiveDirectoryAuthOk() (*bool, bool)

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

func (*AzureAppInsights) HasAccessToken added in v0.1.7

func (o *AzureAppInsights) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*AzureAppInsights) HasConnectionType added in v0.1.7

func (o *AzureAppInsights) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

func (*AzureAppInsights) HasResourceArmId added in v0.1.7

func (o *AzureAppInsights) HasResourceArmId() bool

HasResourceArmId returns a boolean if a field has been set.

func (*AzureAppInsights) HasUseAzureActiveDirectoryAuth added in v0.1.7

func (o *AzureAppInsights) HasUseAzureActiveDirectoryAuth() bool

HasUseAzureActiveDirectoryAuth returns a boolean if a field has been set.

func (AzureAppInsights) MarshalJSON added in v0.1.7

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

func (*AzureAppInsights) SetAccessToken added in v0.1.7

func (o *AzureAppInsights) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*AzureAppInsights) SetConnectionType added in v0.1.7

func (o *AzureAppInsights) SetConnectionType(v SupportedConnectionTypes)

SetConnectionType gets a reference to the given SupportedConnectionTypes and assigns it to the ConnectionType field.

func (*AzureAppInsights) SetResourceArmId added in v0.1.7

func (o *AzureAppInsights) SetResourceArmId(v string)

SetResourceArmId gets a reference to the given string and assigns it to the ResourceArmId field.

func (*AzureAppInsights) SetUseAzureActiveDirectoryAuth added in v0.1.7

func (o *AzureAppInsights) SetUseAzureActiveDirectoryAuth(v bool)

SetUseAzureActiveDirectoryAuth gets a reference to the given bool and assigns it to the UseAzureActiveDirectoryAuth field.

func (AzureAppInsights) ToMap added in v0.1.7

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

type BaseClient added in v0.1.7

type BaseClient struct {
	Type *SupportedClients   `json:"type,omitempty"`
	Http *HTTPClientSettings `json:"http,omitempty"`
	Grpc *GRPCClientSettings `json:"grpc,omitempty"`
}

BaseClient struct for BaseClient

func NewBaseClient added in v0.1.7

func NewBaseClient() *BaseClient

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

func NewBaseClientWithDefaults added in v0.1.7

func NewBaseClientWithDefaults() *BaseClient

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

func (*BaseClient) GetGrpc added in v0.1.7

func (o *BaseClient) GetGrpc() GRPCClientSettings

GetGrpc returns the Grpc field value if set, zero value otherwise.

func (*BaseClient) GetGrpcOk added in v0.1.7

func (o *BaseClient) GetGrpcOk() (*GRPCClientSettings, bool)

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

func (*BaseClient) GetHttp added in v0.1.7

func (o *BaseClient) GetHttp() HTTPClientSettings

GetHttp returns the Http field value if set, zero value otherwise.

func (*BaseClient) GetHttpOk added in v0.1.7

func (o *BaseClient) GetHttpOk() (*HTTPClientSettings, bool)

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

func (*BaseClient) GetType added in v0.1.7

func (o *BaseClient) GetType() SupportedClients

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

func (*BaseClient) GetTypeOk added in v0.1.7

func (o *BaseClient) GetTypeOk() (*SupportedClients, bool)

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

func (*BaseClient) HasGrpc added in v0.1.7

func (o *BaseClient) HasGrpc() bool

HasGrpc returns a boolean if a field has been set.

func (*BaseClient) HasHttp added in v0.1.7

func (o *BaseClient) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*BaseClient) HasType added in v0.1.7

func (o *BaseClient) HasType() bool

HasType returns a boolean if a field has been set.

func (BaseClient) MarshalJSON added in v0.1.7

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

func (*BaseClient) SetGrpc added in v0.1.7

func (o *BaseClient) SetGrpc(v GRPCClientSettings)

SetGrpc gets a reference to the given GRPCClientSettings and assigns it to the Grpc field.

func (*BaseClient) SetHttp added in v0.1.7

func (o *BaseClient) SetHttp(v HTTPClientSettings)

SetHttp gets a reference to the given HTTPClientSettings and assigns it to the Http field.

func (*BaseClient) SetType added in v0.1.7

func (o *BaseClient) SetType(v SupportedClients)

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

func (BaseClient) ToMap added in v0.1.7

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

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 ConfigurationResource added in v0.1.7

type ConfigurationResource struct {
	// Represents the type of this resource. It should always be set as 'Config'.
	Type *string                    `json:"type,omitempty"`
	Spec *ConfigurationResourceSpec `json:"spec,omitempty"`
}

ConfigurationResource Represents a configuration structured into the Resources format.

func NewConfigurationResource added in v0.1.7

func NewConfigurationResource() *ConfigurationResource

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

func NewConfigurationResourceWithDefaults added in v0.1.7

func NewConfigurationResourceWithDefaults() *ConfigurationResource

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

func (*ConfigurationResource) GetSpec added in v0.1.7

GetSpec returns the Spec field value if set, zero value otherwise.

func (*ConfigurationResource) GetSpecOk added in v0.1.7

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

func (*ConfigurationResource) GetType added in v0.1.7

func (o *ConfigurationResource) GetType() string

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

func (*ConfigurationResource) GetTypeOk added in v0.1.7

func (o *ConfigurationResource) GetTypeOk() (*string, bool)

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

func (*ConfigurationResource) HasSpec added in v0.1.7

func (o *ConfigurationResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*ConfigurationResource) HasType added in v0.1.7

func (o *ConfigurationResource) HasType() bool

HasType returns a boolean if a field has been set.

func (ConfigurationResource) MarshalJSON added in v0.1.7

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

func (*ConfigurationResource) SetSpec added in v0.1.7

SetSpec gets a reference to the given ConfigurationResourceSpec and assigns it to the Spec field.

func (*ConfigurationResource) SetType added in v0.1.7

func (o *ConfigurationResource) SetType(v string)

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

func (ConfigurationResource) ToMap added in v0.1.7

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

type ConfigurationResourceList added in v0.1.7

type ConfigurationResourceList struct {
	Count *int32                  `json:"count,omitempty"`
	Items []ConfigurationResource `json:"items,omitempty"`
}

ConfigurationResourceList struct for ConfigurationResourceList

func NewConfigurationResourceList added in v0.1.7

func NewConfigurationResourceList() *ConfigurationResourceList

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

func NewConfigurationResourceListWithDefaults added in v0.1.7

func NewConfigurationResourceListWithDefaults() *ConfigurationResourceList

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

func (*ConfigurationResourceList) GetCount added in v0.1.7

func (o *ConfigurationResourceList) GetCount() int32

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

func (*ConfigurationResourceList) GetCountOk added in v0.1.7

func (o *ConfigurationResourceList) 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.

func (*ConfigurationResourceList) GetItems added in v0.1.7

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

func (*ConfigurationResourceList) GetItemsOk added in v0.1.7

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

func (*ConfigurationResourceList) HasCount added in v0.1.7

func (o *ConfigurationResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ConfigurationResourceList) HasItems added in v0.1.7

func (o *ConfigurationResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConfigurationResourceList) MarshalJSON added in v0.1.7

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

func (*ConfigurationResourceList) SetCount added in v0.1.7

func (o *ConfigurationResourceList) SetCount(v int32)

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

func (*ConfigurationResourceList) SetItems added in v0.1.7

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

func (ConfigurationResourceList) ToMap added in v0.1.7

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

type ConfigurationResourceSpec added in v0.1.7

type ConfigurationResourceSpec struct {
	// ID of the configuration resource. It should always be set as 'current'.
	Id *string `json:"id,omitempty"`
	// Name given for this configuration set. It should always be set as 'Config'.
	Name *string `json:"name,omitempty"`
	// Flag telling if a user allow Tracetest to send analytics about its usage.
	AnalyticsEnabled bool `json:"analyticsEnabled"`
}

ConfigurationResourceSpec Represents the set of configuration common options for Tracetest.

func NewConfigurationResourceSpec added in v0.1.7

func NewConfigurationResourceSpec(analyticsEnabled bool) *ConfigurationResourceSpec

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

func NewConfigurationResourceSpecWithDefaults added in v0.1.7

func NewConfigurationResourceSpecWithDefaults() *ConfigurationResourceSpec

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

func (*ConfigurationResourceSpec) GetAnalyticsEnabled added in v0.1.7

func (o *ConfigurationResourceSpec) GetAnalyticsEnabled() bool

GetAnalyticsEnabled returns the AnalyticsEnabled field value

func (*ConfigurationResourceSpec) GetAnalyticsEnabledOk added in v0.1.7

func (o *ConfigurationResourceSpec) GetAnalyticsEnabledOk() (*bool, bool)

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

func (*ConfigurationResourceSpec) GetId added in v0.1.7

func (o *ConfigurationResourceSpec) GetId() string

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

func (*ConfigurationResourceSpec) GetIdOk added in v0.1.7

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

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

func (*ConfigurationResourceSpec) GetName added in v0.1.7

func (o *ConfigurationResourceSpec) GetName() string

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

func (*ConfigurationResourceSpec) GetNameOk added in v0.1.7

func (o *ConfigurationResourceSpec) 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 (*ConfigurationResourceSpec) HasId added in v0.1.7

func (o *ConfigurationResourceSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*ConfigurationResourceSpec) HasName added in v0.1.7

func (o *ConfigurationResourceSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (ConfigurationResourceSpec) MarshalJSON added in v0.1.7

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

func (*ConfigurationResourceSpec) SetAnalyticsEnabled added in v0.1.7

func (o *ConfigurationResourceSpec) SetAnalyticsEnabled(v bool)

SetAnalyticsEnabled sets field value

func (*ConfigurationResourceSpec) SetId added in v0.1.7

func (o *ConfigurationResourceSpec) SetId(v string)

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

func (*ConfigurationResourceSpec) SetName added in v0.1.7

func (o *ConfigurationResourceSpec) SetName(v string)

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

func (ConfigurationResourceSpec) ToMap added in v0.1.7

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

type ConnectionResult

type ConnectionResult struct {
	PortCheck      *ConnectionTestStep `json:"portCheck,omitempty"`
	Connectivity   *ConnectionTestStep `json:"connectivity,omitempty"`
	Authentication *ConnectionTestStep `json:"authentication,omitempty"`
	FetchTraces    *ConnectionTestStep `json:"fetchTraces,omitempty"`
}

ConnectionResult struct for ConnectionResult

func NewConnectionResult

func NewConnectionResult() *ConnectionResult

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

func NewConnectionResultWithDefaults

func NewConnectionResultWithDefaults() *ConnectionResult

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

func (*ConnectionResult) GetAuthentication

func (o *ConnectionResult) GetAuthentication() ConnectionTestStep

GetAuthentication returns the Authentication field value if set, zero value otherwise.

func (*ConnectionResult) GetAuthenticationOk

func (o *ConnectionResult) GetAuthenticationOk() (*ConnectionTestStep, bool)

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

func (*ConnectionResult) GetConnectivity

func (o *ConnectionResult) GetConnectivity() ConnectionTestStep

GetConnectivity returns the Connectivity field value if set, zero value otherwise.

func (*ConnectionResult) GetConnectivityOk

func (o *ConnectionResult) GetConnectivityOk() (*ConnectionTestStep, bool)

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

func (*ConnectionResult) GetFetchTraces

func (o *ConnectionResult) GetFetchTraces() ConnectionTestStep

GetFetchTraces returns the FetchTraces field value if set, zero value otherwise.

func (*ConnectionResult) GetFetchTracesOk

func (o *ConnectionResult) GetFetchTracesOk() (*ConnectionTestStep, bool)

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

func (*ConnectionResult) GetPortCheck added in v0.1.7

func (o *ConnectionResult) GetPortCheck() ConnectionTestStep

GetPortCheck returns the PortCheck field value if set, zero value otherwise.

func (*ConnectionResult) GetPortCheckOk added in v0.1.7

func (o *ConnectionResult) GetPortCheckOk() (*ConnectionTestStep, bool)

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

func (*ConnectionResult) HasAuthentication

func (o *ConnectionResult) HasAuthentication() bool

HasAuthentication returns a boolean if a field has been set.

func (*ConnectionResult) HasConnectivity

func (o *ConnectionResult) HasConnectivity() bool

HasConnectivity returns a boolean if a field has been set.

func (*ConnectionResult) HasFetchTraces

func (o *ConnectionResult) HasFetchTraces() bool

HasFetchTraces returns a boolean if a field has been set.

func (*ConnectionResult) HasPortCheck added in v0.1.7

func (o *ConnectionResult) HasPortCheck() bool

HasPortCheck returns a boolean if a field has been set.

func (ConnectionResult) MarshalJSON

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

func (*ConnectionResult) SetAuthentication

func (o *ConnectionResult) SetAuthentication(v ConnectionTestStep)

SetAuthentication gets a reference to the given ConnectionTestStep and assigns it to the Authentication field.

func (*ConnectionResult) SetConnectivity

func (o *ConnectionResult) SetConnectivity(v ConnectionTestStep)

SetConnectivity gets a reference to the given ConnectionTestStep and assigns it to the Connectivity field.

func (*ConnectionResult) SetFetchTraces

func (o *ConnectionResult) SetFetchTraces(v ConnectionTestStep)

SetFetchTraces gets a reference to the given ConnectionTestStep and assigns it to the FetchTraces field.

func (*ConnectionResult) SetPortCheck added in v0.1.7

func (o *ConnectionResult) SetPortCheck(v ConnectionTestStep)

SetPortCheck gets a reference to the given ConnectionTestStep and assigns it to the PortCheck field.

func (ConnectionResult) ToMap added in v0.1.7

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

type ConnectionTestStep

type ConnectionTestStep struct {
	Passed  *bool   `json:"passed,omitempty"`
	Status  *string `json:"status,omitempty"`
	Message *string `json:"message,omitempty"`
	Error   *string `json:"error,omitempty"`
}

ConnectionTestStep struct for ConnectionTestStep

func NewConnectionTestStep

func NewConnectionTestStep() *ConnectionTestStep

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

func NewConnectionTestStepWithDefaults

func NewConnectionTestStepWithDefaults() *ConnectionTestStep

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

func (*ConnectionTestStep) GetError

func (o *ConnectionTestStep) GetError() string

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

func (*ConnectionTestStep) GetErrorOk

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

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

func (*ConnectionTestStep) GetMessage

func (o *ConnectionTestStep) GetMessage() string

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

func (*ConnectionTestStep) GetMessageOk

func (o *ConnectionTestStep) GetMessageOk() (*string, bool)

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

func (*ConnectionTestStep) GetPassed

func (o *ConnectionTestStep) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*ConnectionTestStep) GetPassedOk

func (o *ConnectionTestStep) GetPassedOk() (*bool, bool)

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

func (*ConnectionTestStep) GetStatus added in v0.1.7

func (o *ConnectionTestStep) GetStatus() string

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

func (*ConnectionTestStep) GetStatusOk added in v0.1.7

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

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

func (*ConnectionTestStep) HasError

func (o *ConnectionTestStep) HasError() bool

HasError returns a boolean if a field has been set.

func (*ConnectionTestStep) HasMessage

func (o *ConnectionTestStep) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ConnectionTestStep) HasPassed

func (o *ConnectionTestStep) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*ConnectionTestStep) HasStatus added in v0.1.7

func (o *ConnectionTestStep) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectionTestStep) MarshalJSON

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

func (*ConnectionTestStep) SetError

func (o *ConnectionTestStep) SetError(v string)

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

func (*ConnectionTestStep) SetMessage

func (o *ConnectionTestStep) SetMessage(v string)

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

func (*ConnectionTestStep) SetPassed

func (o *ConnectionTestStep) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*ConnectionTestStep) SetStatus added in v0.1.7

func (o *ConnectionTestStep) SetStatus(v string)

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

func (ConnectionTestStep) ToMap added in v0.1.7

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

type DataStore

type DataStore struct {
	Id               *string             `json:"id,omitempty"`
	Name             string              `json:"name"`
	Type             SupportedDataStores `json:"type"`
	Default          *bool               `json:"default,omitempty"`
	Jaeger           *GRPCClientSettings `json:"jaeger,omitempty"`
	Tempo            *BaseClient         `json:"tempo,omitempty"`
	Opensearch       *ElasticSearch      `json:"opensearch,omitempty"`
	Elasticapm       *ElasticSearch      `json:"elasticapm,omitempty"`
	Signalfx         *SignalFX           `json:"signalfx,omitempty"`
	Awsxray          *AwsXRay            `json:"awsxray,omitempty"`
	Azureappinsights *AzureAppInsights   `json:"azureappinsights,omitempty"`
	CreatedAt        *time.Time          `json:"createdAt,omitempty"`
}

DataStore struct for DataStore

func NewDataStore

func NewDataStore(name string, type_ SupportedDataStores) *DataStore

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

func NewDataStoreWithDefaults

func NewDataStoreWithDefaults() *DataStore

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

func (*DataStore) GetAwsxray added in v0.1.7

func (o *DataStore) GetAwsxray() AwsXRay

GetAwsxray returns the Awsxray field value if set, zero value otherwise.

func (*DataStore) GetAwsxrayOk added in v0.1.7

func (o *DataStore) GetAwsxrayOk() (*AwsXRay, bool)

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

func (*DataStore) GetAzureappinsights added in v0.1.7

func (o *DataStore) GetAzureappinsights() AzureAppInsights

GetAzureappinsights returns the Azureappinsights field value if set, zero value otherwise.

func (*DataStore) GetAzureappinsightsOk added in v0.1.7

func (o *DataStore) GetAzureappinsightsOk() (*AzureAppInsights, bool)

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

func (*DataStore) GetCreatedAt

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

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

func (*DataStore) GetCreatedAtOk

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

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

func (*DataStore) GetDefault added in v0.1.7

func (o *DataStore) GetDefault() bool

GetDefault returns the Default field value if set, zero value otherwise.

func (*DataStore) GetDefaultOk added in v0.1.7

func (o *DataStore) GetDefaultOk() (*bool, bool)

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

func (*DataStore) GetElasticapm added in v0.1.7

func (o *DataStore) GetElasticapm() ElasticSearch

GetElasticapm returns the Elasticapm field value if set, zero value otherwise.

func (*DataStore) GetElasticapmOk added in v0.1.7

func (o *DataStore) GetElasticapmOk() (*ElasticSearch, bool)

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

func (*DataStore) GetId

func (o *DataStore) GetId() string

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

func (*DataStore) GetIdOk

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

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

func (*DataStore) GetJaeger

func (o *DataStore) GetJaeger() GRPCClientSettings

GetJaeger returns the Jaeger field value if set, zero value otherwise.

func (*DataStore) GetJaegerOk

func (o *DataStore) GetJaegerOk() (*GRPCClientSettings, bool)

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

func (*DataStore) GetName

func (o *DataStore) GetName() string

GetName returns the Name field value

func (*DataStore) GetNameOk

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

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

func (*DataStore) GetOpensearch added in v0.1.7

func (o *DataStore) GetOpensearch() ElasticSearch

GetOpensearch returns the Opensearch field value if set, zero value otherwise.

func (*DataStore) GetOpensearchOk added in v0.1.7

func (o *DataStore) GetOpensearchOk() (*ElasticSearch, bool)

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

func (*DataStore) GetSignalfx added in v0.1.7

func (o *DataStore) GetSignalfx() SignalFX

GetSignalfx returns the Signalfx field value if set, zero value otherwise.

func (*DataStore) GetSignalfxOk added in v0.1.7

func (o *DataStore) GetSignalfxOk() (*SignalFX, bool)

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

func (*DataStore) GetTempo

func (o *DataStore) GetTempo() BaseClient

GetTempo returns the Tempo field value if set, zero value otherwise.

func (*DataStore) GetTempoOk

func (o *DataStore) GetTempoOk() (*BaseClient, bool)

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

func (*DataStore) GetType

func (o *DataStore) GetType() SupportedDataStores

GetType returns the Type field value

func (*DataStore) GetTypeOk

func (o *DataStore) GetTypeOk() (*SupportedDataStores, bool)

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

func (*DataStore) HasAwsxray added in v0.1.7

func (o *DataStore) HasAwsxray() bool

HasAwsxray returns a boolean if a field has been set.

func (*DataStore) HasAzureappinsights added in v0.1.7

func (o *DataStore) HasAzureappinsights() bool

HasAzureappinsights returns a boolean if a field has been set.

func (*DataStore) HasCreatedAt

func (o *DataStore) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DataStore) HasDefault added in v0.1.7

func (o *DataStore) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*DataStore) HasElasticapm added in v0.1.7

func (o *DataStore) HasElasticapm() bool

HasElasticapm returns a boolean if a field has been set.

func (*DataStore) HasId

func (o *DataStore) HasId() bool

HasId returns a boolean if a field has been set.

func (*DataStore) HasJaeger

func (o *DataStore) HasJaeger() bool

HasJaeger returns a boolean if a field has been set.

func (*DataStore) HasOpensearch added in v0.1.7

func (o *DataStore) HasOpensearch() bool

HasOpensearch returns a boolean if a field has been set.

func (*DataStore) HasSignalfx added in v0.1.7

func (o *DataStore) HasSignalfx() bool

HasSignalfx returns a boolean if a field has been set.

func (*DataStore) HasTempo

func (o *DataStore) HasTempo() bool

HasTempo returns a boolean if a field has been set.

func (DataStore) MarshalJSON

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

func (*DataStore) SetAwsxray added in v0.1.7

func (o *DataStore) SetAwsxray(v AwsXRay)

SetAwsxray gets a reference to the given AwsXRay and assigns it to the Awsxray field.

func (*DataStore) SetAzureappinsights added in v0.1.7

func (o *DataStore) SetAzureappinsights(v AzureAppInsights)

SetAzureappinsights gets a reference to the given AzureAppInsights and assigns it to the Azureappinsights field.

func (*DataStore) SetCreatedAt

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

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

func (*DataStore) SetDefault added in v0.1.7

func (o *DataStore) SetDefault(v bool)

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*DataStore) SetElasticapm added in v0.1.7

func (o *DataStore) SetElasticapm(v ElasticSearch)

SetElasticapm gets a reference to the given ElasticSearch and assigns it to the Elasticapm field.

func (*DataStore) SetId

func (o *DataStore) SetId(v string)

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

func (*DataStore) SetJaeger

func (o *DataStore) SetJaeger(v GRPCClientSettings)

SetJaeger gets a reference to the given GRPCClientSettings and assigns it to the Jaeger field.

func (*DataStore) SetName

func (o *DataStore) SetName(v string)

SetName sets field value

func (*DataStore) SetOpensearch added in v0.1.7

func (o *DataStore) SetOpensearch(v ElasticSearch)

SetOpensearch gets a reference to the given ElasticSearch and assigns it to the Opensearch field.

func (*DataStore) SetSignalfx added in v0.1.7

func (o *DataStore) SetSignalfx(v SignalFX)

SetSignalfx gets a reference to the given SignalFX and assigns it to the Signalfx field.

func (*DataStore) SetTempo

func (o *DataStore) SetTempo(v BaseClient)

SetTempo gets a reference to the given BaseClient and assigns it to the Tempo field.

func (*DataStore) SetType

func (o *DataStore) SetType(v SupportedDataStores)

SetType sets field value

func (DataStore) ToMap added in v0.1.7

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

type DataStoreList added in v0.1.7

type DataStoreList struct {
	Count *int32              `json:"count,omitempty"`
	Items []DataStoreResource `json:"items,omitempty"`
}

DataStoreList struct for DataStoreList

func NewDataStoreList added in v0.1.7

func NewDataStoreList() *DataStoreList

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

func NewDataStoreListWithDefaults added in v0.1.7

func NewDataStoreListWithDefaults() *DataStoreList

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

func (*DataStoreList) GetCount added in v0.1.7

func (o *DataStoreList) GetCount() int32

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

func (*DataStoreList) GetCountOk added in v0.1.7

func (o *DataStoreList) 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.

func (*DataStoreList) GetItems added in v0.1.7

func (o *DataStoreList) GetItems() []DataStoreResource

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

func (*DataStoreList) GetItemsOk added in v0.1.7

func (o *DataStoreList) GetItemsOk() ([]DataStoreResource, bool)

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

func (*DataStoreList) HasCount added in v0.1.7

func (o *DataStoreList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*DataStoreList) HasItems added in v0.1.7

func (o *DataStoreList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (DataStoreList) MarshalJSON added in v0.1.7

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

func (*DataStoreList) SetCount added in v0.1.7

func (o *DataStoreList) SetCount(v int32)

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

func (*DataStoreList) SetItems added in v0.1.7

func (o *DataStoreList) SetItems(v []DataStoreResource)

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

func (DataStoreList) ToMap added in v0.1.7

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

type DataStoreResource added in v0.1.7

type DataStoreResource struct {
	// Represents the type of this resource. It should always be set as 'DataStore'.
	Type *string    `json:"type,omitempty"`
	Spec *DataStore `json:"spec,omitempty"`
}

DataStoreResource Represents a data store structured into the Resources format.

func NewDataStoreResource added in v0.1.7

func NewDataStoreResource() *DataStoreResource

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

func NewDataStoreResourceWithDefaults added in v0.1.7

func NewDataStoreResourceWithDefaults() *DataStoreResource

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

func (*DataStoreResource) GetSpec added in v0.1.7

func (o *DataStoreResource) GetSpec() DataStore

GetSpec returns the Spec field value if set, zero value otherwise.

func (*DataStoreResource) GetSpecOk added in v0.1.7

func (o *DataStoreResource) GetSpecOk() (*DataStore, bool)

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

func (*DataStoreResource) GetType added in v0.1.7

func (o *DataStoreResource) GetType() string

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

func (*DataStoreResource) GetTypeOk added in v0.1.7

func (o *DataStoreResource) GetTypeOk() (*string, bool)

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

func (*DataStoreResource) HasSpec added in v0.1.7

func (o *DataStoreResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*DataStoreResource) HasType added in v0.1.7

func (o *DataStoreResource) HasType() bool

HasType returns a boolean if a field has been set.

func (DataStoreResource) MarshalJSON added in v0.1.7

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

func (*DataStoreResource) SetSpec added in v0.1.7

func (o *DataStoreResource) SetSpec(v DataStore)

SetSpec gets a reference to the given DataStore and assigns it to the Spec field.

func (*DataStoreResource) SetType added in v0.1.7

func (o *DataStoreResource) SetType(v string)

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

func (DataStoreResource) ToMap added in v0.1.7

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

type Demo added in v0.1.7

type Demo struct {
	// Represents the type of this resource. It should always be set as 'Demo'.
	Type *string   `json:"type,omitempty"`
	Spec *DemoSpec `json:"spec,omitempty"`
}

Demo Represents a demonstration API structured into the Resources format.

func NewDemo added in v0.1.7

func NewDemo() *Demo

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

func NewDemoWithDefaults added in v0.1.7

func NewDemoWithDefaults() *Demo

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

func (*Demo) GetSpec added in v0.1.7

func (o *Demo) GetSpec() DemoSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*Demo) GetSpecOk added in v0.1.7

func (o *Demo) GetSpecOk() (*DemoSpec, bool)

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

func (*Demo) GetType added in v0.1.7

func (o *Demo) GetType() string

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

func (*Demo) GetTypeOk added in v0.1.7

func (o *Demo) GetTypeOk() (*string, bool)

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

func (*Demo) HasSpec added in v0.1.7

func (o *Demo) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*Demo) HasType added in v0.1.7

func (o *Demo) HasType() bool

HasType returns a boolean if a field has been set.

func (Demo) MarshalJSON added in v0.1.7

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

func (*Demo) SetSpec added in v0.1.7

func (o *Demo) SetSpec(v DemoSpec)

SetSpec gets a reference to the given DemoSpec and assigns it to the Spec field.

func (*Demo) SetType added in v0.1.7

func (o *Demo) SetType(v string)

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

func (Demo) ToMap added in v0.1.7

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

type DemoList added in v0.1.7

type DemoList struct {
	Count *int32 `json:"count,omitempty"`
	Items []Demo `json:"items,omitempty"`
}

DemoList struct for DemoList

func NewDemoList added in v0.1.7

func NewDemoList() *DemoList

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

func NewDemoListWithDefaults added in v0.1.7

func NewDemoListWithDefaults() *DemoList

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

func (*DemoList) GetCount added in v0.1.7

func (o *DemoList) GetCount() int32

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

func (*DemoList) GetCountOk added in v0.1.7

func (o *DemoList) 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.

func (*DemoList) GetItems added in v0.1.7

func (o *DemoList) GetItems() []Demo

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

func (*DemoList) GetItemsOk added in v0.1.7

func (o *DemoList) GetItemsOk() ([]Demo, bool)

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

func (*DemoList) HasCount added in v0.1.7

func (o *DemoList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*DemoList) HasItems added in v0.1.7

func (o *DemoList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (DemoList) MarshalJSON added in v0.1.7

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

func (*DemoList) SetCount added in v0.1.7

func (o *DemoList) SetCount(v int32)

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

func (*DemoList) SetItems added in v0.1.7

func (o *DemoList) SetItems(v []Demo)

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

func (DemoList) ToMap added in v0.1.7

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

type DemoOpenTelemetryStore added in v0.1.7

type DemoOpenTelemetryStore struct {
	// Address of the root URL for the Frontend microservice on Open Telemetry Store.
	FrontendEndpoint *string `json:"frontendEndpoint,omitempty"`
	// Address of the root URL for the Product Catalog microservice on Open Telemetry Store.
	ProductCatalogEndpoint *string `json:"productCatalogEndpoint,omitempty"`
	// Address of the root URL for the Cart microservice on Open Telemetry Store.
	CartEndpoint *string `json:"cartEndpoint,omitempty"`
	// Address of the root URL for the Checkout microservice on Open Telemetry Store.
	CheckoutEndpoint *string `json:"checkoutEndpoint,omitempty"`
}

DemoOpenTelemetryStore Represents the settings of the Open Telemetry Store demonstration.

func NewDemoOpenTelemetryStore added in v0.1.7

func NewDemoOpenTelemetryStore() *DemoOpenTelemetryStore

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

func NewDemoOpenTelemetryStoreWithDefaults added in v0.1.7

func NewDemoOpenTelemetryStoreWithDefaults() *DemoOpenTelemetryStore

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

func (*DemoOpenTelemetryStore) GetCartEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) GetCartEndpoint() string

GetCartEndpoint returns the CartEndpoint field value if set, zero value otherwise.

func (*DemoOpenTelemetryStore) GetCartEndpointOk added in v0.1.7

func (o *DemoOpenTelemetryStore) GetCartEndpointOk() (*string, bool)

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

func (*DemoOpenTelemetryStore) GetCheckoutEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) GetCheckoutEndpoint() string

GetCheckoutEndpoint returns the CheckoutEndpoint field value if set, zero value otherwise.

func (*DemoOpenTelemetryStore) GetCheckoutEndpointOk added in v0.1.7

func (o *DemoOpenTelemetryStore) GetCheckoutEndpointOk() (*string, bool)

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

func (*DemoOpenTelemetryStore) GetFrontendEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) GetFrontendEndpoint() string

GetFrontendEndpoint returns the FrontendEndpoint field value if set, zero value otherwise.

func (*DemoOpenTelemetryStore) GetFrontendEndpointOk added in v0.1.7

func (o *DemoOpenTelemetryStore) GetFrontendEndpointOk() (*string, bool)

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

func (*DemoOpenTelemetryStore) GetProductCatalogEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) GetProductCatalogEndpoint() string

GetProductCatalogEndpoint returns the ProductCatalogEndpoint field value if set, zero value otherwise.

func (*DemoOpenTelemetryStore) GetProductCatalogEndpointOk added in v0.1.7

func (o *DemoOpenTelemetryStore) GetProductCatalogEndpointOk() (*string, bool)

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

func (*DemoOpenTelemetryStore) HasCartEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) HasCartEndpoint() bool

HasCartEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasCheckoutEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) HasCheckoutEndpoint() bool

HasCheckoutEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasFrontendEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) HasFrontendEndpoint() bool

HasFrontendEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasProductCatalogEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) HasProductCatalogEndpoint() bool

HasProductCatalogEndpoint returns a boolean if a field has been set.

func (DemoOpenTelemetryStore) MarshalJSON added in v0.1.7

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

func (*DemoOpenTelemetryStore) SetCartEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) SetCartEndpoint(v string)

SetCartEndpoint gets a reference to the given string and assigns it to the CartEndpoint field.

func (*DemoOpenTelemetryStore) SetCheckoutEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) SetCheckoutEndpoint(v string)

SetCheckoutEndpoint gets a reference to the given string and assigns it to the CheckoutEndpoint field.

func (*DemoOpenTelemetryStore) SetFrontendEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) SetFrontendEndpoint(v string)

SetFrontendEndpoint gets a reference to the given string and assigns it to the FrontendEndpoint field.

func (*DemoOpenTelemetryStore) SetProductCatalogEndpoint added in v0.1.7

func (o *DemoOpenTelemetryStore) SetProductCatalogEndpoint(v string)

SetProductCatalogEndpoint gets a reference to the given string and assigns it to the ProductCatalogEndpoint field.

func (DemoOpenTelemetryStore) ToMap added in v0.1.7

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

type DemoPokeshop added in v0.1.7

type DemoPokeshop struct {
	// HTTP endpoint for Pokeshop API
	HttpEndpoint *string `json:"httpEndpoint,omitempty"`
	// gRPC endpoint for Pokeshop API
	GrpcEndpoint *string `json:"grpcEndpoint,omitempty"`
	// kafka broker for Pokeshop API
	KafkaBroker *string `json:"kafkaBroker,omitempty"`
}

DemoPokeshop Represents the settings of the Pokeshop API demonstration.

func NewDemoPokeshop added in v0.1.7

func NewDemoPokeshop() *DemoPokeshop

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

func NewDemoPokeshopWithDefaults added in v0.1.7

func NewDemoPokeshopWithDefaults() *DemoPokeshop

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

func (*DemoPokeshop) GetGrpcEndpoint added in v0.1.7

func (o *DemoPokeshop) GetGrpcEndpoint() string

GetGrpcEndpoint returns the GrpcEndpoint field value if set, zero value otherwise.

func (*DemoPokeshop) GetGrpcEndpointOk added in v0.1.7

func (o *DemoPokeshop) GetGrpcEndpointOk() (*string, bool)

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

func (*DemoPokeshop) GetHttpEndpoint added in v0.1.7

func (o *DemoPokeshop) GetHttpEndpoint() string

GetHttpEndpoint returns the HttpEndpoint field value if set, zero value otherwise.

func (*DemoPokeshop) GetHttpEndpointOk added in v0.1.7

func (o *DemoPokeshop) GetHttpEndpointOk() (*string, bool)

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

func (*DemoPokeshop) GetKafkaBroker added in v0.1.7

func (o *DemoPokeshop) GetKafkaBroker() string

GetKafkaBroker returns the KafkaBroker field value if set, zero value otherwise.

func (*DemoPokeshop) GetKafkaBrokerOk added in v0.1.7

func (o *DemoPokeshop) GetKafkaBrokerOk() (*string, bool)

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

func (*DemoPokeshop) HasGrpcEndpoint added in v0.1.7

func (o *DemoPokeshop) HasGrpcEndpoint() bool

HasGrpcEndpoint returns a boolean if a field has been set.

func (*DemoPokeshop) HasHttpEndpoint added in v0.1.7

func (o *DemoPokeshop) HasHttpEndpoint() bool

HasHttpEndpoint returns a boolean if a field has been set.

func (*DemoPokeshop) HasKafkaBroker added in v0.1.7

func (o *DemoPokeshop) HasKafkaBroker() bool

HasKafkaBroker returns a boolean if a field has been set.

func (DemoPokeshop) MarshalJSON added in v0.1.7

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

func (*DemoPokeshop) SetGrpcEndpoint added in v0.1.7

func (o *DemoPokeshop) SetGrpcEndpoint(v string)

SetGrpcEndpoint gets a reference to the given string and assigns it to the GrpcEndpoint field.

func (*DemoPokeshop) SetHttpEndpoint added in v0.1.7

func (o *DemoPokeshop) SetHttpEndpoint(v string)

SetHttpEndpoint gets a reference to the given string and assigns it to the HttpEndpoint field.

func (*DemoPokeshop) SetKafkaBroker added in v0.1.7

func (o *DemoPokeshop) SetKafkaBroker(v string)

SetKafkaBroker gets a reference to the given string and assigns it to the KafkaBroker field.

func (DemoPokeshop) ToMap added in v0.1.7

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

type DemoSpec added in v0.1.7

type DemoSpec struct {
	Id *string `json:"id,omitempty"`
	// String defining that this demo is a Open Telemetry Store demo.
	Type *string `json:"type,omitempty"`
	// Name of the demo
	Name *string `json:"name,omitempty"`
	// Flag telling if this API is enabled on Tracetest.
	Enabled            bool                    `json:"enabled"`
	Pokeshop           *DemoPokeshop           `json:"pokeshop,omitempty"`
	OpentelemetryStore *DemoOpenTelemetryStore `json:"opentelemetryStore,omitempty"`
}

DemoSpec Represents the attributes of a Demonstration API.

func NewDemoSpec added in v0.1.7

func NewDemoSpec(enabled bool) *DemoSpec

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

func NewDemoSpecWithDefaults added in v0.1.7

func NewDemoSpecWithDefaults() *DemoSpec

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

func (*DemoSpec) GetEnabled added in v0.1.7

func (o *DemoSpec) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*DemoSpec) GetEnabledOk added in v0.1.7

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

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

func (*DemoSpec) GetId added in v0.1.7

func (o *DemoSpec) GetId() string

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

func (*DemoSpec) GetIdOk added in v0.1.7

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

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

func (*DemoSpec) GetName added in v0.1.7

func (o *DemoSpec) GetName() string

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

func (*DemoSpec) GetNameOk added in v0.1.7

func (o *DemoSpec) 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 (*DemoSpec) GetOpentelemetryStore added in v0.1.7

func (o *DemoSpec) GetOpentelemetryStore() DemoOpenTelemetryStore

GetOpentelemetryStore returns the OpentelemetryStore field value if set, zero value otherwise.

func (*DemoSpec) GetOpentelemetryStoreOk added in v0.1.7

func (o *DemoSpec) GetOpentelemetryStoreOk() (*DemoOpenTelemetryStore, bool)

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

func (*DemoSpec) GetPokeshop added in v0.1.7

func (o *DemoSpec) GetPokeshop() DemoPokeshop

GetPokeshop returns the Pokeshop field value if set, zero value otherwise.

func (*DemoSpec) GetPokeshopOk added in v0.1.7

func (o *DemoSpec) GetPokeshopOk() (*DemoPokeshop, bool)

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

func (*DemoSpec) GetType added in v0.1.7

func (o *DemoSpec) GetType() string

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

func (*DemoSpec) GetTypeOk added in v0.1.7

func (o *DemoSpec) GetTypeOk() (*string, bool)

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

func (*DemoSpec) HasId added in v0.1.7

func (o *DemoSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*DemoSpec) HasName added in v0.1.7

func (o *DemoSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*DemoSpec) HasOpentelemetryStore added in v0.1.7

func (o *DemoSpec) HasOpentelemetryStore() bool

HasOpentelemetryStore returns a boolean if a field has been set.

func (*DemoSpec) HasPokeshop added in v0.1.7

func (o *DemoSpec) HasPokeshop() bool

HasPokeshop returns a boolean if a field has been set.

func (*DemoSpec) HasType added in v0.1.7

func (o *DemoSpec) HasType() bool

HasType returns a boolean if a field has been set.

func (DemoSpec) MarshalJSON added in v0.1.7

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

func (*DemoSpec) SetEnabled added in v0.1.7

func (o *DemoSpec) SetEnabled(v bool)

SetEnabled sets field value

func (*DemoSpec) SetId added in v0.1.7

func (o *DemoSpec) SetId(v string)

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

func (*DemoSpec) SetName added in v0.1.7

func (o *DemoSpec) SetName(v string)

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

func (*DemoSpec) SetOpentelemetryStore added in v0.1.7

func (o *DemoSpec) SetOpentelemetryStore(v DemoOpenTelemetryStore)

SetOpentelemetryStore gets a reference to the given DemoOpenTelemetryStore and assigns it to the OpentelemetryStore field.

func (*DemoSpec) SetPokeshop added in v0.1.7

func (o *DemoSpec) SetPokeshop(v DemoPokeshop)

SetPokeshop gets a reference to the given DemoPokeshop and assigns it to the Pokeshop field.

func (*DemoSpec) SetType added in v0.1.7

func (o *DemoSpec) SetType(v string)

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

func (DemoSpec) ToMap added in v0.1.7

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

type ElasticSearch

type ElasticSearch struct {
	Addresses          []string `json:"addresses,omitempty"`
	Username           *string  `json:"username,omitempty"`
	Password           *string  `json:"password,omitempty"`
	Index              *string  `json:"index,omitempty"`
	Certificate        *string  `json:"certificate,omitempty"`
	InsecureSkipVerify *bool    `json:"insecureSkipVerify,omitempty"`
}

ElasticSearch struct for ElasticSearch

func NewElasticSearch

func NewElasticSearch() *ElasticSearch

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

func NewElasticSearchWithDefaults

func NewElasticSearchWithDefaults() *ElasticSearch

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

func (*ElasticSearch) GetAddresses

func (o *ElasticSearch) GetAddresses() []string

GetAddresses returns the Addresses field value if set, zero value otherwise.

func (*ElasticSearch) GetAddressesOk

func (o *ElasticSearch) GetAddressesOk() ([]string, bool)

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

func (*ElasticSearch) GetCertificate

func (o *ElasticSearch) GetCertificate() string

GetCertificate returns the Certificate field value if set, zero value otherwise.

func (*ElasticSearch) GetCertificateOk

func (o *ElasticSearch) GetCertificateOk() (*string, bool)

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

func (*ElasticSearch) GetIndex

func (o *ElasticSearch) GetIndex() string

GetIndex returns the Index field value if set, zero value otherwise.

func (*ElasticSearch) GetIndexOk

func (o *ElasticSearch) GetIndexOk() (*string, bool)

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

func (*ElasticSearch) GetInsecureSkipVerify added in v0.1.7

func (o *ElasticSearch) GetInsecureSkipVerify() bool

GetInsecureSkipVerify returns the InsecureSkipVerify field value if set, zero value otherwise.

func (*ElasticSearch) GetInsecureSkipVerifyOk added in v0.1.7

func (o *ElasticSearch) GetInsecureSkipVerifyOk() (*bool, bool)

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

func (*ElasticSearch) GetPassword

func (o *ElasticSearch) GetPassword() string

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

func (*ElasticSearch) GetPasswordOk

func (o *ElasticSearch) GetPasswordOk() (*string, bool)

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

func (*ElasticSearch) GetUsername

func (o *ElasticSearch) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ElasticSearch) GetUsernameOk

func (o *ElasticSearch) GetUsernameOk() (*string, bool)

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

func (*ElasticSearch) HasAddresses

func (o *ElasticSearch) HasAddresses() bool

HasAddresses returns a boolean if a field has been set.

func (*ElasticSearch) HasCertificate

func (o *ElasticSearch) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (*ElasticSearch) HasIndex

func (o *ElasticSearch) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*ElasticSearch) HasInsecureSkipVerify added in v0.1.7

func (o *ElasticSearch) HasInsecureSkipVerify() bool

HasInsecureSkipVerify returns a boolean if a field has been set.

func (*ElasticSearch) HasPassword

func (o *ElasticSearch) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ElasticSearch) HasUsername

func (o *ElasticSearch) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ElasticSearch) MarshalJSON

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

func (*ElasticSearch) SetAddresses

func (o *ElasticSearch) SetAddresses(v []string)

SetAddresses gets a reference to the given []string and assigns it to the Addresses field.

func (*ElasticSearch) SetCertificate

func (o *ElasticSearch) SetCertificate(v string)

SetCertificate gets a reference to the given string and assigns it to the Certificate field.

func (*ElasticSearch) SetIndex

func (o *ElasticSearch) SetIndex(v string)

SetIndex gets a reference to the given string and assigns it to the Index field.

func (*ElasticSearch) SetInsecureSkipVerify added in v0.1.7

func (o *ElasticSearch) SetInsecureSkipVerify(v bool)

SetInsecureSkipVerify gets a reference to the given bool and assigns it to the InsecureSkipVerify field.

func (*ElasticSearch) SetPassword

func (o *ElasticSearch) SetPassword(v string)

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

func (*ElasticSearch) SetUsername

func (o *ElasticSearch) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ElasticSearch) ToMap added in v0.1.7

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

type ExportedTestInformation

type ExportedTestInformation struct {
	Test Test    `json:"test"`
	Run  TestRun `json:"run"`
}

ExportedTestInformation struct for ExportedTestInformation

func NewExportedTestInformation

func NewExportedTestInformation(test Test, run TestRun) *ExportedTestInformation

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

func NewExportedTestInformationWithDefaults

func NewExportedTestInformationWithDefaults() *ExportedTestInformation

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

func (*ExportedTestInformation) GetRun

func (o *ExportedTestInformation) GetRun() TestRun

GetRun returns the Run field value

func (*ExportedTestInformation) GetRunOk

func (o *ExportedTestInformation) GetRunOk() (*TestRun, bool)

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

func (*ExportedTestInformation) GetTest

func (o *ExportedTestInformation) GetTest() Test

GetTest returns the Test field value

func (*ExportedTestInformation) GetTestOk

func (o *ExportedTestInformation) GetTestOk() (*Test, bool)

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

func (ExportedTestInformation) MarshalJSON

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

func (*ExportedTestInformation) SetRun

func (o *ExportedTestInformation) SetRun(v TestRun)

SetRun sets field value

func (*ExportedTestInformation) SetTest

func (o *ExportedTestInformation) SetTest(v Test)

SetTest sets field value

func (ExportedTestInformation) ToMap added in v0.1.7

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

type GRPCClientSettings

type GRPCClientSettings struct {
	Endpoint        *string            `json:"endpoint,omitempty"`
	ReadBufferSize  *float32           `json:"readBufferSize,omitempty"`
	WriteBufferSize *float32           `json:"writeBufferSize,omitempty"`
	WaitForReady    *bool              `json:"waitForReady,omitempty"`
	Headers         *map[string]string `json:"headers,omitempty"`
	BalancerName    *string            `json:"balancerName,omitempty"`
	Compression     *string            `json:"compression,omitempty"`
	Tls             *TLS               `json:"tls,omitempty"`
	Auth            *HTTPAuth          `json:"auth,omitempty"`
}

GRPCClientSettings struct for GRPCClientSettings

func NewGRPCClientSettings

func NewGRPCClientSettings() *GRPCClientSettings

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

func NewGRPCClientSettingsWithDefaults

func NewGRPCClientSettingsWithDefaults() *GRPCClientSettings

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

func (*GRPCClientSettings) GetAuth

func (o *GRPCClientSettings) GetAuth() HTTPAuth

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

func (*GRPCClientSettings) GetAuthOk

func (o *GRPCClientSettings) GetAuthOk() (*HTTPAuth, bool)

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

func (*GRPCClientSettings) GetBalancerName

func (o *GRPCClientSettings) GetBalancerName() string

GetBalancerName returns the BalancerName field value if set, zero value otherwise.

func (*GRPCClientSettings) GetBalancerNameOk

func (o *GRPCClientSettings) GetBalancerNameOk() (*string, bool)

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

func (*GRPCClientSettings) GetCompression

func (o *GRPCClientSettings) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*GRPCClientSettings) GetCompressionOk

func (o *GRPCClientSettings) GetCompressionOk() (*string, bool)

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

func (*GRPCClientSettings) GetEndpoint

func (o *GRPCClientSettings) GetEndpoint() string

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

func (*GRPCClientSettings) GetEndpointOk

func (o *GRPCClientSettings) 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 (*GRPCClientSettings) GetHeaders

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

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

func (*GRPCClientSettings) GetHeadersOk

func (o *GRPCClientSettings) 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 (*GRPCClientSettings) GetReadBufferSize

func (o *GRPCClientSettings) GetReadBufferSize() float32

GetReadBufferSize returns the ReadBufferSize field value if set, zero value otherwise.

func (*GRPCClientSettings) GetReadBufferSizeOk

func (o *GRPCClientSettings) GetReadBufferSizeOk() (*float32, bool)

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

func (*GRPCClientSettings) GetTls

func (o *GRPCClientSettings) GetTls() TLS

GetTls returns the Tls field value if set, zero value otherwise.

func (*GRPCClientSettings) GetTlsOk

func (o *GRPCClientSettings) GetTlsOk() (*TLS, bool)

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

func (*GRPCClientSettings) GetWaitForReady

func (o *GRPCClientSettings) GetWaitForReady() bool

GetWaitForReady returns the WaitForReady field value if set, zero value otherwise.

func (*GRPCClientSettings) GetWaitForReadyOk

func (o *GRPCClientSettings) GetWaitForReadyOk() (*bool, bool)

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

func (*GRPCClientSettings) GetWriteBufferSize

func (o *GRPCClientSettings) GetWriteBufferSize() float32

GetWriteBufferSize returns the WriteBufferSize field value if set, zero value otherwise.

func (*GRPCClientSettings) GetWriteBufferSizeOk

func (o *GRPCClientSettings) GetWriteBufferSizeOk() (*float32, bool)

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

func (*GRPCClientSettings) HasAuth

func (o *GRPCClientSettings) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*GRPCClientSettings) HasBalancerName

func (o *GRPCClientSettings) HasBalancerName() bool

HasBalancerName returns a boolean if a field has been set.

func (*GRPCClientSettings) HasCompression

func (o *GRPCClientSettings) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*GRPCClientSettings) HasEndpoint

func (o *GRPCClientSettings) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*GRPCClientSettings) HasHeaders

func (o *GRPCClientSettings) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*GRPCClientSettings) HasReadBufferSize

func (o *GRPCClientSettings) HasReadBufferSize() bool

HasReadBufferSize returns a boolean if a field has been set.

func (*GRPCClientSettings) HasTls

func (o *GRPCClientSettings) HasTls() bool

HasTls returns a boolean if a field has been set.

func (*GRPCClientSettings) HasWaitForReady

func (o *GRPCClientSettings) HasWaitForReady() bool

HasWaitForReady returns a boolean if a field has been set.

func (*GRPCClientSettings) HasWriteBufferSize

func (o *GRPCClientSettings) HasWriteBufferSize() bool

HasWriteBufferSize returns a boolean if a field has been set.

func (GRPCClientSettings) MarshalJSON

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

func (*GRPCClientSettings) SetAuth

func (o *GRPCClientSettings) SetAuth(v HTTPAuth)

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

func (*GRPCClientSettings) SetBalancerName

func (o *GRPCClientSettings) SetBalancerName(v string)

SetBalancerName gets a reference to the given string and assigns it to the BalancerName field.

func (*GRPCClientSettings) SetCompression

func (o *GRPCClientSettings) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*GRPCClientSettings) SetEndpoint

func (o *GRPCClientSettings) SetEndpoint(v string)

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

func (*GRPCClientSettings) SetHeaders

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

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

func (*GRPCClientSettings) SetReadBufferSize

func (o *GRPCClientSettings) SetReadBufferSize(v float32)

SetReadBufferSize gets a reference to the given float32 and assigns it to the ReadBufferSize field.

func (*GRPCClientSettings) SetTls

func (o *GRPCClientSettings) SetTls(v TLS)

SetTls gets a reference to the given TLS and assigns it to the Tls field.

func (*GRPCClientSettings) SetWaitForReady

func (o *GRPCClientSettings) SetWaitForReady(v bool)

SetWaitForReady gets a reference to the given bool and assigns it to the WaitForReady field.

func (*GRPCClientSettings) SetWriteBufferSize

func (o *GRPCClientSettings) SetWriteBufferSize(v float32)

SetWriteBufferSize gets a reference to the given float32 and assigns it to the WriteBufferSize field.

func (GRPCClientSettings) ToMap added in v0.1.7

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

type GRPCHeader

type GRPCHeader struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

GRPCHeader struct for GRPCHeader

func NewGRPCHeader

func NewGRPCHeader() *GRPCHeader

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

func NewGRPCHeaderWithDefaults

func NewGRPCHeaderWithDefaults() *GRPCHeader

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

func (*GRPCHeader) GetKey

func (o *GRPCHeader) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*GRPCHeader) GetKeyOk

func (o *GRPCHeader) GetKeyOk() (*string, bool)

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

func (*GRPCHeader) GetValue

func (o *GRPCHeader) GetValue() string

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

func (*GRPCHeader) GetValueOk

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

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

func (*GRPCHeader) HasKey

func (o *GRPCHeader) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*GRPCHeader) HasValue

func (o *GRPCHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (GRPCHeader) MarshalJSON

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

func (*GRPCHeader) SetKey

func (o *GRPCHeader) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*GRPCHeader) SetValue

func (o *GRPCHeader) SetValue(v string)

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

func (GRPCHeader) ToMap added in v0.1.7

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

type GRPCRequest

type GRPCRequest struct {
	ProtobufFile *string      `json:"protobufFile,omitempty"`
	Address      *string      `json:"address,omitempty"`
	Service      *string      `json:"service,omitempty"`
	Method       *string      `json:"method,omitempty"`
	Metadata     []GRPCHeader `json:"metadata,omitempty"`
	Auth         *HTTPAuth    `json:"auth,omitempty"`
	Request      *string      `json:"request,omitempty"`
}

GRPCRequest struct for GRPCRequest

func NewGRPCRequest

func NewGRPCRequest() *GRPCRequest

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

func NewGRPCRequestWithDefaults

func NewGRPCRequestWithDefaults() *GRPCRequest

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

func (*GRPCRequest) GetAddress

func (o *GRPCRequest) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*GRPCRequest) GetAddressOk

func (o *GRPCRequest) GetAddressOk() (*string, bool)

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

func (*GRPCRequest) GetAuth

func (o *GRPCRequest) GetAuth() HTTPAuth

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

func (*GRPCRequest) GetAuthOk

func (o *GRPCRequest) GetAuthOk() (*HTTPAuth, bool)

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

func (*GRPCRequest) GetMetadata

func (o *GRPCRequest) GetMetadata() []GRPCHeader

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

func (*GRPCRequest) GetMetadataOk

func (o *GRPCRequest) GetMetadataOk() ([]GRPCHeader, bool)

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

func (*GRPCRequest) GetMethod

func (o *GRPCRequest) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*GRPCRequest) GetMethodOk

func (o *GRPCRequest) GetMethodOk() (*string, bool)

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

func (*GRPCRequest) GetProtobufFile

func (o *GRPCRequest) GetProtobufFile() string

GetProtobufFile returns the ProtobufFile field value if set, zero value otherwise.

func (*GRPCRequest) GetProtobufFileOk

func (o *GRPCRequest) GetProtobufFileOk() (*string, bool)

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

func (*GRPCRequest) GetRequest

func (o *GRPCRequest) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*GRPCRequest) GetRequestOk

func (o *GRPCRequest) GetRequestOk() (*string, bool)

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

func (*GRPCRequest) GetService

func (o *GRPCRequest) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*GRPCRequest) GetServiceOk

func (o *GRPCRequest) GetServiceOk() (*string, bool)

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

func (*GRPCRequest) HasAddress

func (o *GRPCRequest) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*GRPCRequest) HasAuth

func (o *GRPCRequest) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*GRPCRequest) HasMetadata

func (o *GRPCRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*GRPCRequest) HasMethod

func (o *GRPCRequest) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*GRPCRequest) HasProtobufFile

func (o *GRPCRequest) HasProtobufFile() bool

HasProtobufFile returns a boolean if a field has been set.

func (*GRPCRequest) HasRequest

func (o *GRPCRequest) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (*GRPCRequest) HasService

func (o *GRPCRequest) HasService() bool

HasService returns a boolean if a field has been set.

func (GRPCRequest) MarshalJSON

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

func (*GRPCRequest) SetAddress

func (o *GRPCRequest) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*GRPCRequest) SetAuth

func (o *GRPCRequest) SetAuth(v HTTPAuth)

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

func (*GRPCRequest) SetMetadata

func (o *GRPCRequest) SetMetadata(v []GRPCHeader)

SetMetadata gets a reference to the given []GRPCHeader and assigns it to the Metadata field.

func (*GRPCRequest) SetMethod

func (o *GRPCRequest) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*GRPCRequest) SetProtobufFile

func (o *GRPCRequest) SetProtobufFile(v string)

SetProtobufFile gets a reference to the given string and assigns it to the ProtobufFile field.

func (*GRPCRequest) SetRequest

func (o *GRPCRequest) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

func (*GRPCRequest) SetService

func (o *GRPCRequest) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (GRPCRequest) ToMap added in v0.1.7

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

type GRPCResponse

type GRPCResponse struct {
	StatusCode *int32       `json:"statusCode,omitempty"`
	Metadata   []GRPCHeader `json:"metadata,omitempty"`
	Body       *string      `json:"body,omitempty"`
}

GRPCResponse struct for GRPCResponse

func NewGRPCResponse

func NewGRPCResponse() *GRPCResponse

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

func NewGRPCResponseWithDefaults

func NewGRPCResponseWithDefaults() *GRPCResponse

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

func (*GRPCResponse) GetBody

func (o *GRPCResponse) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*GRPCResponse) GetBodyOk

func (o *GRPCResponse) GetBodyOk() (*string, bool)

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

func (*GRPCResponse) GetMetadata

func (o *GRPCResponse) GetMetadata() []GRPCHeader

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

func (*GRPCResponse) GetMetadataOk

func (o *GRPCResponse) GetMetadataOk() ([]GRPCHeader, bool)

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

func (*GRPCResponse) GetStatusCode

func (o *GRPCResponse) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*GRPCResponse) GetStatusCodeOk

func (o *GRPCResponse) GetStatusCodeOk() (*int32, bool)

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

func (*GRPCResponse) HasBody

func (o *GRPCResponse) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*GRPCResponse) HasMetadata

func (o *GRPCResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*GRPCResponse) HasStatusCode

func (o *GRPCResponse) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (GRPCResponse) MarshalJSON

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

func (*GRPCResponse) SetBody

func (o *GRPCResponse) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*GRPCResponse) SetMetadata

func (o *GRPCResponse) SetMetadata(v []GRPCHeader)

SetMetadata gets a reference to the given []GRPCHeader and assigns it to the Metadata field.

func (*GRPCResponse) SetStatusCode

func (o *GRPCResponse) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (GRPCResponse) ToMap added in v0.1.7

func (o GRPCResponse) 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 GetTestSuites200Response added in v0.1.7

type GetTestSuites200Response struct {
	Count *int32              `json:"count,omitempty"`
	Items []TestSuiteResource `json:"items,omitempty"`
}

GetTestSuites200Response struct for GetTestSuites200Response

func NewGetTestSuites200Response added in v0.1.7

func NewGetTestSuites200Response() *GetTestSuites200Response

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

func NewGetTestSuites200ResponseWithDefaults added in v0.1.7

func NewGetTestSuites200ResponseWithDefaults() *GetTestSuites200Response

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

func (*GetTestSuites200Response) GetCount added in v0.1.7

func (o *GetTestSuites200Response) GetCount() int32

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

func (*GetTestSuites200Response) GetCountOk added in v0.1.7

func (o *GetTestSuites200Response) 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.

func (*GetTestSuites200Response) GetItems added in v0.1.7

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

func (*GetTestSuites200Response) GetItemsOk added in v0.1.7

func (o *GetTestSuites200Response) GetItemsOk() ([]TestSuiteResource, bool)

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

func (*GetTestSuites200Response) HasCount added in v0.1.7

func (o *GetTestSuites200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*GetTestSuites200Response) HasItems added in v0.1.7

func (o *GetTestSuites200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (GetTestSuites200Response) MarshalJSON added in v0.1.7

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

func (*GetTestSuites200Response) SetCount added in v0.1.7

func (o *GetTestSuites200Response) SetCount(v int32)

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

func (*GetTestSuites200Response) SetItems added in v0.1.7

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

func (GetTestSuites200Response) ToMap added in v0.1.7

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

type HTTPAuth

type HTTPAuth struct {
	Type   *string         `json:"type,omitempty"`
	ApiKey *HTTPAuthApiKey `json:"apiKey,omitempty"`
	Basic  *HTTPAuthBasic  `json:"basic,omitempty"`
	Bearer *HTTPAuthBearer `json:"bearer,omitempty"`
}

HTTPAuth struct for HTTPAuth

func NewHTTPAuth

func NewHTTPAuth() *HTTPAuth

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

func NewHTTPAuthWithDefaults

func NewHTTPAuthWithDefaults() *HTTPAuth

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

func (*HTTPAuth) GetApiKey

func (o *HTTPAuth) GetApiKey() HTTPAuthApiKey

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

func (*HTTPAuth) GetApiKeyOk

func (o *HTTPAuth) GetApiKeyOk() (*HTTPAuthApiKey, 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 (*HTTPAuth) GetBasic

func (o *HTTPAuth) GetBasic() HTTPAuthBasic

GetBasic returns the Basic field value if set, zero value otherwise.

func (*HTTPAuth) GetBasicOk

func (o *HTTPAuth) GetBasicOk() (*HTTPAuthBasic, bool)

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

func (*HTTPAuth) GetBearer

func (o *HTTPAuth) GetBearer() HTTPAuthBearer

GetBearer returns the Bearer field value if set, zero value otherwise.

func (*HTTPAuth) GetBearerOk

func (o *HTTPAuth) GetBearerOk() (*HTTPAuthBearer, bool)

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

func (*HTTPAuth) GetType

func (o *HTTPAuth) GetType() string

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

func (*HTTPAuth) GetTypeOk

func (o *HTTPAuth) GetTypeOk() (*string, bool)

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

func (*HTTPAuth) HasApiKey

func (o *HTTPAuth) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*HTTPAuth) HasBasic

func (o *HTTPAuth) HasBasic() bool

HasBasic returns a boolean if a field has been set.

func (*HTTPAuth) HasBearer

func (o *HTTPAuth) HasBearer() bool

HasBearer returns a boolean if a field has been set.

func (*HTTPAuth) HasType

func (o *HTTPAuth) HasType() bool

HasType returns a boolean if a field has been set.

func (HTTPAuth) MarshalJSON

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

func (*HTTPAuth) SetApiKey

func (o *HTTPAuth) SetApiKey(v HTTPAuthApiKey)

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

func (*HTTPAuth) SetBasic

func (o *HTTPAuth) SetBasic(v HTTPAuthBasic)

SetBasic gets a reference to the given HTTPAuthBasic and assigns it to the Basic field.

func (*HTTPAuth) SetBearer

func (o *HTTPAuth) SetBearer(v HTTPAuthBearer)

SetBearer gets a reference to the given HTTPAuthBearer and assigns it to the Bearer field.

func (*HTTPAuth) SetType

func (o *HTTPAuth) SetType(v string)

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

func (HTTPAuth) ToMap added in v0.1.7

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

type HTTPAuthApiKey

type HTTPAuthApiKey struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
	In    *string `json:"in,omitempty"`
}

HTTPAuthApiKey struct for HTTPAuthApiKey

func NewHTTPAuthApiKey

func NewHTTPAuthApiKey() *HTTPAuthApiKey

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

func NewHTTPAuthApiKeyWithDefaults

func NewHTTPAuthApiKeyWithDefaults() *HTTPAuthApiKey

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

func (*HTTPAuthApiKey) GetIn

func (o *HTTPAuthApiKey) GetIn() string

GetIn returns the In field value if set, zero value otherwise.

func (*HTTPAuthApiKey) GetInOk

func (o *HTTPAuthApiKey) GetInOk() (*string, bool)

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

func (*HTTPAuthApiKey) GetKey

func (o *HTTPAuthApiKey) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*HTTPAuthApiKey) GetKeyOk

func (o *HTTPAuthApiKey) GetKeyOk() (*string, bool)

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

func (*HTTPAuthApiKey) GetValue

func (o *HTTPAuthApiKey) GetValue() string

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

func (*HTTPAuthApiKey) GetValueOk

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

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

func (*HTTPAuthApiKey) HasIn

func (o *HTTPAuthApiKey) HasIn() bool

HasIn returns a boolean if a field has been set.

func (*HTTPAuthApiKey) HasKey

func (o *HTTPAuthApiKey) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*HTTPAuthApiKey) HasValue

func (o *HTTPAuthApiKey) HasValue() bool

HasValue returns a boolean if a field has been set.

func (HTTPAuthApiKey) MarshalJSON

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

func (*HTTPAuthApiKey) SetIn

func (o *HTTPAuthApiKey) SetIn(v string)

SetIn gets a reference to the given string and assigns it to the In field.

func (*HTTPAuthApiKey) SetKey

func (o *HTTPAuthApiKey) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*HTTPAuthApiKey) SetValue

func (o *HTTPAuthApiKey) SetValue(v string)

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

func (HTTPAuthApiKey) ToMap added in v0.1.7

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

type HTTPAuthBasic

type HTTPAuthBasic struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

HTTPAuthBasic struct for HTTPAuthBasic

func NewHTTPAuthBasic

func NewHTTPAuthBasic() *HTTPAuthBasic

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

func NewHTTPAuthBasicWithDefaults

func NewHTTPAuthBasicWithDefaults() *HTTPAuthBasic

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

func (*HTTPAuthBasic) GetPassword

func (o *HTTPAuthBasic) GetPassword() string

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

func (*HTTPAuthBasic) GetPasswordOk

func (o *HTTPAuthBasic) GetPasswordOk() (*string, bool)

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

func (*HTTPAuthBasic) GetUsername

func (o *HTTPAuthBasic) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*HTTPAuthBasic) GetUsernameOk

func (o *HTTPAuthBasic) GetUsernameOk() (*string, bool)

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

func (*HTTPAuthBasic) HasPassword

func (o *HTTPAuthBasic) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*HTTPAuthBasic) HasUsername

func (o *HTTPAuthBasic) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (HTTPAuthBasic) MarshalJSON

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

func (*HTTPAuthBasic) SetPassword

func (o *HTTPAuthBasic) SetPassword(v string)

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

func (*HTTPAuthBasic) SetUsername

func (o *HTTPAuthBasic) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (HTTPAuthBasic) ToMap added in v0.1.7

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

type HTTPAuthBearer

type HTTPAuthBearer struct {
	Token *string `json:"token,omitempty"`
}

HTTPAuthBearer struct for HTTPAuthBearer

func NewHTTPAuthBearer

func NewHTTPAuthBearer() *HTTPAuthBearer

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

func NewHTTPAuthBearerWithDefaults

func NewHTTPAuthBearerWithDefaults() *HTTPAuthBearer

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

func (*HTTPAuthBearer) GetToken

func (o *HTTPAuthBearer) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*HTTPAuthBearer) GetTokenOk

func (o *HTTPAuthBearer) GetTokenOk() (*string, bool)

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

func (*HTTPAuthBearer) HasToken

func (o *HTTPAuthBearer) HasToken() bool

HasToken returns a boolean if a field has been set.

func (HTTPAuthBearer) MarshalJSON

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

func (*HTTPAuthBearer) SetToken

func (o *HTTPAuthBearer) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (HTTPAuthBearer) ToMap added in v0.1.7

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

type HTTPClientSettings added in v0.1.7

type HTTPClientSettings struct {
	Url     *string            `json:"url,omitempty"`
	Headers *map[string]string `json:"headers,omitempty"`
	Tls     *TLS               `json:"tls,omitempty"`
	Auth    *HTTPAuth          `json:"auth,omitempty"`
}

HTTPClientSettings struct for HTTPClientSettings

func NewHTTPClientSettings added in v0.1.7

func NewHTTPClientSettings() *HTTPClientSettings

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

func NewHTTPClientSettingsWithDefaults added in v0.1.7

func NewHTTPClientSettingsWithDefaults() *HTTPClientSettings

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

func (*HTTPClientSettings) GetAuth added in v0.1.7

func (o *HTTPClientSettings) GetAuth() HTTPAuth

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

func (*HTTPClientSettings) GetAuthOk added in v0.1.7

func (o *HTTPClientSettings) GetAuthOk() (*HTTPAuth, bool)

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

func (*HTTPClientSettings) GetHeaders added in v0.1.7

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

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

func (*HTTPClientSettings) GetHeadersOk added in v0.1.7

func (o *HTTPClientSettings) 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 (*HTTPClientSettings) GetTls added in v0.1.7

func (o *HTTPClientSettings) GetTls() TLS

GetTls returns the Tls field value if set, zero value otherwise.

func (*HTTPClientSettings) GetTlsOk added in v0.1.7

func (o *HTTPClientSettings) GetTlsOk() (*TLS, bool)

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

func (*HTTPClientSettings) GetUrl added in v0.1.7

func (o *HTTPClientSettings) GetUrl() string

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

func (*HTTPClientSettings) GetUrlOk added in v0.1.7

func (o *HTTPClientSettings) 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 (*HTTPClientSettings) HasAuth added in v0.1.7

func (o *HTTPClientSettings) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*HTTPClientSettings) HasHeaders added in v0.1.7

func (o *HTTPClientSettings) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*HTTPClientSettings) HasTls added in v0.1.7

func (o *HTTPClientSettings) HasTls() bool

HasTls returns a boolean if a field has been set.

func (*HTTPClientSettings) HasUrl added in v0.1.7

func (o *HTTPClientSettings) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (HTTPClientSettings) MarshalJSON added in v0.1.7

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

func (*HTTPClientSettings) SetAuth added in v0.1.7

func (o *HTTPClientSettings) SetAuth(v HTTPAuth)

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

func (*HTTPClientSettings) SetHeaders added in v0.1.7

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

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

func (*HTTPClientSettings) SetTls added in v0.1.7

func (o *HTTPClientSettings) SetTls(v TLS)

SetTls gets a reference to the given TLS and assigns it to the Tls field.

func (*HTTPClientSettings) SetUrl added in v0.1.7

func (o *HTTPClientSettings) SetUrl(v string)

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

func (HTTPClientSettings) ToMap added in v0.1.7

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

type HTTPHeader

type HTTPHeader struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

HTTPHeader struct for HTTPHeader

func NewHTTPHeader

func NewHTTPHeader() *HTTPHeader

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

func NewHTTPHeaderWithDefaults

func NewHTTPHeaderWithDefaults() *HTTPHeader

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

func (*HTTPHeader) GetKey

func (o *HTTPHeader) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*HTTPHeader) GetKeyOk

func (o *HTTPHeader) GetKeyOk() (*string, bool)

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

func (*HTTPHeader) GetValue

func (o *HTTPHeader) GetValue() string

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

func (*HTTPHeader) GetValueOk

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

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

func (*HTTPHeader) HasKey

func (o *HTTPHeader) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*HTTPHeader) HasValue

func (o *HTTPHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (HTTPHeader) MarshalJSON

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

func (*HTTPHeader) SetKey

func (o *HTTPHeader) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*HTTPHeader) SetValue

func (o *HTTPHeader) SetValue(v string)

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

func (HTTPHeader) ToMap added in v0.1.7

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

type HTTPRequest

type HTTPRequest struct {
	Url             *string      `json:"url,omitempty"`
	Method          *string      `json:"method,omitempty"`
	Headers         []HTTPHeader `json:"headers,omitempty"`
	Body            *string      `json:"body,omitempty"`
	Auth            *HTTPAuth    `json:"auth,omitempty"`
	SslVerification *bool        `json:"sslVerification,omitempty"`
}

HTTPRequest struct for HTTPRequest

func NewHTTPRequest

func NewHTTPRequest() *HTTPRequest

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

func NewHTTPRequestWithDefaults

func NewHTTPRequestWithDefaults() *HTTPRequest

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

func (*HTTPRequest) GetAuth

func (o *HTTPRequest) GetAuth() HTTPAuth

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

func (*HTTPRequest) GetAuthOk

func (o *HTTPRequest) GetAuthOk() (*HTTPAuth, bool)

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

func (*HTTPRequest) GetBody

func (o *HTTPRequest) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*HTTPRequest) GetBodyOk

func (o *HTTPRequest) GetBodyOk() (*string, bool)

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

func (*HTTPRequest) GetHeaders

func (o *HTTPRequest) GetHeaders() []HTTPHeader

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

func (*HTTPRequest) GetHeadersOk

func (o *HTTPRequest) GetHeadersOk() ([]HTTPHeader, 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 (*HTTPRequest) GetMethod

func (o *HTTPRequest) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*HTTPRequest) GetMethodOk

func (o *HTTPRequest) GetMethodOk() (*string, bool)

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

func (*HTTPRequest) GetSslVerification added in v0.1.7

func (o *HTTPRequest) GetSslVerification() bool

GetSslVerification returns the SslVerification field value if set, zero value otherwise.

func (*HTTPRequest) GetSslVerificationOk added in v0.1.7

func (o *HTTPRequest) GetSslVerificationOk() (*bool, bool)

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

func (*HTTPRequest) GetUrl

func (o *HTTPRequest) GetUrl() string

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

func (*HTTPRequest) GetUrlOk

func (o *HTTPRequest) 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 (*HTTPRequest) HasAuth

func (o *HTTPRequest) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*HTTPRequest) HasBody

func (o *HTTPRequest) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*HTTPRequest) HasHeaders

func (o *HTTPRequest) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*HTTPRequest) HasMethod

func (o *HTTPRequest) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*HTTPRequest) HasSslVerification added in v0.1.7

func (o *HTTPRequest) HasSslVerification() bool

HasSslVerification returns a boolean if a field has been set.

func (*HTTPRequest) HasUrl

func (o *HTTPRequest) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (HTTPRequest) MarshalJSON

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

func (*HTTPRequest) SetAuth

func (o *HTTPRequest) SetAuth(v HTTPAuth)

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

func (*HTTPRequest) SetBody

func (o *HTTPRequest) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*HTTPRequest) SetHeaders

func (o *HTTPRequest) SetHeaders(v []HTTPHeader)

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

func (*HTTPRequest) SetMethod

func (o *HTTPRequest) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*HTTPRequest) SetSslVerification added in v0.1.7

func (o *HTTPRequest) SetSslVerification(v bool)

SetSslVerification gets a reference to the given bool and assigns it to the SslVerification field.

func (*HTTPRequest) SetUrl

func (o *HTTPRequest) SetUrl(v string)

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

func (HTTPRequest) ToMap added in v0.1.7

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

type HTTPResponse

type HTTPResponse struct {
	Status     *string      `json:"status,omitempty"`
	StatusCode *int32       `json:"statusCode,omitempty"`
	Headers    []HTTPHeader `json:"headers,omitempty"`
	Body       *string      `json:"body,omitempty"`
}

HTTPResponse struct for HTTPResponse

func NewHTTPResponse

func NewHTTPResponse() *HTTPResponse

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

func NewHTTPResponseWithDefaults

func NewHTTPResponseWithDefaults() *HTTPResponse

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

func (*HTTPResponse) GetBody

func (o *HTTPResponse) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*HTTPResponse) GetBodyOk

func (o *HTTPResponse) GetBodyOk() (*string, bool)

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

func (*HTTPResponse) GetHeaders

func (o *HTTPResponse) GetHeaders() []HTTPHeader

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

func (*HTTPResponse) GetHeadersOk

func (o *HTTPResponse) GetHeadersOk() ([]HTTPHeader, 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 (*HTTPResponse) GetStatus

func (o *HTTPResponse) GetStatus() string

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

func (*HTTPResponse) GetStatusCode

func (o *HTTPResponse) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*HTTPResponse) GetStatusCodeOk

func (o *HTTPResponse) GetStatusCodeOk() (*int32, bool)

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

func (*HTTPResponse) GetStatusOk

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

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

func (*HTTPResponse) HasBody

func (o *HTTPResponse) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*HTTPResponse) HasHeaders

func (o *HTTPResponse) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*HTTPResponse) HasStatus

func (o *HTTPResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*HTTPResponse) HasStatusCode

func (o *HTTPResponse) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (HTTPResponse) MarshalJSON

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

func (*HTTPResponse) SetBody

func (o *HTTPResponse) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*HTTPResponse) SetHeaders

func (o *HTTPResponse) SetHeaders(v []HTTPHeader)

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

func (*HTTPResponse) SetStatus

func (o *HTTPResponse) SetStatus(v string)

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

func (*HTTPResponse) SetStatusCode

func (o *HTTPResponse) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (HTTPResponse) ToMap added in v0.1.7

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

type KafkaAuthentication added in v0.1.7

type KafkaAuthentication struct {
	Type  *string        `json:"type,omitempty"`
	Plain *HTTPAuthBasic `json:"plain,omitempty"`
}

KafkaAuthentication struct for KafkaAuthentication

func NewKafkaAuthentication added in v0.1.7

func NewKafkaAuthentication() *KafkaAuthentication

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

func NewKafkaAuthenticationWithDefaults added in v0.1.7

func NewKafkaAuthenticationWithDefaults() *KafkaAuthentication

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

func (*KafkaAuthentication) GetPlain added in v0.1.7

func (o *KafkaAuthentication) GetPlain() HTTPAuthBasic

GetPlain returns the Plain field value if set, zero value otherwise.

func (*KafkaAuthentication) GetPlainOk added in v0.1.7

func (o *KafkaAuthentication) GetPlainOk() (*HTTPAuthBasic, bool)

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

func (*KafkaAuthentication) GetType added in v0.1.7

func (o *KafkaAuthentication) GetType() string

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

func (*KafkaAuthentication) GetTypeOk added in v0.1.7

func (o *KafkaAuthentication) GetTypeOk() (*string, bool)

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

func (*KafkaAuthentication) HasPlain added in v0.1.7

func (o *KafkaAuthentication) HasPlain() bool

HasPlain returns a boolean if a field has been set.

func (*KafkaAuthentication) HasType added in v0.1.7

func (o *KafkaAuthentication) HasType() bool

HasType returns a boolean if a field has been set.

func (KafkaAuthentication) MarshalJSON added in v0.1.7

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

func (*KafkaAuthentication) SetPlain added in v0.1.7

func (o *KafkaAuthentication) SetPlain(v HTTPAuthBasic)

SetPlain gets a reference to the given HTTPAuthBasic and assigns it to the Plain field.

func (*KafkaAuthentication) SetType added in v0.1.7

func (o *KafkaAuthentication) SetType(v string)

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

func (KafkaAuthentication) ToMap added in v0.1.7

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

type KafkaMessageHeader added in v0.1.7

type KafkaMessageHeader struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

KafkaMessageHeader struct for KafkaMessageHeader

func NewKafkaMessageHeader added in v0.1.7

func NewKafkaMessageHeader() *KafkaMessageHeader

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

func NewKafkaMessageHeaderWithDefaults added in v0.1.7

func NewKafkaMessageHeaderWithDefaults() *KafkaMessageHeader

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

func (*KafkaMessageHeader) GetKey added in v0.1.7

func (o *KafkaMessageHeader) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*KafkaMessageHeader) GetKeyOk added in v0.1.7

func (o *KafkaMessageHeader) GetKeyOk() (*string, bool)

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

func (*KafkaMessageHeader) GetValue added in v0.1.7

func (o *KafkaMessageHeader) GetValue() string

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

func (*KafkaMessageHeader) GetValueOk added in v0.1.7

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

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

func (*KafkaMessageHeader) HasKey added in v0.1.7

func (o *KafkaMessageHeader) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*KafkaMessageHeader) HasValue added in v0.1.7

func (o *KafkaMessageHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (KafkaMessageHeader) MarshalJSON added in v0.1.7

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

func (*KafkaMessageHeader) SetKey added in v0.1.7

func (o *KafkaMessageHeader) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*KafkaMessageHeader) SetValue added in v0.1.7

func (o *KafkaMessageHeader) SetValue(v string)

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

func (KafkaMessageHeader) ToMap added in v0.1.7

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

type KafkaRequest added in v0.1.7

type KafkaRequest struct {
	BrokerUrls      []string             `json:"brokerUrls,omitempty"`
	Topic           *string              `json:"topic,omitempty"`
	Authentication  *KafkaAuthentication `json:"authentication,omitempty"`
	SslVerification *bool                `json:"sslVerification,omitempty"`
	Headers         []KafkaMessageHeader `json:"headers,omitempty"`
	MessageKey      *string              `json:"messageKey,omitempty"`
	MessageValue    *string              `json:"messageValue,omitempty"`
}

KafkaRequest struct for KafkaRequest

func NewKafkaRequest added in v0.1.7

func NewKafkaRequest() *KafkaRequest

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

func NewKafkaRequestWithDefaults added in v0.1.7

func NewKafkaRequestWithDefaults() *KafkaRequest

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

func (*KafkaRequest) GetAuthentication added in v0.1.7

func (o *KafkaRequest) GetAuthentication() KafkaAuthentication

GetAuthentication returns the Authentication field value if set, zero value otherwise.

func (*KafkaRequest) GetAuthenticationOk added in v0.1.7

func (o *KafkaRequest) GetAuthenticationOk() (*KafkaAuthentication, bool)

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

func (*KafkaRequest) GetBrokerUrls added in v0.1.7

func (o *KafkaRequest) GetBrokerUrls() []string

GetBrokerUrls returns the BrokerUrls field value if set, zero value otherwise.

func (*KafkaRequest) GetBrokerUrlsOk added in v0.1.7

func (o *KafkaRequest) GetBrokerUrlsOk() ([]string, bool)

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

func (*KafkaRequest) GetHeaders added in v0.1.7

func (o *KafkaRequest) GetHeaders() []KafkaMessageHeader

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

func (*KafkaRequest) GetHeadersOk added in v0.1.7

func (o *KafkaRequest) GetHeadersOk() ([]KafkaMessageHeader, 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 (*KafkaRequest) GetMessageKey added in v0.1.7

func (o *KafkaRequest) GetMessageKey() string

GetMessageKey returns the MessageKey field value if set, zero value otherwise.

func (*KafkaRequest) GetMessageKeyOk added in v0.1.7

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

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

func (*KafkaRequest) GetMessageValue added in v0.1.7

func (o *KafkaRequest) GetMessageValue() string

GetMessageValue returns the MessageValue field value if set, zero value otherwise.

func (*KafkaRequest) GetMessageValueOk added in v0.1.7

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

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

func (*KafkaRequest) GetSslVerification added in v0.1.7

func (o *KafkaRequest) GetSslVerification() bool

GetSslVerification returns the SslVerification field value if set, zero value otherwise.

func (*KafkaRequest) GetSslVerificationOk added in v0.1.7

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

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

func (*KafkaRequest) GetTopic added in v0.1.7

func (o *KafkaRequest) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*KafkaRequest) GetTopicOk added in v0.1.7

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

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

func (*KafkaRequest) HasAuthentication added in v0.1.7

func (o *KafkaRequest) HasAuthentication() bool

HasAuthentication returns a boolean if a field has been set.

func (*KafkaRequest) HasBrokerUrls added in v0.1.7

func (o *KafkaRequest) HasBrokerUrls() bool

HasBrokerUrls returns a boolean if a field has been set.

func (*KafkaRequest) HasHeaders added in v0.1.7

func (o *KafkaRequest) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*KafkaRequest) HasMessageKey added in v0.1.7

func (o *KafkaRequest) HasMessageKey() bool

HasMessageKey returns a boolean if a field has been set.

func (*KafkaRequest) HasMessageValue added in v0.1.7

func (o *KafkaRequest) HasMessageValue() bool

HasMessageValue returns a boolean if a field has been set.

func (*KafkaRequest) HasSslVerification added in v0.1.7

func (o *KafkaRequest) HasSslVerification() bool

HasSslVerification returns a boolean if a field has been set.

func (*KafkaRequest) HasTopic added in v0.1.7

func (o *KafkaRequest) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (KafkaRequest) MarshalJSON added in v0.1.7

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

func (*KafkaRequest) SetAuthentication added in v0.1.7

func (o *KafkaRequest) SetAuthentication(v KafkaAuthentication)

SetAuthentication gets a reference to the given KafkaAuthentication and assigns it to the Authentication field.

func (*KafkaRequest) SetBrokerUrls added in v0.1.7

func (o *KafkaRequest) SetBrokerUrls(v []string)

SetBrokerUrls gets a reference to the given []string and assigns it to the BrokerUrls field.

func (*KafkaRequest) SetHeaders added in v0.1.7

func (o *KafkaRequest) SetHeaders(v []KafkaMessageHeader)

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

func (*KafkaRequest) SetMessageKey added in v0.1.7

func (o *KafkaRequest) SetMessageKey(v string)

SetMessageKey gets a reference to the given string and assigns it to the MessageKey field.

func (*KafkaRequest) SetMessageValue added in v0.1.7

func (o *KafkaRequest) SetMessageValue(v string)

SetMessageValue gets a reference to the given string and assigns it to the MessageValue field.

func (*KafkaRequest) SetSslVerification added in v0.1.7

func (o *KafkaRequest) SetSslVerification(v bool)

SetSslVerification gets a reference to the given bool and assigns it to the SslVerification field.

func (*KafkaRequest) SetTopic added in v0.1.7

func (o *KafkaRequest) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (KafkaRequest) ToMap added in v0.1.7

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

type KafkaResponse added in v0.1.7

type KafkaResponse struct {
	Partition *string `json:"partition,omitempty"`
	Offset    *string `json:"offset,omitempty"`
}

KafkaResponse struct for KafkaResponse

func NewKafkaResponse added in v0.1.7

func NewKafkaResponse() *KafkaResponse

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

func NewKafkaResponseWithDefaults added in v0.1.7

func NewKafkaResponseWithDefaults() *KafkaResponse

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

func (*KafkaResponse) GetOffset added in v0.1.7

func (o *KafkaResponse) GetOffset() string

GetOffset returns the Offset field value if set, zero value otherwise.

func (*KafkaResponse) GetOffsetOk added in v0.1.7

func (o *KafkaResponse) GetOffsetOk() (*string, bool)

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

func (*KafkaResponse) GetPartition added in v0.1.7

func (o *KafkaResponse) GetPartition() string

GetPartition returns the Partition field value if set, zero value otherwise.

func (*KafkaResponse) GetPartitionOk added in v0.1.7

func (o *KafkaResponse) GetPartitionOk() (*string, bool)

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

func (*KafkaResponse) HasOffset added in v0.1.7

func (o *KafkaResponse) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*KafkaResponse) HasPartition added in v0.1.7

func (o *KafkaResponse) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (KafkaResponse) MarshalJSON added in v0.1.7

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

func (*KafkaResponse) SetOffset added in v0.1.7

func (o *KafkaResponse) SetOffset(v string)

SetOffset gets a reference to the given string and assigns it to the Offset field.

func (*KafkaResponse) SetPartition added in v0.1.7

func (o *KafkaResponse) SetPartition(v string)

SetPartition gets a reference to the given string and assigns it to the Partition field.

func (KafkaResponse) ToMap added in v0.1.7

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

type LinterResource added in v0.1.7

type LinterResource struct {
	Type *string             `json:"type,omitempty"`
	Spec *LinterResourceSpec `json:"spec,omitempty"`
}

LinterResource struct for LinterResource

func NewLinterResource added in v0.1.7

func NewLinterResource() *LinterResource

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

func NewLinterResourceWithDefaults added in v0.1.7

func NewLinterResourceWithDefaults() *LinterResource

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

func (*LinterResource) GetSpec added in v0.1.7

func (o *LinterResource) GetSpec() LinterResourceSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*LinterResource) GetSpecOk added in v0.1.7

func (o *LinterResource) GetSpecOk() (*LinterResourceSpec, bool)

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

func (*LinterResource) GetType added in v0.1.7

func (o *LinterResource) GetType() string

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

func (*LinterResource) GetTypeOk added in v0.1.7

func (o *LinterResource) GetTypeOk() (*string, bool)

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

func (*LinterResource) HasSpec added in v0.1.7

func (o *LinterResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*LinterResource) HasType added in v0.1.7

func (o *LinterResource) HasType() bool

HasType returns a boolean if a field has been set.

func (LinterResource) MarshalJSON added in v0.1.7

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

func (*LinterResource) SetSpec added in v0.1.7

func (o *LinterResource) SetSpec(v LinterResourceSpec)

SetSpec gets a reference to the given LinterResourceSpec and assigns it to the Spec field.

func (*LinterResource) SetType added in v0.1.7

func (o *LinterResource) SetType(v string)

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

func (LinterResource) ToMap added in v0.1.7

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

type LinterResourceList added in v0.1.7

type LinterResourceList struct {
	Items []LinterResource `json:"items,omitempty"`
}

LinterResourceList struct for LinterResourceList

func NewLinterResourceList added in v0.1.7

func NewLinterResourceList() *LinterResourceList

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

func NewLinterResourceListWithDefaults added in v0.1.7

func NewLinterResourceListWithDefaults() *LinterResourceList

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

func (*LinterResourceList) GetItems added in v0.1.7

func (o *LinterResourceList) GetItems() []LinterResource

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

func (*LinterResourceList) GetItemsOk added in v0.1.7

func (o *LinterResourceList) GetItemsOk() ([]LinterResource, bool)

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

func (*LinterResourceList) HasItems added in v0.1.7

func (o *LinterResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (LinterResourceList) MarshalJSON added in v0.1.7

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

func (*LinterResourceList) SetItems added in v0.1.7

func (o *LinterResourceList) SetItems(v []LinterResource)

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

func (LinterResourceList) ToMap added in v0.1.7

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

type LinterResourcePlugin added in v0.1.7

type LinterResourcePlugin struct {
	Id          *string              `json:"id,omitempty"`
	Name        *string              `json:"name,omitempty"`
	Description *string              `json:"description,omitempty"`
	Enabled     *bool                `json:"enabled,omitempty"`
	Rules       []LinterResourceRule `json:"rules,omitempty"`
}

LinterResourcePlugin struct for LinterResourcePlugin

func NewLinterResourcePlugin added in v0.1.7

func NewLinterResourcePlugin() *LinterResourcePlugin

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

func NewLinterResourcePluginWithDefaults added in v0.1.7

func NewLinterResourcePluginWithDefaults() *LinterResourcePlugin

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

func (*LinterResourcePlugin) GetDescription added in v0.1.7

func (o *LinterResourcePlugin) GetDescription() string

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

func (*LinterResourcePlugin) GetDescriptionOk added in v0.1.7

func (o *LinterResourcePlugin) GetDescriptionOk() (*string, bool)

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

func (*LinterResourcePlugin) GetEnabled added in v0.1.7

func (o *LinterResourcePlugin) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*LinterResourcePlugin) GetEnabledOk added in v0.1.7

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

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

func (*LinterResourcePlugin) GetId added in v0.1.7

func (o *LinterResourcePlugin) GetId() string

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

func (*LinterResourcePlugin) GetIdOk added in v0.1.7

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

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

func (*LinterResourcePlugin) GetName added in v0.1.7

func (o *LinterResourcePlugin) GetName() string

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

func (*LinterResourcePlugin) GetNameOk added in v0.1.7

func (o *LinterResourcePlugin) 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 (*LinterResourcePlugin) GetRules added in v0.1.7

func (o *LinterResourcePlugin) GetRules() []LinterResourceRule

GetRules returns the Rules field value if set, zero value otherwise.

func (*LinterResourcePlugin) GetRulesOk added in v0.1.7

func (o *LinterResourcePlugin) GetRulesOk() ([]LinterResourceRule, bool)

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

func (*LinterResourcePlugin) HasDescription added in v0.1.7

func (o *LinterResourcePlugin) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasEnabled added in v0.1.7

func (o *LinterResourcePlugin) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasId added in v0.1.7

func (o *LinterResourcePlugin) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasName added in v0.1.7

func (o *LinterResourcePlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasRules added in v0.1.7

func (o *LinterResourcePlugin) HasRules() bool

HasRules returns a boolean if a field has been set.

func (LinterResourcePlugin) MarshalJSON added in v0.1.7

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

func (*LinterResourcePlugin) SetDescription added in v0.1.7

func (o *LinterResourcePlugin) SetDescription(v string)

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

func (*LinterResourcePlugin) SetEnabled added in v0.1.7

func (o *LinterResourcePlugin) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*LinterResourcePlugin) SetId added in v0.1.7

func (o *LinterResourcePlugin) SetId(v string)

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

func (*LinterResourcePlugin) SetName added in v0.1.7

func (o *LinterResourcePlugin) SetName(v string)

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

func (*LinterResourcePlugin) SetRules added in v0.1.7

func (o *LinterResourcePlugin) SetRules(v []LinterResourceRule)

SetRules gets a reference to the given []LinterResourceRule and assigns it to the Rules field.

func (LinterResourcePlugin) ToMap added in v0.1.7

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

type LinterResourceRule added in v0.1.7

type LinterResourceRule struct {
	Id               *string  `json:"id,omitempty"`
	Weight           *int32   `json:"weight,omitempty"`
	Name             *string  `json:"name,omitempty"`
	Description      *string  `json:"description,omitempty"`
	ErrorDescription *string  `json:"errorDescription,omitempty"`
	Tips             []string `json:"tips,omitempty"`
	ErrorLevel       *string  `json:"errorLevel,omitempty"`
}

LinterResourceRule struct for LinterResourceRule

func NewLinterResourceRule added in v0.1.7

func NewLinterResourceRule() *LinterResourceRule

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

func NewLinterResourceRuleWithDefaults added in v0.1.7

func NewLinterResourceRuleWithDefaults() *LinterResourceRule

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

func (*LinterResourceRule) GetDescription added in v0.1.7

func (o *LinterResourceRule) GetDescription() string

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

func (*LinterResourceRule) GetDescriptionOk added in v0.1.7

func (o *LinterResourceRule) GetDescriptionOk() (*string, bool)

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

func (*LinterResourceRule) GetErrorDescription added in v0.1.7

func (o *LinterResourceRule) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*LinterResourceRule) GetErrorDescriptionOk added in v0.1.7

func (o *LinterResourceRule) GetErrorDescriptionOk() (*string, bool)

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

func (*LinterResourceRule) GetErrorLevel added in v0.1.7

func (o *LinterResourceRule) GetErrorLevel() string

GetErrorLevel returns the ErrorLevel field value if set, zero value otherwise.

func (*LinterResourceRule) GetErrorLevelOk added in v0.1.7

func (o *LinterResourceRule) GetErrorLevelOk() (*string, bool)

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

func (*LinterResourceRule) GetId added in v0.1.7

func (o *LinterResourceRule) GetId() string

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

func (*LinterResourceRule) GetIdOk added in v0.1.7

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

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

func (*LinterResourceRule) GetName added in v0.1.7

func (o *LinterResourceRule) GetName() string

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

func (*LinterResourceRule) GetNameOk added in v0.1.7

func (o *LinterResourceRule) 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 (*LinterResourceRule) GetTips added in v0.1.7

func (o *LinterResourceRule) GetTips() []string

GetTips returns the Tips field value if set, zero value otherwise.

func (*LinterResourceRule) GetTipsOk added in v0.1.7

func (o *LinterResourceRule) GetTipsOk() ([]string, bool)

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

func (*LinterResourceRule) GetWeight added in v0.1.7

func (o *LinterResourceRule) GetWeight() int32

GetWeight returns the Weight field value if set, zero value otherwise.

func (*LinterResourceRule) GetWeightOk added in v0.1.7

func (o *LinterResourceRule) GetWeightOk() (*int32, bool)

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

func (*LinterResourceRule) HasDescription added in v0.1.7

func (o *LinterResourceRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResourceRule) HasErrorDescription added in v0.1.7

func (o *LinterResourceRule) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*LinterResourceRule) HasErrorLevel added in v0.1.7

func (o *LinterResourceRule) HasErrorLevel() bool

HasErrorLevel returns a boolean if a field has been set.

func (*LinterResourceRule) HasId added in v0.1.7

func (o *LinterResourceRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourceRule) HasName added in v0.1.7

func (o *LinterResourceRule) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourceRule) HasTips added in v0.1.7

func (o *LinterResourceRule) HasTips() bool

HasTips returns a boolean if a field has been set.

func (*LinterResourceRule) HasWeight added in v0.1.7

func (o *LinterResourceRule) HasWeight() bool

HasWeight returns a boolean if a field has been set.

func (LinterResourceRule) MarshalJSON added in v0.1.7

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

func (*LinterResourceRule) SetDescription added in v0.1.7

func (o *LinterResourceRule) SetDescription(v string)

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

func (*LinterResourceRule) SetErrorDescription added in v0.1.7

func (o *LinterResourceRule) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*LinterResourceRule) SetErrorLevel added in v0.1.7

func (o *LinterResourceRule) SetErrorLevel(v string)

SetErrorLevel gets a reference to the given string and assigns it to the ErrorLevel field.

func (*LinterResourceRule) SetId added in v0.1.7

func (o *LinterResourceRule) SetId(v string)

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

func (*LinterResourceRule) SetName added in v0.1.7

func (o *LinterResourceRule) SetName(v string)

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

func (*LinterResourceRule) SetTips added in v0.1.7

func (o *LinterResourceRule) SetTips(v []string)

SetTips gets a reference to the given []string and assigns it to the Tips field.

func (*LinterResourceRule) SetWeight added in v0.1.7

func (o *LinterResourceRule) SetWeight(v int32)

SetWeight gets a reference to the given int32 and assigns it to the Weight field.

func (LinterResourceRule) ToMap added in v0.1.7

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

type LinterResourceSpec added in v0.1.7

type LinterResourceSpec struct {
	Id           *string                `json:"id,omitempty"`
	Name         *string                `json:"name,omitempty"`
	Enabled      *bool                  `json:"enabled,omitempty"`
	MinimumScore *int32                 `json:"minimumScore,omitempty"`
	Plugins      []LinterResourcePlugin `json:"plugins,omitempty"`
}

LinterResourceSpec struct for LinterResourceSpec

func NewLinterResourceSpec added in v0.1.7

func NewLinterResourceSpec() *LinterResourceSpec

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

func NewLinterResourceSpecWithDefaults added in v0.1.7

func NewLinterResourceSpecWithDefaults() *LinterResourceSpec

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

func (*LinterResourceSpec) GetEnabled added in v0.1.7

func (o *LinterResourceSpec) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*LinterResourceSpec) GetEnabledOk added in v0.1.7

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

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

func (*LinterResourceSpec) GetId added in v0.1.7

func (o *LinterResourceSpec) GetId() string

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

func (*LinterResourceSpec) GetIdOk added in v0.1.7

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

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

func (*LinterResourceSpec) GetMinimumScore added in v0.1.7

func (o *LinterResourceSpec) GetMinimumScore() int32

GetMinimumScore returns the MinimumScore field value if set, zero value otherwise.

func (*LinterResourceSpec) GetMinimumScoreOk added in v0.1.7

func (o *LinterResourceSpec) GetMinimumScoreOk() (*int32, bool)

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

func (*LinterResourceSpec) GetName added in v0.1.7

func (o *LinterResourceSpec) GetName() string

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

func (*LinterResourceSpec) GetNameOk added in v0.1.7

func (o *LinterResourceSpec) 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 (*LinterResourceSpec) GetPlugins added in v0.1.7

func (o *LinterResourceSpec) GetPlugins() []LinterResourcePlugin

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*LinterResourceSpec) GetPluginsOk added in v0.1.7

func (o *LinterResourceSpec) GetPluginsOk() ([]LinterResourcePlugin, bool)

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

func (*LinterResourceSpec) HasEnabled added in v0.1.7

func (o *LinterResourceSpec) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LinterResourceSpec) HasId added in v0.1.7

func (o *LinterResourceSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourceSpec) HasMinimumScore added in v0.1.7

func (o *LinterResourceSpec) HasMinimumScore() bool

HasMinimumScore returns a boolean if a field has been set.

func (*LinterResourceSpec) HasName added in v0.1.7

func (o *LinterResourceSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourceSpec) HasPlugins added in v0.1.7

func (o *LinterResourceSpec) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (LinterResourceSpec) MarshalJSON added in v0.1.7

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

func (*LinterResourceSpec) SetEnabled added in v0.1.7

func (o *LinterResourceSpec) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*LinterResourceSpec) SetId added in v0.1.7

func (o *LinterResourceSpec) SetId(v string)

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

func (*LinterResourceSpec) SetMinimumScore added in v0.1.7

func (o *LinterResourceSpec) SetMinimumScore(v int32)

SetMinimumScore gets a reference to the given int32 and assigns it to the MinimumScore field.

func (*LinterResourceSpec) SetName added in v0.1.7

func (o *LinterResourceSpec) SetName(v string)

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

func (*LinterResourceSpec) SetPlugins added in v0.1.7

func (o *LinterResourceSpec) SetPlugins(v []LinterResourcePlugin)

SetPlugins gets a reference to the given []LinterResourcePlugin and assigns it to the Plugins field.

func (LinterResourceSpec) ToMap added in v0.1.7

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

type LinterResult added in v0.1.7

type LinterResult struct {
	MinimumScore *int32               `json:"minimumScore,omitempty"`
	Passed       *bool                `json:"passed,omitempty"`
	Score        *int32               `json:"score,omitempty"`
	Plugins      []LinterResultPlugin `json:"plugins,omitempty"`
}

LinterResult struct for LinterResult

func NewLinterResult added in v0.1.7

func NewLinterResult() *LinterResult

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

func NewLinterResultWithDefaults added in v0.1.7

func NewLinterResultWithDefaults() *LinterResult

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

func (*LinterResult) GetMinimumScore added in v0.1.7

func (o *LinterResult) GetMinimumScore() int32

GetMinimumScore returns the MinimumScore field value if set, zero value otherwise.

func (*LinterResult) GetMinimumScoreOk added in v0.1.7

func (o *LinterResult) GetMinimumScoreOk() (*int32, bool)

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

func (*LinterResult) GetPassed added in v0.1.7

func (o *LinterResult) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*LinterResult) GetPassedOk added in v0.1.7

func (o *LinterResult) GetPassedOk() (*bool, bool)

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

func (*LinterResult) GetPlugins added in v0.1.7

func (o *LinterResult) GetPlugins() []LinterResultPlugin

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*LinterResult) GetPluginsOk added in v0.1.7

func (o *LinterResult) GetPluginsOk() ([]LinterResultPlugin, bool)

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

func (*LinterResult) GetScore added in v0.1.7

func (o *LinterResult) GetScore() int32

GetScore returns the Score field value if set, zero value otherwise.

func (*LinterResult) GetScoreOk added in v0.1.7

func (o *LinterResult) GetScoreOk() (*int32, bool)

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

func (*LinterResult) HasMinimumScore added in v0.1.7

func (o *LinterResult) HasMinimumScore() bool

HasMinimumScore returns a boolean if a field has been set.

func (*LinterResult) HasPassed added in v0.1.7

func (o *LinterResult) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResult) HasPlugins added in v0.1.7

func (o *LinterResult) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (*LinterResult) HasScore added in v0.1.7

func (o *LinterResult) HasScore() bool

HasScore returns a boolean if a field has been set.

func (LinterResult) MarshalJSON added in v0.1.7

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

func (*LinterResult) SetMinimumScore added in v0.1.7

func (o *LinterResult) SetMinimumScore(v int32)

SetMinimumScore gets a reference to the given int32 and assigns it to the MinimumScore field.

func (*LinterResult) SetPassed added in v0.1.7

func (o *LinterResult) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*LinterResult) SetPlugins added in v0.1.7

func (o *LinterResult) SetPlugins(v []LinterResultPlugin)

SetPlugins gets a reference to the given []LinterResultPlugin and assigns it to the Plugins field.

func (*LinterResult) SetScore added in v0.1.7

func (o *LinterResult) SetScore(v int32)

SetScore gets a reference to the given int32 and assigns it to the Score field.

func (LinterResult) ToMap added in v0.1.7

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

type LinterResultPlugin added in v0.1.7

type LinterResultPlugin struct {
	Name        *string                  `json:"name,omitempty"`
	Description *string                  `json:"description,omitempty"`
	Passed      *bool                    `json:"passed,omitempty"`
	Score       *int32                   `json:"score,omitempty"`
	Rules       []LinterResultPluginRule `json:"rules,omitempty"`
}

LinterResultPlugin struct for LinterResultPlugin

func NewLinterResultPlugin added in v0.1.7

func NewLinterResultPlugin() *LinterResultPlugin

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

func NewLinterResultPluginWithDefaults added in v0.1.7

func NewLinterResultPluginWithDefaults() *LinterResultPlugin

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

func (*LinterResultPlugin) GetDescription added in v0.1.7

func (o *LinterResultPlugin) GetDescription() string

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

func (*LinterResultPlugin) GetDescriptionOk added in v0.1.7

func (o *LinterResultPlugin) GetDescriptionOk() (*string, bool)

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

func (*LinterResultPlugin) GetName added in v0.1.7

func (o *LinterResultPlugin) GetName() string

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

func (*LinterResultPlugin) GetNameOk added in v0.1.7

func (o *LinterResultPlugin) 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 (*LinterResultPlugin) GetPassed added in v0.1.7

func (o *LinterResultPlugin) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*LinterResultPlugin) GetPassedOk added in v0.1.7

func (o *LinterResultPlugin) GetPassedOk() (*bool, bool)

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

func (*LinterResultPlugin) GetRules added in v0.1.7

GetRules returns the Rules field value if set, zero value otherwise.

func (*LinterResultPlugin) GetRulesOk added in v0.1.7

func (o *LinterResultPlugin) GetRulesOk() ([]LinterResultPluginRule, bool)

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

func (*LinterResultPlugin) GetScore added in v0.1.7

func (o *LinterResultPlugin) GetScore() int32

GetScore returns the Score field value if set, zero value otherwise.

func (*LinterResultPlugin) GetScoreOk added in v0.1.7

func (o *LinterResultPlugin) GetScoreOk() (*int32, bool)

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

func (*LinterResultPlugin) HasDescription added in v0.1.7

func (o *LinterResultPlugin) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPlugin) HasName added in v0.1.7

func (o *LinterResultPlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResultPlugin) HasPassed added in v0.1.7

func (o *LinterResultPlugin) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPlugin) HasRules added in v0.1.7

func (o *LinterResultPlugin) HasRules() bool

HasRules returns a boolean if a field has been set.

func (*LinterResultPlugin) HasScore added in v0.1.7

func (o *LinterResultPlugin) HasScore() bool

HasScore returns a boolean if a field has been set.

func (LinterResultPlugin) MarshalJSON added in v0.1.7

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

func (*LinterResultPlugin) SetDescription added in v0.1.7

func (o *LinterResultPlugin) SetDescription(v string)

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

func (*LinterResultPlugin) SetName added in v0.1.7

func (o *LinterResultPlugin) SetName(v string)

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

func (*LinterResultPlugin) SetPassed added in v0.1.7

func (o *LinterResultPlugin) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*LinterResultPlugin) SetRules added in v0.1.7

func (o *LinterResultPlugin) SetRules(v []LinterResultPluginRule)

SetRules gets a reference to the given []LinterResultPluginRule and assigns it to the Rules field.

func (*LinterResultPlugin) SetScore added in v0.1.7

func (o *LinterResultPlugin) SetScore(v int32)

SetScore gets a reference to the given int32 and assigns it to the Score field.

func (LinterResultPlugin) ToMap added in v0.1.7

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

type LinterResultPluginRule added in v0.1.7

type LinterResultPluginRule struct {
	Id               *string                        `json:"id,omitempty"`
	Name             *string                        `json:"name,omitempty"`
	Description      *string                        `json:"description,omitempty"`
	ErrorDescription *string                        `json:"errorDescription,omitempty"`
	Passed           *bool                          `json:"passed,omitempty"`
	Weight           *int32                         `json:"weight,omitempty"`
	Tips             []string                       `json:"tips,omitempty"`
	Results          []LinterResultPluginRuleResult `json:"results,omitempty"`
	Level            *string                        `json:"level,omitempty"`
}

LinterResultPluginRule struct for LinterResultPluginRule

func NewLinterResultPluginRule added in v0.1.7

func NewLinterResultPluginRule() *LinterResultPluginRule

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

func NewLinterResultPluginRuleWithDefaults added in v0.1.7

func NewLinterResultPluginRuleWithDefaults() *LinterResultPluginRule

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

func (*LinterResultPluginRule) GetDescription added in v0.1.7

func (o *LinterResultPluginRule) GetDescription() string

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

func (*LinterResultPluginRule) GetDescriptionOk added in v0.1.7

func (o *LinterResultPluginRule) GetDescriptionOk() (*string, bool)

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

func (*LinterResultPluginRule) GetErrorDescription added in v0.1.7

func (o *LinterResultPluginRule) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetErrorDescriptionOk added in v0.1.7

func (o *LinterResultPluginRule) GetErrorDescriptionOk() (*string, bool)

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

func (*LinterResultPluginRule) GetId added in v0.1.7

func (o *LinterResultPluginRule) GetId() string

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

func (*LinterResultPluginRule) GetIdOk added in v0.1.7

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

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

func (*LinterResultPluginRule) GetLevel added in v0.1.7

func (o *LinterResultPluginRule) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetLevelOk added in v0.1.7

func (o *LinterResultPluginRule) GetLevelOk() (*string, bool)

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

func (*LinterResultPluginRule) GetName added in v0.1.7

func (o *LinterResultPluginRule) GetName() string

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

func (*LinterResultPluginRule) GetNameOk added in v0.1.7

func (o *LinterResultPluginRule) 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 (*LinterResultPluginRule) GetPassed added in v0.1.7

func (o *LinterResultPluginRule) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetPassedOk added in v0.1.7

func (o *LinterResultPluginRule) GetPassedOk() (*bool, bool)

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

func (*LinterResultPluginRule) GetResults added in v0.1.7

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

func (*LinterResultPluginRule) GetResultsOk added in v0.1.7

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 (*LinterResultPluginRule) GetTips added in v0.1.7

func (o *LinterResultPluginRule) GetTips() []string

GetTips returns the Tips field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetTipsOk added in v0.1.7

func (o *LinterResultPluginRule) GetTipsOk() ([]string, bool)

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

func (*LinterResultPluginRule) GetWeight added in v0.1.7

func (o *LinterResultPluginRule) GetWeight() int32

GetWeight returns the Weight field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetWeightOk added in v0.1.7

func (o *LinterResultPluginRule) GetWeightOk() (*int32, bool)

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

func (*LinterResultPluginRule) HasDescription added in v0.1.7

func (o *LinterResultPluginRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasErrorDescription added in v0.1.7

func (o *LinterResultPluginRule) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasId added in v0.1.7

func (o *LinterResultPluginRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasLevel added in v0.1.7

func (o *LinterResultPluginRule) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasName added in v0.1.7

func (o *LinterResultPluginRule) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasPassed added in v0.1.7

func (o *LinterResultPluginRule) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasResults added in v0.1.7

func (o *LinterResultPluginRule) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasTips added in v0.1.7

func (o *LinterResultPluginRule) HasTips() bool

HasTips returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasWeight added in v0.1.7

func (o *LinterResultPluginRule) HasWeight() bool

HasWeight returns a boolean if a field has been set.

func (LinterResultPluginRule) MarshalJSON added in v0.1.7

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

func (*LinterResultPluginRule) SetDescription added in v0.1.7

func (o *LinterResultPluginRule) SetDescription(v string)

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

func (*LinterResultPluginRule) SetErrorDescription added in v0.1.7

func (o *LinterResultPluginRule) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*LinterResultPluginRule) SetId added in v0.1.7

func (o *LinterResultPluginRule) SetId(v string)

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

func (*LinterResultPluginRule) SetLevel added in v0.1.7

func (o *LinterResultPluginRule) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*LinterResultPluginRule) SetName added in v0.1.7

func (o *LinterResultPluginRule) SetName(v string)

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

func (*LinterResultPluginRule) SetPassed added in v0.1.7

func (o *LinterResultPluginRule) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*LinterResultPluginRule) SetResults added in v0.1.7

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

func (*LinterResultPluginRule) SetTips added in v0.1.7

func (o *LinterResultPluginRule) SetTips(v []string)

SetTips gets a reference to the given []string and assigns it to the Tips field.

func (*LinterResultPluginRule) SetWeight added in v0.1.7

func (o *LinterResultPluginRule) SetWeight(v int32)

SetWeight gets a reference to the given int32 and assigns it to the Weight field.

func (LinterResultPluginRule) ToMap added in v0.1.7

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

type LinterResultPluginRuleResult added in v0.1.7

type LinterResultPluginRuleResult struct {
	SpanId   *string                             `json:"spanId,omitempty"`
	Errors   []LinterResultPluginRuleResultError `json:"errors,omitempty"`
	Passed   *bool                               `json:"passed,omitempty"`
	Severity *string                             `json:"severity,omitempty"`
}

LinterResultPluginRuleResult struct for LinterResultPluginRuleResult

func NewLinterResultPluginRuleResult added in v0.1.7

func NewLinterResultPluginRuleResult() *LinterResultPluginRuleResult

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

func NewLinterResultPluginRuleResultWithDefaults added in v0.1.7

func NewLinterResultPluginRuleResultWithDefaults() *LinterResultPluginRuleResult

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

func (*LinterResultPluginRuleResult) GetErrors added in v0.1.7

GetErrors returns the Errors field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetErrorsOk added in v0.1.7

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

func (*LinterResultPluginRuleResult) GetPassed added in v0.1.7

func (o *LinterResultPluginRuleResult) GetPassed() bool

GetPassed returns the Passed field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetPassedOk added in v0.1.7

func (o *LinterResultPluginRuleResult) GetPassedOk() (*bool, bool)

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

func (*LinterResultPluginRuleResult) GetSeverity added in v0.1.7

func (o *LinterResultPluginRuleResult) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetSeverityOk added in v0.1.7

func (o *LinterResultPluginRuleResult) GetSeverityOk() (*string, bool)

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

func (*LinterResultPluginRuleResult) GetSpanId added in v0.1.7

func (o *LinterResultPluginRuleResult) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetSpanIdOk added in v0.1.7

func (o *LinterResultPluginRuleResult) GetSpanIdOk() (*string, bool)

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

func (*LinterResultPluginRuleResult) HasErrors added in v0.1.7

func (o *LinterResultPluginRuleResult) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasPassed added in v0.1.7

func (o *LinterResultPluginRuleResult) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasSeverity added in v0.1.7

func (o *LinterResultPluginRuleResult) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasSpanId added in v0.1.7

func (o *LinterResultPluginRuleResult) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (LinterResultPluginRuleResult) MarshalJSON added in v0.1.7

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

func (*LinterResultPluginRuleResult) SetErrors added in v0.1.7

SetErrors gets a reference to the given []LinterResultPluginRuleResultError and assigns it to the Errors field.

func (*LinterResultPluginRuleResult) SetPassed added in v0.1.7

func (o *LinterResultPluginRuleResult) SetPassed(v bool)

SetPassed gets a reference to the given bool and assigns it to the Passed field.

func (*LinterResultPluginRuleResult) SetSeverity added in v0.1.7

func (o *LinterResultPluginRuleResult) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*LinterResultPluginRuleResult) SetSpanId added in v0.1.7

func (o *LinterResultPluginRuleResult) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (LinterResultPluginRuleResult) ToMap added in v0.1.7

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

type LinterResultPluginRuleResultError added in v0.1.7

type LinterResultPluginRuleResultError struct {
	Value       *string  `json:"value,omitempty"`
	Expected    *string  `json:"expected,omitempty"`
	Description *string  `json:"description,omitempty"`
	Suggestions []string `json:"suggestions,omitempty"`
}

LinterResultPluginRuleResultError struct for LinterResultPluginRuleResultError

func NewLinterResultPluginRuleResultError added in v0.1.7

func NewLinterResultPluginRuleResultError() *LinterResultPluginRuleResultError

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

func NewLinterResultPluginRuleResultErrorWithDefaults added in v0.1.7

func NewLinterResultPluginRuleResultErrorWithDefaults() *LinterResultPluginRuleResultError

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

func (*LinterResultPluginRuleResultError) GetDescription added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetDescription() string

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

func (*LinterResultPluginRuleResultError) GetDescriptionOk added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetDescriptionOk() (*string, bool)

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

func (*LinterResultPluginRuleResultError) GetExpected added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetExpected() string

GetExpected returns the Expected field value if set, zero value otherwise.

func (*LinterResultPluginRuleResultError) GetExpectedOk added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetExpectedOk() (*string, bool)

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

func (*LinterResultPluginRuleResultError) GetSuggestions added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetSuggestions() []string

GetSuggestions returns the Suggestions field value if set, zero value otherwise.

func (*LinterResultPluginRuleResultError) GetSuggestionsOk added in v0.1.7

func (o *LinterResultPluginRuleResultError) GetSuggestionsOk() ([]string, bool)

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

func (*LinterResultPluginRuleResultError) GetValue added in v0.1.7

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

func (*LinterResultPluginRuleResultError) GetValueOk added in v0.1.7

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

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

func (*LinterResultPluginRuleResultError) HasDescription added in v0.1.7

func (o *LinterResultPluginRuleResultError) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasExpected added in v0.1.7

func (o *LinterResultPluginRuleResultError) HasExpected() bool

HasExpected returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasSuggestions added in v0.1.7

func (o *LinterResultPluginRuleResultError) HasSuggestions() bool

HasSuggestions returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasValue added in v0.1.7

HasValue returns a boolean if a field has been set.

func (LinterResultPluginRuleResultError) MarshalJSON added in v0.1.7

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

func (*LinterResultPluginRuleResultError) SetDescription added in v0.1.7

func (o *LinterResultPluginRuleResultError) SetDescription(v string)

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

func (*LinterResultPluginRuleResultError) SetExpected added in v0.1.7

func (o *LinterResultPluginRuleResultError) SetExpected(v string)

SetExpected gets a reference to the given string and assigns it to the Expected field.

func (*LinterResultPluginRuleResultError) SetSuggestions added in v0.1.7

func (o *LinterResultPluginRuleResultError) SetSuggestions(v []string)

SetSuggestions gets a reference to the given []string and assigns it to the Suggestions field.

func (*LinterResultPluginRuleResultError) SetValue added in v0.1.7

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

func (LinterResultPluginRuleResultError) ToMap added in v0.1.7

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

type ListDemos200Response added in v0.1.7

type ListDemos200Response struct {
	Count *int32 `json:"count,omitempty"`
	Items []Demo `json:"items,omitempty"`
}

ListDemos200Response struct for ListDemos200Response

func NewListDemos200Response added in v0.1.7

func NewListDemos200Response() *ListDemos200Response

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

func NewListDemos200ResponseWithDefaults added in v0.1.7

func NewListDemos200ResponseWithDefaults() *ListDemos200Response

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

func (*ListDemos200Response) GetCount added in v0.1.7

func (o *ListDemos200Response) GetCount() int32

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

func (*ListDemos200Response) GetCountOk added in v0.1.7

func (o *ListDemos200Response) 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.

func (*ListDemos200Response) GetItems added in v0.1.7

func (o *ListDemos200Response) GetItems() []Demo

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

func (*ListDemos200Response) GetItemsOk added in v0.1.7

func (o *ListDemos200Response) GetItemsOk() ([]Demo, bool)

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

func (*ListDemos200Response) HasCount added in v0.1.7

func (o *ListDemos200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListDemos200Response) HasItems added in v0.1.7

func (o *ListDemos200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListDemos200Response) MarshalJSON added in v0.1.7

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

func (*ListDemos200Response) SetCount added in v0.1.7

func (o *ListDemos200Response) SetCount(v int32)

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

func (*ListDemos200Response) SetItems added in v0.1.7

func (o *ListDemos200Response) SetItems(v []Demo)

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

func (ListDemos200Response) ToMap added in v0.1.7

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

type ListVariableSets200Response added in v0.1.7

type ListVariableSets200Response struct {
	Count *int32                `json:"count,omitempty"`
	Items []VariableSetResource `json:"items,omitempty"`
}

ListVariableSets200Response struct for ListVariableSets200Response

func NewListVariableSets200Response added in v0.1.7

func NewListVariableSets200Response() *ListVariableSets200Response

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

func NewListVariableSets200ResponseWithDefaults added in v0.1.7

func NewListVariableSets200ResponseWithDefaults() *ListVariableSets200Response

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

func (*ListVariableSets200Response) GetCount added in v0.1.7

func (o *ListVariableSets200Response) GetCount() int32

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

func (*ListVariableSets200Response) GetCountOk added in v0.1.7

func (o *ListVariableSets200Response) 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.

func (*ListVariableSets200Response) GetItems added in v0.1.7

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

func (*ListVariableSets200Response) GetItemsOk added in v0.1.7

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

func (*ListVariableSets200Response) HasCount added in v0.1.7

func (o *ListVariableSets200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListVariableSets200Response) HasItems added in v0.1.7

func (o *ListVariableSets200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListVariableSets200Response) MarshalJSON added in v0.1.7

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

func (*ListVariableSets200Response) SetCount added in v0.1.7

func (o *ListVariableSets200Response) SetCount(v int32)

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

func (*ListVariableSets200Response) SetItems added in v0.1.7

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

func (ListVariableSets200Response) ToMap added in v0.1.7

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

type MappedNullable added in v0.1.7

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

type MissingVariable added in v0.1.7

type MissingVariable struct {
	TestId    *string    `json:"testId,omitempty"`
	Variables []Variable `json:"variables,omitempty"`
}

MissingVariable struct for MissingVariable

func NewMissingVariable added in v0.1.7

func NewMissingVariable() *MissingVariable

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

func NewMissingVariableWithDefaults added in v0.1.7

func NewMissingVariableWithDefaults() *MissingVariable

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

func (*MissingVariable) GetTestId added in v0.1.7

func (o *MissingVariable) GetTestId() string

GetTestId returns the TestId field value if set, zero value otherwise.

func (*MissingVariable) GetTestIdOk added in v0.1.7

func (o *MissingVariable) GetTestIdOk() (*string, bool)

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

func (*MissingVariable) GetVariables added in v0.1.7

func (o *MissingVariable) GetVariables() []Variable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*MissingVariable) GetVariablesOk added in v0.1.7

func (o *MissingVariable) GetVariablesOk() ([]Variable, bool)

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

func (*MissingVariable) HasTestId added in v0.1.7

func (o *MissingVariable) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*MissingVariable) HasVariables added in v0.1.7

func (o *MissingVariable) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (MissingVariable) MarshalJSON added in v0.1.7

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

func (*MissingVariable) SetTestId added in v0.1.7

func (o *MissingVariable) SetTestId(v string)

SetTestId gets a reference to the given string and assigns it to the TestId field.

func (*MissingVariable) SetVariables added in v0.1.7

func (o *MissingVariable) SetVariables(v []Variable)

SetVariables gets a reference to the given []Variable and assigns it to the Variables field.

func (MissingVariable) ToMap added in v0.1.7

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

type MissingVariablesError added in v0.1.7

type MissingVariablesError struct {
	MissingVariables []MissingVariable `json:"missingVariables,omitempty"`
}

MissingVariablesError struct for MissingVariablesError

func NewMissingVariablesError added in v0.1.7

func NewMissingVariablesError() *MissingVariablesError

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

func NewMissingVariablesErrorWithDefaults added in v0.1.7

func NewMissingVariablesErrorWithDefaults() *MissingVariablesError

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

func (*MissingVariablesError) GetMissingVariables added in v0.1.7

func (o *MissingVariablesError) GetMissingVariables() []MissingVariable

GetMissingVariables returns the MissingVariables field value if set, zero value otherwise.

func (*MissingVariablesError) GetMissingVariablesOk added in v0.1.7

func (o *MissingVariablesError) GetMissingVariablesOk() ([]MissingVariable, bool)

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

func (*MissingVariablesError) HasMissingVariables added in v0.1.7

func (o *MissingVariablesError) HasMissingVariables() bool

HasMissingVariables returns a boolean if a field has been set.

func (MissingVariablesError) MarshalJSON added in v0.1.7

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

func (*MissingVariablesError) SetMissingVariables added in v0.1.7

func (o *MissingVariablesError) SetMissingVariables(v []MissingVariable)

SetMissingVariables gets a reference to the given []MissingVariable and assigns it to the MissingVariables field.

func (MissingVariablesError) ToMap added in v0.1.7

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

type NullableAssertionResult

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

func NewNullableAssertionResult

func NewNullableAssertionResult(val *AssertionResult) *NullableAssertionResult

func (NullableAssertionResult) Get

func (NullableAssertionResult) IsSet

func (v NullableAssertionResult) IsSet() bool

func (NullableAssertionResult) MarshalJSON

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

func (*NullableAssertionResult) Set

func (*NullableAssertionResult) UnmarshalJSON

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

func (*NullableAssertionResult) Unset

func (v *NullableAssertionResult) Unset()

type NullableAssertionResults

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

func NewNullableAssertionResults

func NewNullableAssertionResults(val *AssertionResults) *NullableAssertionResults

func (NullableAssertionResults) Get

func (NullableAssertionResults) IsSet

func (v NullableAssertionResults) IsSet() bool

func (NullableAssertionResults) MarshalJSON

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

func (*NullableAssertionResults) Set

func (*NullableAssertionResults) UnmarshalJSON

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

func (*NullableAssertionResults) Unset

func (v *NullableAssertionResults) Unset()

type NullableAssertionResultsResultsInner added in v0.1.7

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

func NewNullableAssertionResultsResultsInner added in v0.1.7

func NewNullableAssertionResultsResultsInner(val *AssertionResultsResultsInner) *NullableAssertionResultsResultsInner

func (NullableAssertionResultsResultsInner) Get added in v0.1.7

func (NullableAssertionResultsResultsInner) IsSet added in v0.1.7

func (NullableAssertionResultsResultsInner) MarshalJSON added in v0.1.7

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

func (*NullableAssertionResultsResultsInner) Set added in v0.1.7

func (*NullableAssertionResultsResultsInner) UnmarshalJSON added in v0.1.7

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

func (*NullableAssertionResultsResultsInner) Unset added in v0.1.7

type NullableAssertionSpanResult

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

func NewNullableAssertionSpanResult

func NewNullableAssertionSpanResult(val *AssertionSpanResult) *NullableAssertionSpanResult

func (NullableAssertionSpanResult) Get

func (NullableAssertionSpanResult) IsSet

func (NullableAssertionSpanResult) MarshalJSON

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

func (*NullableAssertionSpanResult) Set

func (*NullableAssertionSpanResult) UnmarshalJSON

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

func (*NullableAssertionSpanResult) Unset

func (v *NullableAssertionSpanResult) Unset()

type NullableAwsXRay added in v0.1.7

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

func NewNullableAwsXRay added in v0.1.7

func NewNullableAwsXRay(val *AwsXRay) *NullableAwsXRay

func (NullableAwsXRay) Get added in v0.1.7

func (v NullableAwsXRay) Get() *AwsXRay

func (NullableAwsXRay) IsSet added in v0.1.7

func (v NullableAwsXRay) IsSet() bool

func (NullableAwsXRay) MarshalJSON added in v0.1.7

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

func (*NullableAwsXRay) Set added in v0.1.7

func (v *NullableAwsXRay) Set(val *AwsXRay)

func (*NullableAwsXRay) UnmarshalJSON added in v0.1.7

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

func (*NullableAwsXRay) Unset added in v0.1.7

func (v *NullableAwsXRay) Unset()

type NullableAzureAppInsights added in v0.1.7

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

func NewNullableAzureAppInsights added in v0.1.7

func NewNullableAzureAppInsights(val *AzureAppInsights) *NullableAzureAppInsights

func (NullableAzureAppInsights) Get added in v0.1.7

func (NullableAzureAppInsights) IsSet added in v0.1.7

func (v NullableAzureAppInsights) IsSet() bool

func (NullableAzureAppInsights) MarshalJSON added in v0.1.7

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

func (*NullableAzureAppInsights) Set added in v0.1.7

func (*NullableAzureAppInsights) UnmarshalJSON added in v0.1.7

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

func (*NullableAzureAppInsights) Unset added in v0.1.7

func (v *NullableAzureAppInsights) Unset()

type NullableBaseClient added in v0.1.7

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

func NewNullableBaseClient added in v0.1.7

func NewNullableBaseClient(val *BaseClient) *NullableBaseClient

func (NullableBaseClient) Get added in v0.1.7

func (v NullableBaseClient) Get() *BaseClient

func (NullableBaseClient) IsSet added in v0.1.7

func (v NullableBaseClient) IsSet() bool

func (NullableBaseClient) MarshalJSON added in v0.1.7

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

func (*NullableBaseClient) Set added in v0.1.7

func (v *NullableBaseClient) Set(val *BaseClient)

func (*NullableBaseClient) UnmarshalJSON added in v0.1.7

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

func (*NullableBaseClient) Unset added in v0.1.7

func (v *NullableBaseClient) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableConfigurationResource added in v0.1.7

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

func NewNullableConfigurationResource added in v0.1.7

func NewNullableConfigurationResource(val *ConfigurationResource) *NullableConfigurationResource

func (NullableConfigurationResource) Get added in v0.1.7

func (NullableConfigurationResource) IsSet added in v0.1.7

func (NullableConfigurationResource) MarshalJSON added in v0.1.7

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

func (*NullableConfigurationResource) Set added in v0.1.7

func (*NullableConfigurationResource) UnmarshalJSON added in v0.1.7

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

func (*NullableConfigurationResource) Unset added in v0.1.7

func (v *NullableConfigurationResource) Unset()

type NullableConfigurationResourceList added in v0.1.7

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

func NewNullableConfigurationResourceList added in v0.1.7

func NewNullableConfigurationResourceList(val *ConfigurationResourceList) *NullableConfigurationResourceList

func (NullableConfigurationResourceList) Get added in v0.1.7

func (NullableConfigurationResourceList) IsSet added in v0.1.7

func (NullableConfigurationResourceList) MarshalJSON added in v0.1.7

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

func (*NullableConfigurationResourceList) Set added in v0.1.7

func (*NullableConfigurationResourceList) UnmarshalJSON added in v0.1.7

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

func (*NullableConfigurationResourceList) Unset added in v0.1.7

type NullableConfigurationResourceSpec added in v0.1.7

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

func NewNullableConfigurationResourceSpec added in v0.1.7

func NewNullableConfigurationResourceSpec(val *ConfigurationResourceSpec) *NullableConfigurationResourceSpec

func (NullableConfigurationResourceSpec) Get added in v0.1.7

func (NullableConfigurationResourceSpec) IsSet added in v0.1.7

func (NullableConfigurationResourceSpec) MarshalJSON added in v0.1.7

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

func (*NullableConfigurationResourceSpec) Set added in v0.1.7

func (*NullableConfigurationResourceSpec) UnmarshalJSON added in v0.1.7

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

func (*NullableConfigurationResourceSpec) Unset added in v0.1.7

type NullableConnectionResult

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

func NewNullableConnectionResult

func NewNullableConnectionResult(val *ConnectionResult) *NullableConnectionResult

func (NullableConnectionResult) Get

func (NullableConnectionResult) IsSet

func (v NullableConnectionResult) IsSet() bool

func (NullableConnectionResult) MarshalJSON

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

func (*NullableConnectionResult) Set

func (*NullableConnectionResult) UnmarshalJSON

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

func (*NullableConnectionResult) Unset

func (v *NullableConnectionResult) Unset()

type NullableConnectionTestStep

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

func NewNullableConnectionTestStep

func NewNullableConnectionTestStep(val *ConnectionTestStep) *NullableConnectionTestStep

func (NullableConnectionTestStep) Get

func (NullableConnectionTestStep) IsSet

func (v NullableConnectionTestStep) IsSet() bool

func (NullableConnectionTestStep) MarshalJSON

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

func (*NullableConnectionTestStep) Set

func (*NullableConnectionTestStep) UnmarshalJSON

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

func (*NullableConnectionTestStep) Unset

func (v *NullableConnectionTestStep) Unset()

type NullableDataStore

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

func NewNullableDataStore

func NewNullableDataStore(val *DataStore) *NullableDataStore

func (NullableDataStore) Get

func (v NullableDataStore) Get() *DataStore

func (NullableDataStore) IsSet

func (v NullableDataStore) IsSet() bool

func (NullableDataStore) MarshalJSON

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

func (*NullableDataStore) Set

func (v *NullableDataStore) Set(val *DataStore)

func (*NullableDataStore) UnmarshalJSON

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

func (*NullableDataStore) Unset

func (v *NullableDataStore) Unset()

type NullableDataStoreList added in v0.1.7

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

func NewNullableDataStoreList added in v0.1.7

func NewNullableDataStoreList(val *DataStoreList) *NullableDataStoreList

func (NullableDataStoreList) Get added in v0.1.7

func (NullableDataStoreList) IsSet added in v0.1.7

func (v NullableDataStoreList) IsSet() bool

func (NullableDataStoreList) MarshalJSON added in v0.1.7

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

func (*NullableDataStoreList) Set added in v0.1.7

func (v *NullableDataStoreList) Set(val *DataStoreList)

func (*NullableDataStoreList) UnmarshalJSON added in v0.1.7

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

func (*NullableDataStoreList) Unset added in v0.1.7

func (v *NullableDataStoreList) Unset()

type NullableDataStoreResource added in v0.1.7

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

func NewNullableDataStoreResource added in v0.1.7

func NewNullableDataStoreResource(val *DataStoreResource) *NullableDataStoreResource

func (NullableDataStoreResource) Get added in v0.1.7

func (NullableDataStoreResource) IsSet added in v0.1.7

func (v NullableDataStoreResource) IsSet() bool

func (NullableDataStoreResource) MarshalJSON added in v0.1.7

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

func (*NullableDataStoreResource) Set added in v0.1.7

func (*NullableDataStoreResource) UnmarshalJSON added in v0.1.7

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

func (*NullableDataStoreResource) Unset added in v0.1.7

func (v *NullableDataStoreResource) Unset()

type NullableDemo added in v0.1.7

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

func NewNullableDemo added in v0.1.7

func NewNullableDemo(val *Demo) *NullableDemo

func (NullableDemo) Get added in v0.1.7

func (v NullableDemo) Get() *Demo

func (NullableDemo) IsSet added in v0.1.7

func (v NullableDemo) IsSet() bool

func (NullableDemo) MarshalJSON added in v0.1.7

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

func (*NullableDemo) Set added in v0.1.7

func (v *NullableDemo) Set(val *Demo)

func (*NullableDemo) UnmarshalJSON added in v0.1.7

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

func (*NullableDemo) Unset added in v0.1.7

func (v *NullableDemo) Unset()

type NullableDemoList added in v0.1.7

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

func NewNullableDemoList added in v0.1.7

func NewNullableDemoList(val *DemoList) *NullableDemoList

func (NullableDemoList) Get added in v0.1.7

func (v NullableDemoList) Get() *DemoList

func (NullableDemoList) IsSet added in v0.1.7

func (v NullableDemoList) IsSet() bool

func (NullableDemoList) MarshalJSON added in v0.1.7

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

func (*NullableDemoList) Set added in v0.1.7

func (v *NullableDemoList) Set(val *DemoList)

func (*NullableDemoList) UnmarshalJSON added in v0.1.7

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

func (*NullableDemoList) Unset added in v0.1.7

func (v *NullableDemoList) Unset()

type NullableDemoOpenTelemetryStore added in v0.1.7

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

func NewNullableDemoOpenTelemetryStore added in v0.1.7

func NewNullableDemoOpenTelemetryStore(val *DemoOpenTelemetryStore) *NullableDemoOpenTelemetryStore

func (NullableDemoOpenTelemetryStore) Get added in v0.1.7

func (NullableDemoOpenTelemetryStore) IsSet added in v0.1.7

func (NullableDemoOpenTelemetryStore) MarshalJSON added in v0.1.7

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

func (*NullableDemoOpenTelemetryStore) Set added in v0.1.7

func (*NullableDemoOpenTelemetryStore) UnmarshalJSON added in v0.1.7

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

func (*NullableDemoOpenTelemetryStore) Unset added in v0.1.7

func (v *NullableDemoOpenTelemetryStore) Unset()

type NullableDemoPokeshop added in v0.1.7

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

func NewNullableDemoPokeshop added in v0.1.7

func NewNullableDemoPokeshop(val *DemoPokeshop) *NullableDemoPokeshop

func (NullableDemoPokeshop) Get added in v0.1.7

func (NullableDemoPokeshop) IsSet added in v0.1.7

func (v NullableDemoPokeshop) IsSet() bool

func (NullableDemoPokeshop) MarshalJSON added in v0.1.7

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

func (*NullableDemoPokeshop) Set added in v0.1.7

func (v *NullableDemoPokeshop) Set(val *DemoPokeshop)

func (*NullableDemoPokeshop) UnmarshalJSON added in v0.1.7

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

func (*NullableDemoPokeshop) Unset added in v0.1.7

func (v *NullableDemoPokeshop) Unset()

type NullableDemoSpec added in v0.1.7

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

func NewNullableDemoSpec added in v0.1.7

func NewNullableDemoSpec(val *DemoSpec) *NullableDemoSpec

func (NullableDemoSpec) Get added in v0.1.7

func (v NullableDemoSpec) Get() *DemoSpec

func (NullableDemoSpec) IsSet added in v0.1.7

func (v NullableDemoSpec) IsSet() bool

func (NullableDemoSpec) MarshalJSON added in v0.1.7

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

func (*NullableDemoSpec) Set added in v0.1.7

func (v *NullableDemoSpec) Set(val *DemoSpec)

func (*NullableDemoSpec) UnmarshalJSON added in v0.1.7

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

func (*NullableDemoSpec) Unset added in v0.1.7

func (v *NullableDemoSpec) Unset()

type NullableElasticSearch

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

func NewNullableElasticSearch

func NewNullableElasticSearch(val *ElasticSearch) *NullableElasticSearch

func (NullableElasticSearch) Get

func (NullableElasticSearch) IsSet

func (v NullableElasticSearch) IsSet() bool

func (NullableElasticSearch) MarshalJSON

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

func (*NullableElasticSearch) Set

func (v *NullableElasticSearch) Set(val *ElasticSearch)

func (*NullableElasticSearch) UnmarshalJSON

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

func (*NullableElasticSearch) Unset

func (v *NullableElasticSearch) Unset()

type NullableExportedTestInformation

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

func (NullableExportedTestInformation) Get

func (NullableExportedTestInformation) IsSet

func (NullableExportedTestInformation) MarshalJSON

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

func (*NullableExportedTestInformation) Set

func (*NullableExportedTestInformation) UnmarshalJSON

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

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

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

func NewNullableGRPCClientSettings

func NewNullableGRPCClientSettings(val *GRPCClientSettings) *NullableGRPCClientSettings

func (NullableGRPCClientSettings) Get

func (NullableGRPCClientSettings) IsSet

func (v NullableGRPCClientSettings) IsSet() bool

func (NullableGRPCClientSettings) MarshalJSON

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

func (*NullableGRPCClientSettings) Set

func (*NullableGRPCClientSettings) UnmarshalJSON

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

func (*NullableGRPCClientSettings) Unset

func (v *NullableGRPCClientSettings) Unset()

type NullableGRPCHeader

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

func NewNullableGRPCHeader

func NewNullableGRPCHeader(val *GRPCHeader) *NullableGRPCHeader

func (NullableGRPCHeader) Get

func (v NullableGRPCHeader) Get() *GRPCHeader

func (NullableGRPCHeader) IsSet

func (v NullableGRPCHeader) IsSet() bool

func (NullableGRPCHeader) MarshalJSON

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

func (*NullableGRPCHeader) Set

func (v *NullableGRPCHeader) Set(val *GRPCHeader)

func (*NullableGRPCHeader) UnmarshalJSON

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

func (*NullableGRPCHeader) Unset

func (v *NullableGRPCHeader) Unset()

type NullableGRPCRequest

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

func NewNullableGRPCRequest

func NewNullableGRPCRequest(val *GRPCRequest) *NullableGRPCRequest

func (NullableGRPCRequest) Get

func (NullableGRPCRequest) IsSet

func (v NullableGRPCRequest) IsSet() bool

func (NullableGRPCRequest) MarshalJSON

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

func (*NullableGRPCRequest) Set

func (v *NullableGRPCRequest) Set(val *GRPCRequest)

func (*NullableGRPCRequest) UnmarshalJSON

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

func (*NullableGRPCRequest) Unset

func (v *NullableGRPCRequest) Unset()

type NullableGRPCResponse

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

func NewNullableGRPCResponse

func NewNullableGRPCResponse(val *GRPCResponse) *NullableGRPCResponse

func (NullableGRPCResponse) Get

func (NullableGRPCResponse) IsSet

func (v NullableGRPCResponse) IsSet() bool

func (NullableGRPCResponse) MarshalJSON

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

func (*NullableGRPCResponse) Set

func (v *NullableGRPCResponse) Set(val *GRPCResponse)

func (*NullableGRPCResponse) UnmarshalJSON

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

func (*NullableGRPCResponse) Unset

func (v *NullableGRPCResponse) Unset()

type NullableGetTestSuites200Response added in v0.1.7

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

func NewNullableGetTestSuites200Response added in v0.1.7

func NewNullableGetTestSuites200Response(val *GetTestSuites200Response) *NullableGetTestSuites200Response

func (NullableGetTestSuites200Response) Get added in v0.1.7

func (NullableGetTestSuites200Response) IsSet added in v0.1.7

func (NullableGetTestSuites200Response) MarshalJSON added in v0.1.7

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

func (*NullableGetTestSuites200Response) Set added in v0.1.7

func (*NullableGetTestSuites200Response) UnmarshalJSON added in v0.1.7

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

func (*NullableGetTestSuites200Response) Unset added in v0.1.7

type NullableHTTPAuth

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

func NewNullableHTTPAuth

func NewNullableHTTPAuth(val *HTTPAuth) *NullableHTTPAuth

func (NullableHTTPAuth) Get

func (v NullableHTTPAuth) Get() *HTTPAuth

func (NullableHTTPAuth) IsSet

func (v NullableHTTPAuth) IsSet() bool

func (NullableHTTPAuth) MarshalJSON

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

func (*NullableHTTPAuth) Set

func (v *NullableHTTPAuth) Set(val *HTTPAuth)

func (*NullableHTTPAuth) UnmarshalJSON

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

func (*NullableHTTPAuth) Unset

func (v *NullableHTTPAuth) Unset()

type NullableHTTPAuthApiKey

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

func NewNullableHTTPAuthApiKey

func NewNullableHTTPAuthApiKey(val *HTTPAuthApiKey) *NullableHTTPAuthApiKey

func (NullableHTTPAuthApiKey) Get

func (NullableHTTPAuthApiKey) IsSet

func (v NullableHTTPAuthApiKey) IsSet() bool

func (NullableHTTPAuthApiKey) MarshalJSON

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

func (*NullableHTTPAuthApiKey) Set

func (*NullableHTTPAuthApiKey) UnmarshalJSON

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

func (*NullableHTTPAuthApiKey) Unset

func (v *NullableHTTPAuthApiKey) Unset()

type NullableHTTPAuthBasic

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

func NewNullableHTTPAuthBasic

func NewNullableHTTPAuthBasic(val *HTTPAuthBasic) *NullableHTTPAuthBasic

func (NullableHTTPAuthBasic) Get

func (NullableHTTPAuthBasic) IsSet

func (v NullableHTTPAuthBasic) IsSet() bool

func (NullableHTTPAuthBasic) MarshalJSON

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

func (*NullableHTTPAuthBasic) Set

func (v *NullableHTTPAuthBasic) Set(val *HTTPAuthBasic)

func (*NullableHTTPAuthBasic) UnmarshalJSON

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

func (*NullableHTTPAuthBasic) Unset

func (v *NullableHTTPAuthBasic) Unset()

type NullableHTTPAuthBearer

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

func NewNullableHTTPAuthBearer

func NewNullableHTTPAuthBearer(val *HTTPAuthBearer) *NullableHTTPAuthBearer

func (NullableHTTPAuthBearer) Get

func (NullableHTTPAuthBearer) IsSet

func (v NullableHTTPAuthBearer) IsSet() bool

func (NullableHTTPAuthBearer) MarshalJSON

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

func (*NullableHTTPAuthBearer) Set

func (*NullableHTTPAuthBearer) UnmarshalJSON

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

func (*NullableHTTPAuthBearer) Unset

func (v *NullableHTTPAuthBearer) Unset()

type NullableHTTPClientSettings added in v0.1.7

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

func NewNullableHTTPClientSettings added in v0.1.7

func NewNullableHTTPClientSettings(val *HTTPClientSettings) *NullableHTTPClientSettings

func (NullableHTTPClientSettings) Get added in v0.1.7

func (NullableHTTPClientSettings) IsSet added in v0.1.7

func (v NullableHTTPClientSettings) IsSet() bool

func (NullableHTTPClientSettings) MarshalJSON added in v0.1.7

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

func (*NullableHTTPClientSettings) Set added in v0.1.7

func (*NullableHTTPClientSettings) UnmarshalJSON added in v0.1.7

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

func (*NullableHTTPClientSettings) Unset added in v0.1.7

func (v *NullableHTTPClientSettings) Unset()

type NullableHTTPHeader

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

func NewNullableHTTPHeader

func NewNullableHTTPHeader(val *HTTPHeader) *NullableHTTPHeader

func (NullableHTTPHeader) Get

func (v NullableHTTPHeader) Get() *HTTPHeader

func (NullableHTTPHeader) IsSet

func (v NullableHTTPHeader) IsSet() bool

func (NullableHTTPHeader) MarshalJSON

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

func (*NullableHTTPHeader) Set

func (v *NullableHTTPHeader) Set(val *HTTPHeader)

func (*NullableHTTPHeader) UnmarshalJSON

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

func (*NullableHTTPHeader) Unset

func (v *NullableHTTPHeader) Unset()

type NullableHTTPRequest

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

func NewNullableHTTPRequest

func NewNullableHTTPRequest(val *HTTPRequest) *NullableHTTPRequest

func (NullableHTTPRequest) Get

func (NullableHTTPRequest) IsSet

func (v NullableHTTPRequest) IsSet() bool

func (NullableHTTPRequest) MarshalJSON

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

func (*NullableHTTPRequest) Set

func (v *NullableHTTPRequest) Set(val *HTTPRequest)

func (*NullableHTTPRequest) UnmarshalJSON

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

func (*NullableHTTPRequest) Unset

func (v *NullableHTTPRequest) Unset()

type NullableHTTPResponse

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

func NewNullableHTTPResponse

func NewNullableHTTPResponse(val *HTTPResponse) *NullableHTTPResponse

func (NullableHTTPResponse) Get

func (NullableHTTPResponse) IsSet

func (v NullableHTTPResponse) IsSet() bool

func (NullableHTTPResponse) MarshalJSON

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

func (*NullableHTTPResponse) Set

func (v *NullableHTTPResponse) Set(val *HTTPResponse)

func (*NullableHTTPResponse) UnmarshalJSON

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

func (*NullableHTTPResponse) Unset

func (v *NullableHTTPResponse) 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 NullableKafkaAuthentication added in v0.1.7

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

func NewNullableKafkaAuthentication added in v0.1.7

func NewNullableKafkaAuthentication(val *KafkaAuthentication) *NullableKafkaAuthentication

func (NullableKafkaAuthentication) Get added in v0.1.7

func (NullableKafkaAuthentication) IsSet added in v0.1.7

func (NullableKafkaAuthentication) MarshalJSON added in v0.1.7

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

func (*NullableKafkaAuthentication) Set added in v0.1.7

func (*NullableKafkaAuthentication) UnmarshalJSON added in v0.1.7

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

func (*NullableKafkaAuthentication) Unset added in v0.1.7

func (v *NullableKafkaAuthentication) Unset()

type NullableKafkaMessageHeader added in v0.1.7

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

func NewNullableKafkaMessageHeader added in v0.1.7

func NewNullableKafkaMessageHeader(val *KafkaMessageHeader) *NullableKafkaMessageHeader

func (NullableKafkaMessageHeader) Get added in v0.1.7

func (NullableKafkaMessageHeader) IsSet added in v0.1.7

func (v NullableKafkaMessageHeader) IsSet() bool

func (NullableKafkaMessageHeader) MarshalJSON added in v0.1.7

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

func (*NullableKafkaMessageHeader) Set added in v0.1.7

func (*NullableKafkaMessageHeader) UnmarshalJSON added in v0.1.7

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

func (*NullableKafkaMessageHeader) Unset added in v0.1.7

func (v *NullableKafkaMessageHeader) Unset()

type NullableKafkaRequest added in v0.1.7

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

func NewNullableKafkaRequest added in v0.1.7

func NewNullableKafkaRequest(val *KafkaRequest) *NullableKafkaRequest

func (NullableKafkaRequest) Get added in v0.1.7

func (NullableKafkaRequest) IsSet added in v0.1.7

func (v NullableKafkaRequest) IsSet() bool

func (NullableKafkaRequest) MarshalJSON added in v0.1.7

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

func (*NullableKafkaRequest) Set added in v0.1.7

func (v *NullableKafkaRequest) Set(val *KafkaRequest)

func (*NullableKafkaRequest) UnmarshalJSON added in v0.1.7

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

func (*NullableKafkaRequest) Unset added in v0.1.7

func (v *NullableKafkaRequest) Unset()

type NullableKafkaResponse added in v0.1.7

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

func NewNullableKafkaResponse added in v0.1.7

func NewNullableKafkaResponse(val *KafkaResponse) *NullableKafkaResponse

func (NullableKafkaResponse) Get added in v0.1.7

func (NullableKafkaResponse) IsSet added in v0.1.7

func (v NullableKafkaResponse) IsSet() bool

func (NullableKafkaResponse) MarshalJSON added in v0.1.7

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

func (*NullableKafkaResponse) Set added in v0.1.7

func (v *NullableKafkaResponse) Set(val *KafkaResponse)

func (*NullableKafkaResponse) UnmarshalJSON added in v0.1.7

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

func (*NullableKafkaResponse) Unset added in v0.1.7

func (v *NullableKafkaResponse) Unset()

type NullableLinterResource added in v0.1.7

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

func NewNullableLinterResource added in v0.1.7

func NewNullableLinterResource(val *LinterResource) *NullableLinterResource

func (NullableLinterResource) Get added in v0.1.7

func (NullableLinterResource) IsSet added in v0.1.7

func (v NullableLinterResource) IsSet() bool

func (NullableLinterResource) MarshalJSON added in v0.1.7

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

func (*NullableLinterResource) Set added in v0.1.7

func (*NullableLinterResource) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResource) Unset added in v0.1.7

func (v *NullableLinterResource) Unset()

type NullableLinterResourceList added in v0.1.7

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

func NewNullableLinterResourceList added in v0.1.7

func NewNullableLinterResourceList(val *LinterResourceList) *NullableLinterResourceList

func (NullableLinterResourceList) Get added in v0.1.7

func (NullableLinterResourceList) IsSet added in v0.1.7

func (v NullableLinterResourceList) IsSet() bool

func (NullableLinterResourceList) MarshalJSON added in v0.1.7

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

func (*NullableLinterResourceList) Set added in v0.1.7

func (*NullableLinterResourceList) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResourceList) Unset added in v0.1.7

func (v *NullableLinterResourceList) Unset()

type NullableLinterResourcePlugin added in v0.1.7

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

func NewNullableLinterResourcePlugin added in v0.1.7

func NewNullableLinterResourcePlugin(val *LinterResourcePlugin) *NullableLinterResourcePlugin

func (NullableLinterResourcePlugin) Get added in v0.1.7

func (NullableLinterResourcePlugin) IsSet added in v0.1.7

func (NullableLinterResourcePlugin) MarshalJSON added in v0.1.7

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

func (*NullableLinterResourcePlugin) Set added in v0.1.7

func (*NullableLinterResourcePlugin) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResourcePlugin) Unset added in v0.1.7

func (v *NullableLinterResourcePlugin) Unset()

type NullableLinterResourceRule added in v0.1.7

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

func NewNullableLinterResourceRule added in v0.1.7

func NewNullableLinterResourceRule(val *LinterResourceRule) *NullableLinterResourceRule

func (NullableLinterResourceRule) Get added in v0.1.7

func (NullableLinterResourceRule) IsSet added in v0.1.7

func (v NullableLinterResourceRule) IsSet() bool

func (NullableLinterResourceRule) MarshalJSON added in v0.1.7

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

func (*NullableLinterResourceRule) Set added in v0.1.7

func (*NullableLinterResourceRule) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResourceRule) Unset added in v0.1.7

func (v *NullableLinterResourceRule) Unset()

type NullableLinterResourceSpec added in v0.1.7

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

func NewNullableLinterResourceSpec added in v0.1.7

func NewNullableLinterResourceSpec(val *LinterResourceSpec) *NullableLinterResourceSpec

func (NullableLinterResourceSpec) Get added in v0.1.7

func (NullableLinterResourceSpec) IsSet added in v0.1.7

func (v NullableLinterResourceSpec) IsSet() bool

func (NullableLinterResourceSpec) MarshalJSON added in v0.1.7

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

func (*NullableLinterResourceSpec) Set added in v0.1.7

func (*NullableLinterResourceSpec) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResourceSpec) Unset added in v0.1.7

func (v *NullableLinterResourceSpec) Unset()

type NullableLinterResult added in v0.1.7

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

func NewNullableLinterResult added in v0.1.7

func NewNullableLinterResult(val *LinterResult) *NullableLinterResult

func (NullableLinterResult) Get added in v0.1.7

func (NullableLinterResult) IsSet added in v0.1.7

func (v NullableLinterResult) IsSet() bool

func (NullableLinterResult) MarshalJSON added in v0.1.7

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

func (*NullableLinterResult) Set added in v0.1.7

func (v *NullableLinterResult) Set(val *LinterResult)

func (*NullableLinterResult) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResult) Unset added in v0.1.7

func (v *NullableLinterResult) Unset()

type NullableLinterResultPlugin added in v0.1.7

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

func NewNullableLinterResultPlugin added in v0.1.7

func NewNullableLinterResultPlugin(val *LinterResultPlugin) *NullableLinterResultPlugin

func (NullableLinterResultPlugin) Get added in v0.1.7

func (NullableLinterResultPlugin) IsSet added in v0.1.7

func (v NullableLinterResultPlugin) IsSet() bool

func (NullableLinterResultPlugin) MarshalJSON added in v0.1.7

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

func (*NullableLinterResultPlugin) Set added in v0.1.7

func (*NullableLinterResultPlugin) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResultPlugin) Unset added in v0.1.7

func (v *NullableLinterResultPlugin) Unset()

type NullableLinterResultPluginRule added in v0.1.7

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

func NewNullableLinterResultPluginRule added in v0.1.7

func NewNullableLinterResultPluginRule(val *LinterResultPluginRule) *NullableLinterResultPluginRule

func (NullableLinterResultPluginRule) Get added in v0.1.7

func (NullableLinterResultPluginRule) IsSet added in v0.1.7

func (NullableLinterResultPluginRule) MarshalJSON added in v0.1.7

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

func (*NullableLinterResultPluginRule) Set added in v0.1.7

func (*NullableLinterResultPluginRule) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResultPluginRule) Unset added in v0.1.7

func (v *NullableLinterResultPluginRule) Unset()

type NullableLinterResultPluginRuleResult added in v0.1.7

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

func NewNullableLinterResultPluginRuleResult added in v0.1.7

func NewNullableLinterResultPluginRuleResult(val *LinterResultPluginRuleResult) *NullableLinterResultPluginRuleResult

func (NullableLinterResultPluginRuleResult) Get added in v0.1.7

func (NullableLinterResultPluginRuleResult) IsSet added in v0.1.7

func (NullableLinterResultPluginRuleResult) MarshalJSON added in v0.1.7

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

func (*NullableLinterResultPluginRuleResult) Set added in v0.1.7

func (*NullableLinterResultPluginRuleResult) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResultPluginRuleResult) Unset added in v0.1.7

type NullableLinterResultPluginRuleResultError added in v0.1.7

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

func NewNullableLinterResultPluginRuleResultError added in v0.1.7

func NewNullableLinterResultPluginRuleResultError(val *LinterResultPluginRuleResultError) *NullableLinterResultPluginRuleResultError

func (NullableLinterResultPluginRuleResultError) Get added in v0.1.7

func (NullableLinterResultPluginRuleResultError) IsSet added in v0.1.7

func (NullableLinterResultPluginRuleResultError) MarshalJSON added in v0.1.7

func (*NullableLinterResultPluginRuleResultError) Set added in v0.1.7

func (*NullableLinterResultPluginRuleResultError) UnmarshalJSON added in v0.1.7

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

func (*NullableLinterResultPluginRuleResultError) Unset added in v0.1.7

type NullableListDemos200Response added in v0.1.7

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

func NewNullableListDemos200Response added in v0.1.7

func NewNullableListDemos200Response(val *ListDemos200Response) *NullableListDemos200Response

func (NullableListDemos200Response) Get added in v0.1.7

func (NullableListDemos200Response) IsSet added in v0.1.7

func (NullableListDemos200Response) MarshalJSON added in v0.1.7

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

func (*NullableListDemos200Response) Set added in v0.1.7

func (*NullableListDemos200Response) UnmarshalJSON added in v0.1.7

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

func (*NullableListDemos200Response) Unset added in v0.1.7

func (v *NullableListDemos200Response) Unset()

type NullableListVariableSets200Response added in v0.1.7

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

func NewNullableListVariableSets200Response added in v0.1.7

func NewNullableListVariableSets200Response(val *ListVariableSets200Response) *NullableListVariableSets200Response

func (NullableListVariableSets200Response) Get added in v0.1.7

func (NullableListVariableSets200Response) IsSet added in v0.1.7

func (NullableListVariableSets200Response) MarshalJSON added in v0.1.7

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

func (*NullableListVariableSets200Response) Set added in v0.1.7

func (*NullableListVariableSets200Response) UnmarshalJSON added in v0.1.7

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

func (*NullableListVariableSets200Response) Unset added in v0.1.7

type NullableMissingVariable added in v0.1.7

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

func NewNullableMissingVariable added in v0.1.7

func NewNullableMissingVariable(val *MissingVariable) *NullableMissingVariable

func (NullableMissingVariable) Get added in v0.1.7

func (NullableMissingVariable) IsSet added in v0.1.7

func (v NullableMissingVariable) IsSet() bool

func (NullableMissingVariable) MarshalJSON added in v0.1.7

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

func (*NullableMissingVariable) Set added in v0.1.7

func (*NullableMissingVariable) UnmarshalJSON added in v0.1.7

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

func (*NullableMissingVariable) Unset added in v0.1.7

func (v *NullableMissingVariable) Unset()

type NullableMissingVariablesError added in v0.1.7

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

func NewNullableMissingVariablesError added in v0.1.7

func NewNullableMissingVariablesError(val *MissingVariablesError) *NullableMissingVariablesError

func (NullableMissingVariablesError) Get added in v0.1.7

func (NullableMissingVariablesError) IsSet added in v0.1.7

func (NullableMissingVariablesError) MarshalJSON added in v0.1.7

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

func (*NullableMissingVariablesError) Set added in v0.1.7

func (*NullableMissingVariablesError) UnmarshalJSON added in v0.1.7

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

func (*NullableMissingVariablesError) Unset added in v0.1.7

func (v *NullableMissingVariablesError) Unset()

type NullableOutputInfo added in v0.1.7

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

func NewNullableOutputInfo added in v0.1.7

func NewNullableOutputInfo(val *OutputInfo) *NullableOutputInfo

func (NullableOutputInfo) Get added in v0.1.7

func (v NullableOutputInfo) Get() *OutputInfo

func (NullableOutputInfo) IsSet added in v0.1.7

func (v NullableOutputInfo) IsSet() bool

func (NullableOutputInfo) MarshalJSON added in v0.1.7

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

func (*NullableOutputInfo) Set added in v0.1.7

func (v *NullableOutputInfo) Set(val *OutputInfo)

func (*NullableOutputInfo) UnmarshalJSON added in v0.1.7

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

func (*NullableOutputInfo) Unset added in v0.1.7

func (v *NullableOutputInfo) Unset()

type NullablePollingInfo added in v0.1.7

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

func NewNullablePollingInfo added in v0.1.7

func NewNullablePollingInfo(val *PollingInfo) *NullablePollingInfo

func (NullablePollingInfo) Get added in v0.1.7

func (NullablePollingInfo) IsSet added in v0.1.7

func (v NullablePollingInfo) IsSet() bool

func (NullablePollingInfo) MarshalJSON added in v0.1.7

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

func (*NullablePollingInfo) Set added in v0.1.7

func (v *NullablePollingInfo) Set(val *PollingInfo)

func (*NullablePollingInfo) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingInfo) Unset added in v0.1.7

func (v *NullablePollingInfo) Unset()

type NullablePollingInfoPeriodic added in v0.1.7

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

func NewNullablePollingInfoPeriodic added in v0.1.7

func NewNullablePollingInfoPeriodic(val *PollingInfoPeriodic) *NullablePollingInfoPeriodic

func (NullablePollingInfoPeriodic) Get added in v0.1.7

func (NullablePollingInfoPeriodic) IsSet added in v0.1.7

func (NullablePollingInfoPeriodic) MarshalJSON added in v0.1.7

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

func (*NullablePollingInfoPeriodic) Set added in v0.1.7

func (*NullablePollingInfoPeriodic) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingInfoPeriodic) Unset added in v0.1.7

func (v *NullablePollingInfoPeriodic) Unset()

type NullablePollingProfile added in v0.1.7

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

func NewNullablePollingProfile added in v0.1.7

func NewNullablePollingProfile(val *PollingProfile) *NullablePollingProfile

func (NullablePollingProfile) Get added in v0.1.7

func (NullablePollingProfile) IsSet added in v0.1.7

func (v NullablePollingProfile) IsSet() bool

func (NullablePollingProfile) MarshalJSON added in v0.1.7

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

func (*NullablePollingProfile) Set added in v0.1.7

func (*NullablePollingProfile) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingProfile) Unset added in v0.1.7

func (v *NullablePollingProfile) Unset()

type NullablePollingProfileList added in v0.1.7

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

func NewNullablePollingProfileList added in v0.1.7

func NewNullablePollingProfileList(val *PollingProfileList) *NullablePollingProfileList

func (NullablePollingProfileList) Get added in v0.1.7

func (NullablePollingProfileList) IsSet added in v0.1.7

func (v NullablePollingProfileList) IsSet() bool

func (NullablePollingProfileList) MarshalJSON added in v0.1.7

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

func (*NullablePollingProfileList) Set added in v0.1.7

func (*NullablePollingProfileList) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingProfileList) Unset added in v0.1.7

func (v *NullablePollingProfileList) Unset()

type NullablePollingProfileSpec added in v0.1.7

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

func NewNullablePollingProfileSpec added in v0.1.7

func NewNullablePollingProfileSpec(val *PollingProfileSpec) *NullablePollingProfileSpec

func (NullablePollingProfileSpec) Get added in v0.1.7

func (NullablePollingProfileSpec) IsSet added in v0.1.7

func (v NullablePollingProfileSpec) IsSet() bool

func (NullablePollingProfileSpec) MarshalJSON added in v0.1.7

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

func (*NullablePollingProfileSpec) Set added in v0.1.7

func (*NullablePollingProfileSpec) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingProfileSpec) Unset added in v0.1.7

func (v *NullablePollingProfileSpec) Unset()

type NullablePollingProfileSpecPeriodic added in v0.1.7

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

func NewNullablePollingProfileSpecPeriodic added in v0.1.7

func NewNullablePollingProfileSpecPeriodic(val *PollingProfileSpecPeriodic) *NullablePollingProfileSpecPeriodic

func (NullablePollingProfileSpecPeriodic) Get added in v0.1.7

func (NullablePollingProfileSpecPeriodic) IsSet added in v0.1.7

func (NullablePollingProfileSpecPeriodic) MarshalJSON added in v0.1.7

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

func (*NullablePollingProfileSpecPeriodic) Set added in v0.1.7

func (*NullablePollingProfileSpecPeriodic) UnmarshalJSON added in v0.1.7

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

func (*NullablePollingProfileSpecPeriodic) Unset added in v0.1.7

type NullableRequiredGatesResult added in v0.1.7

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

func NewNullableRequiredGatesResult added in v0.1.7

func NewNullableRequiredGatesResult(val *RequiredGatesResult) *NullableRequiredGatesResult

func (NullableRequiredGatesResult) Get added in v0.1.7

func (NullableRequiredGatesResult) IsSet added in v0.1.7

func (NullableRequiredGatesResult) MarshalJSON added in v0.1.7

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

func (*NullableRequiredGatesResult) Set added in v0.1.7

func (*NullableRequiredGatesResult) UnmarshalJSON added in v0.1.7

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

func (*NullableRequiredGatesResult) Unset added in v0.1.7

func (v *NullableRequiredGatesResult) Unset()

type NullableResolveContext

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

func NewNullableResolveContext

func NewNullableResolveContext(val *ResolveContext) *NullableResolveContext

func (NullableResolveContext) Get

func (NullableResolveContext) IsSet

func (v NullableResolveContext) IsSet() bool

func (NullableResolveContext) MarshalJSON

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

func (*NullableResolveContext) Set

func (*NullableResolveContext) UnmarshalJSON

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

func (*NullableResolveContext) Unset

func (v *NullableResolveContext) Unset()

type NullableResolveRequestInfo

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

func NewNullableResolveRequestInfo

func NewNullableResolveRequestInfo(val *ResolveRequestInfo) *NullableResolveRequestInfo

func (NullableResolveRequestInfo) Get

func (NullableResolveRequestInfo) IsSet

func (v NullableResolveRequestInfo) IsSet() bool

func (NullableResolveRequestInfo) MarshalJSON

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

func (*NullableResolveRequestInfo) Set

func (*NullableResolveRequestInfo) UnmarshalJSON

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

func (*NullableResolveRequestInfo) Unset

func (v *NullableResolveRequestInfo) Unset()

type NullableResolveResponseInfo

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

func NewNullableResolveResponseInfo

func NewNullableResolveResponseInfo(val *ResolveResponseInfo) *NullableResolveResponseInfo

func (NullableResolveResponseInfo) Get

func (NullableResolveResponseInfo) IsSet

func (NullableResolveResponseInfo) MarshalJSON

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

func (*NullableResolveResponseInfo) Set

func (*NullableResolveResponseInfo) UnmarshalJSON

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

func (*NullableResolveResponseInfo) Unset

func (v *NullableResolveResponseInfo) Unset()

type NullableResource

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

func NewNullableResource

func NewNullableResource(val *Resource) *NullableResource

func (NullableResource) Get

func (v NullableResource) Get() *Resource

func (NullableResource) IsSet

func (v NullableResource) IsSet() bool

func (NullableResource) MarshalJSON

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

func (*NullableResource) Set

func (v *NullableResource) Set(val *Resource)

func (*NullableResource) UnmarshalJSON

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

func (*NullableResource) Unset

func (v *NullableResource) Unset()

type NullableRunInformation

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

func NewNullableRunInformation

func NewNullableRunInformation(val *RunInformation) *NullableRunInformation

func (NullableRunInformation) Get

func (NullableRunInformation) IsSet

func (v NullableRunInformation) IsSet() bool

func (NullableRunInformation) MarshalJSON

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

func (*NullableRunInformation) Set

func (*NullableRunInformation) UnmarshalJSON

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

func (*NullableRunInformation) Unset

func (v *NullableRunInformation) Unset()

type NullableSelectedSpansResult

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

func NewNullableSelectedSpansResult

func NewNullableSelectedSpansResult(val *SelectedSpansResult) *NullableSelectedSpansResult

func (NullableSelectedSpansResult) Get

func (NullableSelectedSpansResult) IsSet

func (NullableSelectedSpansResult) MarshalJSON

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

func (*NullableSelectedSpansResult) Set

func (*NullableSelectedSpansResult) UnmarshalJSON

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

func (*NullableSelectedSpansResult) Unset

func (v *NullableSelectedSpansResult) Unset()

type NullableSelector

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

func NewNullableSelector

func NewNullableSelector(val *Selector) *NullableSelector

func (NullableSelector) Get

func (v NullableSelector) Get() *Selector

func (NullableSelector) IsSet

func (v NullableSelector) IsSet() bool

func (NullableSelector) MarshalJSON

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

func (*NullableSelector) Set

func (v *NullableSelector) Set(val *Selector)

func (*NullableSelector) UnmarshalJSON

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

func (*NullableSelector) Unset

func (v *NullableSelector) Unset()

type NullableSelectorFilter

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

func NewNullableSelectorFilter

func NewNullableSelectorFilter(val *SelectorFilter) *NullableSelectorFilter

func (NullableSelectorFilter) Get

func (NullableSelectorFilter) IsSet

func (v NullableSelectorFilter) IsSet() bool

func (NullableSelectorFilter) MarshalJSON

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

func (*NullableSelectorFilter) Set

func (*NullableSelectorFilter) UnmarshalJSON

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

func (*NullableSelectorFilter) Unset

func (v *NullableSelectorFilter) Unset()

type NullableSelectorPseudoClass

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

func NewNullableSelectorPseudoClass

func NewNullableSelectorPseudoClass(val *SelectorPseudoClass) *NullableSelectorPseudoClass

func (NullableSelectorPseudoClass) Get

func (NullableSelectorPseudoClass) IsSet

func (NullableSelectorPseudoClass) MarshalJSON

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

func (*NullableSelectorPseudoClass) Set

func (*NullableSelectorPseudoClass) UnmarshalJSON

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

func (*NullableSelectorPseudoClass) Unset

func (v *NullableSelectorPseudoClass) Unset()

type NullableSignalFX

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

func NewNullableSignalFX

func NewNullableSignalFX(val *SignalFX) *NullableSignalFX

func (NullableSignalFX) Get

func (v NullableSignalFX) Get() *SignalFX

func (NullableSignalFX) IsSet

func (v NullableSignalFX) IsSet() bool

func (NullableSignalFX) MarshalJSON

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

func (*NullableSignalFX) Set

func (v *NullableSignalFX) Set(val *SignalFX)

func (*NullableSignalFX) UnmarshalJSON

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

func (*NullableSignalFX) Unset

func (v *NullableSignalFX) Unset()

type NullableSpan

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

func NewNullableSpan

func NewNullableSpan(val *Span) *NullableSpan

func (NullableSpan) Get

func (v NullableSpan) Get() *Span

func (NullableSpan) IsSet

func (v NullableSpan) IsSet() bool

func (NullableSpan) MarshalJSON

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

func (*NullableSpan) Set

func (v *NullableSpan) Set(val *Span)

func (*NullableSpan) UnmarshalJSON

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

func (*NullableSpan) Unset

func (v *NullableSpan) Unset()

type NullableSpanSelector

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

func NewNullableSpanSelector

func NewNullableSpanSelector(val *SpanSelector) *NullableSpanSelector

func (NullableSpanSelector) Get

func (NullableSpanSelector) IsSet

func (v NullableSpanSelector) IsSet() bool

func (NullableSpanSelector) MarshalJSON

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

func (*NullableSpanSelector) Set

func (v *NullableSpanSelector) Set(val *SpanSelector)

func (*NullableSpanSelector) UnmarshalJSON

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

func (*NullableSpanSelector) Unset

func (v *NullableSpanSelector) 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 NullableSupportedClients added in v0.1.7

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

func NewNullableSupportedClients added in v0.1.7

func NewNullableSupportedClients(val *SupportedClients) *NullableSupportedClients

func (NullableSupportedClients) Get added in v0.1.7

func (NullableSupportedClients) IsSet added in v0.1.7

func (v NullableSupportedClients) IsSet() bool

func (NullableSupportedClients) MarshalJSON added in v0.1.7

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

func (*NullableSupportedClients) Set added in v0.1.7

func (*NullableSupportedClients) UnmarshalJSON added in v0.1.7

func (v *NullableSupportedClients) UnmarshalJSON(src []byte) error

func (*NullableSupportedClients) Unset added in v0.1.7

func (v *NullableSupportedClients) Unset()

type NullableSupportedConnectionTypes added in v0.1.7

type NullableSupportedConnectionTypes struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedConnectionTypes added in v0.1.7

func NewNullableSupportedConnectionTypes(val *SupportedConnectionTypes) *NullableSupportedConnectionTypes

func (NullableSupportedConnectionTypes) Get added in v0.1.7

func (NullableSupportedConnectionTypes) IsSet added in v0.1.7

func (NullableSupportedConnectionTypes) MarshalJSON added in v0.1.7

func (v NullableSupportedConnectionTypes) MarshalJSON() ([]byte, error)

func (*NullableSupportedConnectionTypes) Set added in v0.1.7

func (*NullableSupportedConnectionTypes) UnmarshalJSON added in v0.1.7

func (v *NullableSupportedConnectionTypes) UnmarshalJSON(src []byte) error

func (*NullableSupportedConnectionTypes) Unset added in v0.1.7

type NullableSupportedDataStores

type NullableSupportedDataStores struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedDataStores

func NewNullableSupportedDataStores(val *SupportedDataStores) *NullableSupportedDataStores

func (NullableSupportedDataStores) Get

func (NullableSupportedDataStores) IsSet

func (NullableSupportedDataStores) MarshalJSON

func (v NullableSupportedDataStores) MarshalJSON() ([]byte, error)

func (*NullableSupportedDataStores) Set

func (*NullableSupportedDataStores) UnmarshalJSON

func (v *NullableSupportedDataStores) UnmarshalJSON(src []byte) error

func (*NullableSupportedDataStores) Unset

func (v *NullableSupportedDataStores) Unset()

type NullableSupportedGates added in v0.1.7

type NullableSupportedGates struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedGates added in v0.1.7

func NewNullableSupportedGates(val *SupportedGates) *NullableSupportedGates

func (NullableSupportedGates) Get added in v0.1.7

func (NullableSupportedGates) IsSet added in v0.1.7

func (v NullableSupportedGates) IsSet() bool

func (NullableSupportedGates) MarshalJSON added in v0.1.7

func (v NullableSupportedGates) MarshalJSON() ([]byte, error)

func (*NullableSupportedGates) Set added in v0.1.7

func (*NullableSupportedGates) UnmarshalJSON added in v0.1.7

func (v *NullableSupportedGates) UnmarshalJSON(src []byte) error

func (*NullableSupportedGates) Unset added in v0.1.7

func (v *NullableSupportedGates) Unset()

type NullableTLS

type NullableTLS struct {
	// contains filtered or unexported fields
}

func NewNullableTLS

func NewNullableTLS(val *TLS) *NullableTLS

func (NullableTLS) Get

func (v NullableTLS) Get() *TLS

func (NullableTLS) IsSet

func (v NullableTLS) IsSet() bool

func (NullableTLS) MarshalJSON

func (v NullableTLS) MarshalJSON() ([]byte, error)

func (*NullableTLS) Set

func (v *NullableTLS) Set(val *TLS)

func (*NullableTLS) UnmarshalJSON

func (v *NullableTLS) UnmarshalJSON(src []byte) error

func (*NullableTLS) Unset

func (v *NullableTLS) Unset()

type NullableTLSSetting

type NullableTLSSetting struct {
	// contains filtered or unexported fields
}

func NewNullableTLSSetting

func NewNullableTLSSetting(val *TLSSetting) *NullableTLSSetting

func (NullableTLSSetting) Get

func (v NullableTLSSetting) Get() *TLSSetting

func (NullableTLSSetting) IsSet

func (v NullableTLSSetting) IsSet() bool

func (NullableTLSSetting) MarshalJSON

func (v NullableTLSSetting) MarshalJSON() ([]byte, error)

func (*NullableTLSSetting) Set

func (v *NullableTLSSetting) Set(val *TLSSetting)

func (*NullableTLSSetting) UnmarshalJSON

func (v *NullableTLSSetting) UnmarshalJSON(src []byte) error

func (*NullableTLSSetting) Unset

func (v *NullableTLSSetting) Unset()

type NullableTRACEIDRequest

type NullableTRACEIDRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTRACEIDRequest

func NewNullableTRACEIDRequest(val *TRACEIDRequest) *NullableTRACEIDRequest

func (NullableTRACEIDRequest) Get

func (NullableTRACEIDRequest) IsSet

func (v NullableTRACEIDRequest) IsSet() bool

func (NullableTRACEIDRequest) MarshalJSON

func (v NullableTRACEIDRequest) MarshalJSON() ([]byte, error)

func (*NullableTRACEIDRequest) Set

func (*NullableTRACEIDRequest) UnmarshalJSON

func (v *NullableTRACEIDRequest) UnmarshalJSON(src []byte) error

func (*NullableTRACEIDRequest) Unset

func (v *NullableTRACEIDRequest) Unset()

type NullableTRACEIDResponse

type NullableTRACEIDResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTRACEIDResponse

func NewNullableTRACEIDResponse(val *TRACEIDResponse) *NullableTRACEIDResponse

func (NullableTRACEIDResponse) Get

func (NullableTRACEIDResponse) IsSet

func (v NullableTRACEIDResponse) IsSet() bool

func (NullableTRACEIDResponse) MarshalJSON

func (v NullableTRACEIDResponse) MarshalJSON() ([]byte, error)

func (*NullableTRACEIDResponse) Set

func (*NullableTRACEIDResponse) UnmarshalJSON

func (v *NullableTRACEIDResponse) UnmarshalJSON(src []byte) error

func (*NullableTRACEIDResponse) Unset

func (v *NullableTRACEIDResponse) Unset()

type NullableTest

type NullableTest struct {
	// contains filtered or unexported fields
}

func NewNullableTest

func NewNullableTest(val *Test) *NullableTest

func (NullableTest) Get

func (v NullableTest) Get() *Test

func (NullableTest) IsSet

func (v NullableTest) IsSet() bool

func (NullableTest) MarshalJSON

func (v NullableTest) MarshalJSON() ([]byte, error)

func (*NullableTest) Set

func (v *NullableTest) Set(val *Test)

func (*NullableTest) UnmarshalJSON

func (v *NullableTest) UnmarshalJSON(src []byte) error

func (*NullableTest) Unset

func (v *NullableTest) Unset()

type NullableTestConnectionResponse

type NullableTestConnectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableTestConnectionResponse) Get

func (NullableTestConnectionResponse) IsSet

func (NullableTestConnectionResponse) MarshalJSON

func (v NullableTestConnectionResponse) MarshalJSON() ([]byte, error)

func (*NullableTestConnectionResponse) Set

func (*NullableTestConnectionResponse) UnmarshalJSON

func (v *NullableTestConnectionResponse) UnmarshalJSON(src []byte) error

func (*NullableTestConnectionResponse) Unset

func (v *NullableTestConnectionResponse) Unset()

type NullableTestOutput

type NullableTestOutput struct {
	// contains filtered or unexported fields
}

func NewNullableTestOutput

func NewNullableTestOutput(val *TestOutput) *NullableTestOutput

func (NullableTestOutput) Get

func (v NullableTestOutput) Get() *TestOutput

func (NullableTestOutput) IsSet

func (v NullableTestOutput) IsSet() bool

func (NullableTestOutput) MarshalJSON

func (v NullableTestOutput) MarshalJSON() ([]byte, error)

func (*NullableTestOutput) Set

func (v *NullableTestOutput) Set(val *TestOutput)

func (*NullableTestOutput) UnmarshalJSON

func (v *NullableTestOutput) UnmarshalJSON(src []byte) error

func (*NullableTestOutput) Unset

func (v *NullableTestOutput) Unset()

type NullableTestResource added in v0.1.7

type NullableTestResource struct {
	// contains filtered or unexported fields
}

func NewNullableTestResource added in v0.1.7

func NewNullableTestResource(val *TestResource) *NullableTestResource

func (NullableTestResource) Get added in v0.1.7

func (NullableTestResource) IsSet added in v0.1.7

func (v NullableTestResource) IsSet() bool

func (NullableTestResource) MarshalJSON added in v0.1.7

func (v NullableTestResource) MarshalJSON() ([]byte, error)

func (*NullableTestResource) Set added in v0.1.7

func (v *NullableTestResource) Set(val *TestResource)

func (*NullableTestResource) UnmarshalJSON added in v0.1.7

func (v *NullableTestResource) UnmarshalJSON(src []byte) error

func (*NullableTestResource) Unset added in v0.1.7

func (v *NullableTestResource) Unset()

type NullableTestResourceList added in v0.1.7

type NullableTestResourceList struct {
	// contains filtered or unexported fields
}

func NewNullableTestResourceList added in v0.1.7

func NewNullableTestResourceList(val *TestResourceList) *NullableTestResourceList

func (NullableTestResourceList) Get added in v0.1.7

func (NullableTestResourceList) IsSet added in v0.1.7

func (v NullableTestResourceList) IsSet() bool

func (NullableTestResourceList) MarshalJSON added in v0.1.7

func (v NullableTestResourceList) MarshalJSON() ([]byte, error)

func (*NullableTestResourceList) Set added in v0.1.7

func (*NullableTestResourceList) UnmarshalJSON added in v0.1.7

func (v *NullableTestResourceList) UnmarshalJSON(src []byte) error

func (*NullableTestResourceList) Unset added in v0.1.7

func (v *NullableTestResourceList) Unset()

type NullableTestRun

type NullableTestRun struct {
	// contains filtered or unexported fields
}

func NewNullableTestRun

func NewNullableTestRun(val *TestRun) *NullableTestRun

func (NullableTestRun) Get

func (v NullableTestRun) Get() *TestRun

func (NullableTestRun) IsSet

func (v NullableTestRun) IsSet() bool

func (NullableTestRun) MarshalJSON

func (v NullableTestRun) MarshalJSON() ([]byte, error)

func (*NullableTestRun) Set

func (v *NullableTestRun) Set(val *TestRun)

func (*NullableTestRun) UnmarshalJSON

func (v *NullableTestRun) UnmarshalJSON(src []byte) error

func (*NullableTestRun) Unset

func (v *NullableTestRun) Unset()

type NullableTestRunEvent added in v0.1.7

type NullableTestRunEvent struct {
	// contains filtered or unexported fields
}

func NewNullableTestRunEvent added in v0.1.7

func NewNullableTestRunEvent(val *TestRunEvent) *NullableTestRunEvent

func (NullableTestRunEvent) Get added in v0.1.7

func (NullableTestRunEvent) IsSet added in v0.1.7

func (v NullableTestRunEvent) IsSet() bool

func (NullableTestRunEvent) MarshalJSON added in v0.1.7

func (v NullableTestRunEvent) MarshalJSON() ([]byte, error)

func (*NullableTestRunEvent) Set added in v0.1.7

func (v *NullableTestRunEvent) Set(val *TestRunEvent)

func (*NullableTestRunEvent) UnmarshalJSON added in v0.1.7

func (v *NullableTestRunEvent) UnmarshalJSON(src []byte) error

func (*NullableTestRunEvent) Unset added in v0.1.7

func (v *NullableTestRunEvent) Unset()

type NullableTestRunOutputsInner added in v0.1.7

type NullableTestRunOutputsInner struct {
	// contains filtered or unexported fields
}

func NewNullableTestRunOutputsInner added in v0.1.7

func NewNullableTestRunOutputsInner(val *TestRunOutputsInner) *NullableTestRunOutputsInner

func (NullableTestRunOutputsInner) Get added in v0.1.7

func (NullableTestRunOutputsInner) IsSet added in v0.1.7

func (NullableTestRunOutputsInner) MarshalJSON added in v0.1.7

func (v NullableTestRunOutputsInner) MarshalJSON() ([]byte, error)

func (*NullableTestRunOutputsInner) Set added in v0.1.7

func (*NullableTestRunOutputsInner) UnmarshalJSON added in v0.1.7

func (v *NullableTestRunOutputsInner) UnmarshalJSON(src []byte) error

func (*NullableTestRunOutputsInner) Unset added in v0.1.7

func (v *NullableTestRunOutputsInner) Unset()

type NullableTestSpec added in v0.1.7

type NullableTestSpec struct {
	// contains filtered or unexported fields
}

func NewNullableTestSpec added in v0.1.7

func NewNullableTestSpec(val *TestSpec) *NullableTestSpec

func (NullableTestSpec) Get added in v0.1.7

func (v NullableTestSpec) Get() *TestSpec

func (NullableTestSpec) IsSet added in v0.1.7

func (v NullableTestSpec) IsSet() bool

func (NullableTestSpec) MarshalJSON added in v0.1.7

func (v NullableTestSpec) MarshalJSON() ([]byte, error)

func (*NullableTestSpec) Set added in v0.1.7

func (v *NullableTestSpec) Set(val *TestSpec)

func (*NullableTestSpec) UnmarshalJSON added in v0.1.7

func (v *NullableTestSpec) UnmarshalJSON(src []byte) error

func (*NullableTestSpec) Unset added in v0.1.7

func (v *NullableTestSpec) Unset()

type NullableTestSpecs

type NullableTestSpecs struct {
	// contains filtered or unexported fields
}

func NewNullableTestSpecs

func NewNullableTestSpecs(val *TestSpecs) *NullableTestSpecs

func (NullableTestSpecs) Get

func (v NullableTestSpecs) Get() *TestSpecs

func (NullableTestSpecs) IsSet

func (v NullableTestSpecs) IsSet() bool

func (NullableTestSpecs) MarshalJSON

func (v NullableTestSpecs) MarshalJSON() ([]byte, error)

func (*NullableTestSpecs) Set

func (v *NullableTestSpecs) Set(val *TestSpecs)

func (*NullableTestSpecs) UnmarshalJSON

func (v *NullableTestSpecs) UnmarshalJSON(src []byte) error

func (*NullableTestSpecs) Unset

func (v *NullableTestSpecs) Unset()

type NullableTestSuite added in v0.1.7

type NullableTestSuite struct {
	// contains filtered or unexported fields
}

func NewNullableTestSuite added in v0.1.7

func NewNullableTestSuite(val *TestSuite) *NullableTestSuite

func (NullableTestSuite) Get added in v0.1.7

func (v NullableTestSuite) Get() *TestSuite

func (NullableTestSuite) IsSet added in v0.1.7

func (v NullableTestSuite) IsSet() bool

func (NullableTestSuite) MarshalJSON added in v0.1.7

func (v NullableTestSuite) MarshalJSON() ([]byte, error)

func (*NullableTestSuite) Set added in v0.1.7

func (v *NullableTestSuite) Set(val *TestSuite)

func (*NullableTestSuite) UnmarshalJSON added in v0.1.7

func (v *NullableTestSuite) UnmarshalJSON(src []byte) error

func (*NullableTestSuite) Unset added in v0.1.7

func (v *NullableTestSuite) Unset()

type NullableTestSuiteResource added in v0.1.7

type NullableTestSuiteResource struct {
	// contains filtered or unexported fields
}

func NewNullableTestSuiteResource added in v0.1.7

func NewNullableTestSuiteResource(val *TestSuiteResource) *NullableTestSuiteResource

func (NullableTestSuiteResource) Get added in v0.1.7

func (NullableTestSuiteResource) IsSet added in v0.1.7

func (v NullableTestSuiteResource) IsSet() bool

func (NullableTestSuiteResource) MarshalJSON added in v0.1.7

func (v NullableTestSuiteResource) MarshalJSON() ([]byte, error)

func (*NullableTestSuiteResource) Set added in v0.1.7

func (*NullableTestSuiteResource) UnmarshalJSON added in v0.1.7

func (v *NullableTestSuiteResource) UnmarshalJSON(src []byte) error

func (*NullableTestSuiteResource) Unset added in v0.1.7

func (v *NullableTestSuiteResource) Unset()

type NullableTestSuiteResourceList added in v0.1.7

type NullableTestSuiteResourceList struct {
	// contains filtered or unexported fields
}

func NewNullableTestSuiteResourceList added in v0.1.7

func NewNullableTestSuiteResourceList(val *TestSuiteResourceList) *NullableTestSuiteResourceList

func (NullableTestSuiteResourceList) Get added in v0.1.7

func (NullableTestSuiteResourceList) IsSet added in v0.1.7

func (NullableTestSuiteResourceList) MarshalJSON added in v0.1.7

func (v NullableTestSuiteResourceList) MarshalJSON() ([]byte, error)

func (*NullableTestSuiteResourceList) Set added in v0.1.7

func (*NullableTestSuiteResourceList) UnmarshalJSON added in v0.1.7

func (v *NullableTestSuiteResourceList) UnmarshalJSON(src []byte) error

func (*NullableTestSuiteResourceList) Unset added in v0.1.7

func (v *NullableTestSuiteResourceList) Unset()

type NullableTestSuiteRun added in v0.1.7

type NullableTestSuiteRun struct {
	// contains filtered or unexported fields
}

func NewNullableTestSuiteRun added in v0.1.7

func NewNullableTestSuiteRun(val *TestSuiteRun) *NullableTestSuiteRun

func (NullableTestSuiteRun) Get added in v0.1.7

func (NullableTestSuiteRun) IsSet added in v0.1.7

func (v NullableTestSuiteRun) IsSet() bool

func (NullableTestSuiteRun) MarshalJSON added in v0.1.7

func (v NullableTestSuiteRun) MarshalJSON() ([]byte, error)

func (*NullableTestSuiteRun) Set added in v0.1.7

func (v *NullableTestSuiteRun) Set(val *TestSuiteRun)

func (*NullableTestSuiteRun) UnmarshalJSON added in v0.1.7

func (v *NullableTestSuiteRun) UnmarshalJSON(src []byte) error

func (*NullableTestSuiteRun) Unset added in v0.1.7

func (v *NullableTestSuiteRun) Unset()

type NullableTestSummary

type NullableTestSummary struct {
	// contains filtered or unexported fields
}

func NewNullableTestSummary

func NewNullableTestSummary(val *TestSummary) *NullableTestSummary

func (NullableTestSummary) Get

func (NullableTestSummary) IsSet

func (v NullableTestSummary) IsSet() bool

func (NullableTestSummary) MarshalJSON

func (v NullableTestSummary) MarshalJSON() ([]byte, error)

func (*NullableTestSummary) Set

func (v *NullableTestSummary) Set(val *TestSummary)

func (*NullableTestSummary) UnmarshalJSON

func (v *NullableTestSummary) UnmarshalJSON(src []byte) error

func (*NullableTestSummary) Unset

func (v *NullableTestSummary) Unset()

type NullableTestSummaryLastRun

type NullableTestSummaryLastRun struct {
	// contains filtered or unexported fields
}

func NewNullableTestSummaryLastRun

func NewNullableTestSummaryLastRun(val *TestSummaryLastRun) *NullableTestSummaryLastRun

func (NullableTestSummaryLastRun) Get

func (NullableTestSummaryLastRun) IsSet

func (v NullableTestSummaryLastRun) IsSet() bool

func (NullableTestSummaryLastRun) MarshalJSON

func (v NullableTestSummaryLastRun) MarshalJSON() ([]byte, error)

func (*NullableTestSummaryLastRun) Set

func (*NullableTestSummaryLastRun) UnmarshalJSON

func (v *NullableTestSummaryLastRun) UnmarshalJSON(src []byte) error

func (*NullableTestSummaryLastRun) Unset

func (v *NullableTestSummaryLastRun) 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 NullableTrace

type NullableTrace struct {
	// contains filtered or unexported fields
}

func NewNullableTrace

func NewNullableTrace(val *Trace) *NullableTrace

func (NullableTrace) Get

func (v NullableTrace) Get() *Trace

func (NullableTrace) IsSet

func (v NullableTrace) IsSet() bool

func (NullableTrace) MarshalJSON

func (v NullableTrace) MarshalJSON() ([]byte, error)

func (*NullableTrace) Set

func (v *NullableTrace) Set(val *Trace)

func (*NullableTrace) UnmarshalJSON

func (v *NullableTrace) UnmarshalJSON(src []byte) error

func (*NullableTrace) Unset

func (v *NullableTrace) Unset()

type NullableTrigger

type NullableTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableTrigger

func NewNullableTrigger(val *Trigger) *NullableTrigger

func (NullableTrigger) Get

func (v NullableTrigger) Get() *Trigger

func (NullableTrigger) IsSet

func (v NullableTrigger) IsSet() bool

func (NullableTrigger) MarshalJSON

func (v NullableTrigger) MarshalJSON() ([]byte, error)

func (*NullableTrigger) Set

func (v *NullableTrigger) Set(val *Trigger)

func (*NullableTrigger) UnmarshalJSON

func (v *NullableTrigger) UnmarshalJSON(src []byte) error

func (*NullableTrigger) Unset

func (v *NullableTrigger) Unset()

type NullableTriggerResult

type NullableTriggerResult struct {
	// contains filtered or unexported fields
}

func NewNullableTriggerResult

func NewNullableTriggerResult(val *TriggerResult) *NullableTriggerResult

func (NullableTriggerResult) Get

func (NullableTriggerResult) IsSet

func (v NullableTriggerResult) IsSet() bool

func (NullableTriggerResult) MarshalJSON

func (v NullableTriggerResult) MarshalJSON() ([]byte, error)

func (*NullableTriggerResult) Set

func (v *NullableTriggerResult) Set(val *TriggerResult)

func (*NullableTriggerResult) UnmarshalJSON

func (v *NullableTriggerResult) UnmarshalJSON(src []byte) error

func (*NullableTriggerResult) Unset

func (v *NullableTriggerResult) Unset()

type NullableTriggerResultTriggerResult

type NullableTriggerResultTriggerResult struct {
	// contains filtered or unexported fields
}

func (NullableTriggerResultTriggerResult) Get

func (NullableTriggerResultTriggerResult) IsSet

func (NullableTriggerResultTriggerResult) MarshalJSON

func (v NullableTriggerResultTriggerResult) MarshalJSON() ([]byte, error)

func (*NullableTriggerResultTriggerResult) Set

func (*NullableTriggerResultTriggerResult) UnmarshalJSON

func (v *NullableTriggerResultTriggerResult) UnmarshalJSON(src []byte) error

func (*NullableTriggerResultTriggerResult) Unset

type NullableVariable added in v0.1.7

type NullableVariable struct {
	// contains filtered or unexported fields
}

func NewNullableVariable added in v0.1.7

func NewNullableVariable(val *Variable) *NullableVariable

func (NullableVariable) Get added in v0.1.7

func (v NullableVariable) Get() *Variable

func (NullableVariable) IsSet added in v0.1.7

func (v NullableVariable) IsSet() bool

func (NullableVariable) MarshalJSON added in v0.1.7

func (v NullableVariable) MarshalJSON() ([]byte, error)

func (*NullableVariable) Set added in v0.1.7

func (v *NullableVariable) Set(val *Variable)

func (*NullableVariable) UnmarshalJSON added in v0.1.7

func (v *NullableVariable) UnmarshalJSON(src []byte) error

func (*NullableVariable) Unset added in v0.1.7

func (v *NullableVariable) Unset()

type NullableVariableSet added in v0.1.7

type NullableVariableSet struct {
	// contains filtered or unexported fields
}

func NewNullableVariableSet added in v0.1.7

func NewNullableVariableSet(val *VariableSet) *NullableVariableSet

func (NullableVariableSet) Get added in v0.1.7

func (NullableVariableSet) IsSet added in v0.1.7

func (v NullableVariableSet) IsSet() bool

func (NullableVariableSet) MarshalJSON added in v0.1.7

func (v NullableVariableSet) MarshalJSON() ([]byte, error)

func (*NullableVariableSet) Set added in v0.1.7

func (v *NullableVariableSet) Set(val *VariableSet)

func (*NullableVariableSet) UnmarshalJSON added in v0.1.7

func (v *NullableVariableSet) UnmarshalJSON(src []byte) error

func (*NullableVariableSet) Unset added in v0.1.7

func (v *NullableVariableSet) Unset()

type NullableVariableSetResource added in v0.1.7

type NullableVariableSetResource struct {
	// contains filtered or unexported fields
}

func NewNullableVariableSetResource added in v0.1.7

func NewNullableVariableSetResource(val *VariableSetResource) *NullableVariableSetResource

func (NullableVariableSetResource) Get added in v0.1.7

func (NullableVariableSetResource) IsSet added in v0.1.7

func (NullableVariableSetResource) MarshalJSON added in v0.1.7

func (v NullableVariableSetResource) MarshalJSON() ([]byte, error)

func (*NullableVariableSetResource) Set added in v0.1.7

func (*NullableVariableSetResource) UnmarshalJSON added in v0.1.7

func (v *NullableVariableSetResource) UnmarshalJSON(src []byte) error

func (*NullableVariableSetResource) Unset added in v0.1.7

func (v *NullableVariableSetResource) Unset()

type NullableVariableSetResourceList added in v0.1.7

type NullableVariableSetResourceList struct {
	// contains filtered or unexported fields
}

func NewNullableVariableSetResourceList added in v0.1.7

func NewNullableVariableSetResourceList(val *VariableSetResourceList) *NullableVariableSetResourceList

func (NullableVariableSetResourceList) Get added in v0.1.7

func (NullableVariableSetResourceList) IsSet added in v0.1.7

func (NullableVariableSetResourceList) MarshalJSON added in v0.1.7

func (v NullableVariableSetResourceList) MarshalJSON() ([]byte, error)

func (*NullableVariableSetResourceList) Set added in v0.1.7

func (*NullableVariableSetResourceList) UnmarshalJSON added in v0.1.7

func (v *NullableVariableSetResourceList) UnmarshalJSON(src []byte) error

func (*NullableVariableSetResourceList) Unset added in v0.1.7

type NullableVariableSetValue added in v0.1.7

type NullableVariableSetValue struct {
	// contains filtered or unexported fields
}

func NewNullableVariableSetValue added in v0.1.7

func NewNullableVariableSetValue(val *VariableSetValue) *NullableVariableSetValue

func (NullableVariableSetValue) Get added in v0.1.7

func (NullableVariableSetValue) IsSet added in v0.1.7

func (v NullableVariableSetValue) IsSet() bool

func (NullableVariableSetValue) MarshalJSON added in v0.1.7

func (v NullableVariableSetValue) MarshalJSON() ([]byte, error)

func (*NullableVariableSetValue) Set added in v0.1.7

func (*NullableVariableSetValue) UnmarshalJSON added in v0.1.7

func (v *NullableVariableSetValue) UnmarshalJSON(src []byte) error

func (*NullableVariableSetValue) Unset added in v0.1.7

func (v *NullableVariableSetValue) Unset()

type NullableVersion added in v0.1.7

type NullableVersion struct {
	// contains filtered or unexported fields
}

func NewNullableVersion added in v0.1.7

func NewNullableVersion(val *Version) *NullableVersion

func (NullableVersion) Get added in v0.1.7

func (v NullableVersion) Get() *Version

func (NullableVersion) IsSet added in v0.1.7

func (v NullableVersion) IsSet() bool

func (NullableVersion) MarshalJSON added in v0.1.7

func (v NullableVersion) MarshalJSON() ([]byte, error)

func (*NullableVersion) Set added in v0.1.7

func (v *NullableVersion) Set(val *Version)

func (*NullableVersion) UnmarshalJSON added in v0.1.7

func (v *NullableVersion) UnmarshalJSON(src []byte) error

func (*NullableVersion) Unset added in v0.1.7

func (v *NullableVersion) Unset()

type OutputInfo added in v0.1.7

type OutputInfo struct {
	LogLevel   *string `json:"logLevel,omitempty"`
	Message    *string `json:"message,omitempty"`
	OutputName *string `json:"outputName,omitempty"`
}

OutputInfo struct for OutputInfo

func NewOutputInfo added in v0.1.7

func NewOutputInfo() *OutputInfo

NewOutputInfo instantiates a new OutputInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutputInfoWithDefaults added in v0.1.7

func NewOutputInfoWithDefaults() *OutputInfo

NewOutputInfoWithDefaults instantiates a new OutputInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OutputInfo) GetLogLevel added in v0.1.7

func (o *OutputInfo) GetLogLevel() string

GetLogLevel returns the LogLevel field value if set, zero value otherwise.

func (*OutputInfo) GetLogLevelOk added in v0.1.7

func (o *OutputInfo) GetLogLevelOk() (*string, bool)

GetLogLevelOk returns a tuple with the LogLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OutputInfo) GetMessage added in v0.1.7

func (o *OutputInfo) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*OutputInfo) GetMessageOk added in v0.1.7

func (o *OutputInfo) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OutputInfo) GetOutputName added in v0.1.7

func (o *OutputInfo) GetOutputName() string

GetOutputName returns the OutputName field value if set, zero value otherwise.

func (*OutputInfo) GetOutputNameOk added in v0.1.7

func (o *OutputInfo) GetOutputNameOk() (*string, bool)

GetOutputNameOk returns a tuple with the OutputName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OutputInfo) HasLogLevel added in v0.1.7

func (o *OutputInfo) HasLogLevel() bool

HasLogLevel returns a boolean if a field has been set.

func (*OutputInfo) HasMessage added in v0.1.7

func (o *OutputInfo) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*OutputInfo) HasOutputName added in v0.1.7

func (o *OutputInfo) HasOutputName() bool

HasOutputName returns a boolean if a field has been set.

func (OutputInfo) MarshalJSON added in v0.1.7

func (o OutputInfo) MarshalJSON() ([]byte, error)

func (*OutputInfo) SetLogLevel added in v0.1.7

func (o *OutputInfo) SetLogLevel(v string)

SetLogLevel gets a reference to the given string and assigns it to the LogLevel field.

func (*OutputInfo) SetMessage added in v0.1.7

func (o *OutputInfo) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*OutputInfo) SetOutputName added in v0.1.7

func (o *OutputInfo) SetOutputName(v string)

SetOutputName gets a reference to the given string and assigns it to the OutputName field.

func (OutputInfo) ToMap added in v0.1.7

func (o OutputInfo) ToMap() (map[string]interface{}, error)

type PollingInfo added in v0.1.7

type PollingInfo struct {
	Type       *string              `json:"type,omitempty"`
	IsComplete *bool                `json:"isComplete,omitempty"`
	Periodic   *PollingInfoPeriodic `json:"periodic,omitempty"`
}

PollingInfo struct for PollingInfo

func NewPollingInfo added in v0.1.7

func NewPollingInfo() *PollingInfo

NewPollingInfo instantiates a new PollingInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingInfoWithDefaults added in v0.1.7

func NewPollingInfoWithDefaults() *PollingInfo

NewPollingInfoWithDefaults instantiates a new PollingInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingInfo) GetIsComplete added in v0.1.7

func (o *PollingInfo) GetIsComplete() bool

GetIsComplete returns the IsComplete field value if set, zero value otherwise.

func (*PollingInfo) GetIsCompleteOk added in v0.1.7

func (o *PollingInfo) GetIsCompleteOk() (*bool, bool)

GetIsCompleteOk returns a tuple with the IsComplete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingInfo) GetPeriodic added in v0.1.7

func (o *PollingInfo) GetPeriodic() PollingInfoPeriodic

GetPeriodic returns the Periodic field value if set, zero value otherwise.

func (*PollingInfo) GetPeriodicOk added in v0.1.7

func (o *PollingInfo) GetPeriodicOk() (*PollingInfoPeriodic, bool)

GetPeriodicOk returns a tuple with the Periodic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingInfo) GetType added in v0.1.7

func (o *PollingInfo) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PollingInfo) GetTypeOk added in v0.1.7

func (o *PollingInfo) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingInfo) HasIsComplete added in v0.1.7

func (o *PollingInfo) HasIsComplete() bool

HasIsComplete returns a boolean if a field has been set.

func (*PollingInfo) HasPeriodic added in v0.1.7

func (o *PollingInfo) HasPeriodic() bool

HasPeriodic returns a boolean if a field has been set.

func (*PollingInfo) HasType added in v0.1.7

func (o *PollingInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (PollingInfo) MarshalJSON added in v0.1.7

func (o PollingInfo) MarshalJSON() ([]byte, error)

func (*PollingInfo) SetIsComplete added in v0.1.7

func (o *PollingInfo) SetIsComplete(v bool)

SetIsComplete gets a reference to the given bool and assigns it to the IsComplete field.

func (*PollingInfo) SetPeriodic added in v0.1.7

func (o *PollingInfo) SetPeriodic(v PollingInfoPeriodic)

SetPeriodic gets a reference to the given PollingInfoPeriodic and assigns it to the Periodic field.

func (*PollingInfo) SetType added in v0.1.7

func (o *PollingInfo) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PollingInfo) ToMap added in v0.1.7

func (o PollingInfo) ToMap() (map[string]interface{}, error)

type PollingInfoPeriodic added in v0.1.7

type PollingInfoPeriodic struct {
	NumberSpans      *int32 `json:"numberSpans,omitempty"`
	NumberIterations *int32 `json:"numberIterations,omitempty"`
}

PollingInfoPeriodic struct for PollingInfoPeriodic

func NewPollingInfoPeriodic added in v0.1.7

func NewPollingInfoPeriodic() *PollingInfoPeriodic

NewPollingInfoPeriodic instantiates a new PollingInfoPeriodic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingInfoPeriodicWithDefaults added in v0.1.7

func NewPollingInfoPeriodicWithDefaults() *PollingInfoPeriodic

NewPollingInfoPeriodicWithDefaults instantiates a new PollingInfoPeriodic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingInfoPeriodic) GetNumberIterations added in v0.1.7

func (o *PollingInfoPeriodic) GetNumberIterations() int32

GetNumberIterations returns the NumberIterations field value if set, zero value otherwise.

func (*PollingInfoPeriodic) GetNumberIterationsOk added in v0.1.7

func (o *PollingInfoPeriodic) GetNumberIterationsOk() (*int32, bool)

GetNumberIterationsOk returns a tuple with the NumberIterations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingInfoPeriodic) GetNumberSpans added in v0.1.7

func (o *PollingInfoPeriodic) GetNumberSpans() int32

GetNumberSpans returns the NumberSpans field value if set, zero value otherwise.

func (*PollingInfoPeriodic) GetNumberSpansOk added in v0.1.7

func (o *PollingInfoPeriodic) GetNumberSpansOk() (*int32, bool)

GetNumberSpansOk returns a tuple with the NumberSpans field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingInfoPeriodic) HasNumberIterations added in v0.1.7

func (o *PollingInfoPeriodic) HasNumberIterations() bool

HasNumberIterations returns a boolean if a field has been set.

func (*PollingInfoPeriodic) HasNumberSpans added in v0.1.7

func (o *PollingInfoPeriodic) HasNumberSpans() bool

HasNumberSpans returns a boolean if a field has been set.

func (PollingInfoPeriodic) MarshalJSON added in v0.1.7

func (o PollingInfoPeriodic) MarshalJSON() ([]byte, error)

func (*PollingInfoPeriodic) SetNumberIterations added in v0.1.7

func (o *PollingInfoPeriodic) SetNumberIterations(v int32)

SetNumberIterations gets a reference to the given int32 and assigns it to the NumberIterations field.

func (*PollingInfoPeriodic) SetNumberSpans added in v0.1.7

func (o *PollingInfoPeriodic) SetNumberSpans(v int32)

SetNumberSpans gets a reference to the given int32 and assigns it to the NumberSpans field.

func (PollingInfoPeriodic) ToMap added in v0.1.7

func (o PollingInfoPeriodic) ToMap() (map[string]interface{}, error)

type PollingProfile added in v0.1.7

type PollingProfile struct {
	// Represents the type of this resource. It should always be set as 'PollingProfile'.
	Type *string             `json:"type,omitempty"`
	Spec *PollingProfileSpec `json:"spec,omitempty"`
}

PollingProfile Represents a polling profile structured into the Resources format.

func NewPollingProfile added in v0.1.7

func NewPollingProfile() *PollingProfile

NewPollingProfile instantiates a new PollingProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingProfileWithDefaults added in v0.1.7

func NewPollingProfileWithDefaults() *PollingProfile

NewPollingProfileWithDefaults instantiates a new PollingProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingProfile) GetSpec added in v0.1.7

func (o *PollingProfile) GetSpec() PollingProfileSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*PollingProfile) GetSpecOk added in v0.1.7

func (o *PollingProfile) GetSpecOk() (*PollingProfileSpec, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfile) GetType added in v0.1.7

func (o *PollingProfile) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PollingProfile) GetTypeOk added in v0.1.7

func (o *PollingProfile) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfile) HasSpec added in v0.1.7

func (o *PollingProfile) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*PollingProfile) HasType added in v0.1.7

func (o *PollingProfile) HasType() bool

HasType returns a boolean if a field has been set.

func (PollingProfile) MarshalJSON added in v0.1.7

func (o PollingProfile) MarshalJSON() ([]byte, error)

func (*PollingProfile) SetSpec added in v0.1.7

func (o *PollingProfile) SetSpec(v PollingProfileSpec)

SetSpec gets a reference to the given PollingProfileSpec and assigns it to the Spec field.

func (*PollingProfile) SetType added in v0.1.7

func (o *PollingProfile) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PollingProfile) ToMap added in v0.1.7

func (o PollingProfile) ToMap() (map[string]interface{}, error)

type PollingProfileList added in v0.1.7

type PollingProfileList struct {
	Count *int32           `json:"count,omitempty"`
	Items []PollingProfile `json:"items,omitempty"`
}

PollingProfileList struct for PollingProfileList

func NewPollingProfileList added in v0.1.7

func NewPollingProfileList() *PollingProfileList

NewPollingProfileList instantiates a new PollingProfileList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingProfileListWithDefaults added in v0.1.7

func NewPollingProfileListWithDefaults() *PollingProfileList

NewPollingProfileListWithDefaults instantiates a new PollingProfileList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingProfileList) GetCount added in v0.1.7

func (o *PollingProfileList) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*PollingProfileList) GetCountOk added in v0.1.7

func (o *PollingProfileList) 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.

func (*PollingProfileList) GetItems added in v0.1.7

func (o *PollingProfileList) GetItems() []PollingProfile

GetItems returns the Items field value if set, zero value otherwise.

func (*PollingProfileList) GetItemsOk added in v0.1.7

func (o *PollingProfileList) GetItemsOk() ([]PollingProfile, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfileList) HasCount added in v0.1.7

func (o *PollingProfileList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*PollingProfileList) HasItems added in v0.1.7

func (o *PollingProfileList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (PollingProfileList) MarshalJSON added in v0.1.7

func (o PollingProfileList) MarshalJSON() ([]byte, error)

func (*PollingProfileList) SetCount added in v0.1.7

func (o *PollingProfileList) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*PollingProfileList) SetItems added in v0.1.7

func (o *PollingProfileList) SetItems(v []PollingProfile)

SetItems gets a reference to the given []PollingProfile and assigns it to the Items field.

func (PollingProfileList) ToMap added in v0.1.7

func (o PollingProfileList) ToMap() (map[string]interface{}, error)

type PollingProfileSpec added in v0.1.7

type PollingProfileSpec struct {
	// ID of this Polling Profile.
	Id string `json:"id"`
	// Name given for this profile.
	Name string `json:"name"`
	// Is default polling profile
	Default *bool `json:"default,omitempty"`
	// Name of the strategy that will be used on this profile.
	Strategy string                      `json:"strategy"`
	Periodic *PollingProfileSpecPeriodic `json:"periodic,omitempty"`
}

PollingProfileSpec Represents the attributes of a Polling Profile.

func NewPollingProfileSpec added in v0.1.7

func NewPollingProfileSpec(id string, name string, strategy string) *PollingProfileSpec

NewPollingProfileSpec instantiates a new PollingProfileSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingProfileSpecWithDefaults added in v0.1.7

func NewPollingProfileSpecWithDefaults() *PollingProfileSpec

NewPollingProfileSpecWithDefaults instantiates a new PollingProfileSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingProfileSpec) GetDefault added in v0.1.7

func (o *PollingProfileSpec) GetDefault() bool

GetDefault returns the Default field value if set, zero value otherwise.

func (*PollingProfileSpec) GetDefaultOk added in v0.1.7

func (o *PollingProfileSpec) GetDefaultOk() (*bool, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfileSpec) GetId added in v0.1.7

func (o *PollingProfileSpec) GetId() string

GetId returns the Id field value

func (*PollingProfileSpec) GetIdOk added in v0.1.7

func (o *PollingProfileSpec) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PollingProfileSpec) GetName added in v0.1.7

func (o *PollingProfileSpec) GetName() string

GetName returns the Name field value

func (*PollingProfileSpec) GetNameOk added in v0.1.7

func (o *PollingProfileSpec) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PollingProfileSpec) GetPeriodic added in v0.1.7

GetPeriodic returns the Periodic field value if set, zero value otherwise.

func (*PollingProfileSpec) GetPeriodicOk added in v0.1.7

func (o *PollingProfileSpec) GetPeriodicOk() (*PollingProfileSpecPeriodic, bool)

GetPeriodicOk returns a tuple with the Periodic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfileSpec) GetStrategy added in v0.1.7

func (o *PollingProfileSpec) GetStrategy() string

GetStrategy returns the Strategy field value

func (*PollingProfileSpec) GetStrategyOk added in v0.1.7

func (o *PollingProfileSpec) GetStrategyOk() (*string, bool)

GetStrategyOk returns a tuple with the Strategy field value and a boolean to check if the value has been set.

func (*PollingProfileSpec) HasDefault added in v0.1.7

func (o *PollingProfileSpec) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*PollingProfileSpec) HasPeriodic added in v0.1.7

func (o *PollingProfileSpec) HasPeriodic() bool

HasPeriodic returns a boolean if a field has been set.

func (PollingProfileSpec) MarshalJSON added in v0.1.7

func (o PollingProfileSpec) MarshalJSON() ([]byte, error)

func (*PollingProfileSpec) SetDefault added in v0.1.7

func (o *PollingProfileSpec) SetDefault(v bool)

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*PollingProfileSpec) SetId added in v0.1.7

func (o *PollingProfileSpec) SetId(v string)

SetId sets field value

func (*PollingProfileSpec) SetName added in v0.1.7

func (o *PollingProfileSpec) SetName(v string)

SetName sets field value

func (*PollingProfileSpec) SetPeriodic added in v0.1.7

SetPeriodic gets a reference to the given PollingProfileSpecPeriodic and assigns it to the Periodic field.

func (*PollingProfileSpec) SetStrategy added in v0.1.7

func (o *PollingProfileSpec) SetStrategy(v string)

SetStrategy sets field value

func (PollingProfileSpec) ToMap added in v0.1.7

func (o PollingProfileSpec) ToMap() (map[string]interface{}, error)

type PollingProfileSpecPeriodic added in v0.1.7

type PollingProfileSpecPeriodic struct {
	// Time that the poller should wait until try to fetch more traces. It should be written in duration format (example: 1s, 30s, 1m).
	RetryDelay *string `json:"retryDelay,omitempty"`
	// Total time that the poller should try to continue to fetch traces. It should be written in duration format (example: 1s, 30s, 1m).
	Timeout *string `json:"timeout,omitempty"`
}

PollingProfileSpecPeriodic Configuration for the strategy 'periodic'. It only should be filled if the field strategy is equals to 'periodic'.

func NewPollingProfileSpecPeriodic added in v0.1.7

func NewPollingProfileSpecPeriodic() *PollingProfileSpecPeriodic

NewPollingProfileSpecPeriodic instantiates a new PollingProfileSpecPeriodic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPollingProfileSpecPeriodicWithDefaults added in v0.1.7

func NewPollingProfileSpecPeriodicWithDefaults() *PollingProfileSpecPeriodic

NewPollingProfileSpecPeriodicWithDefaults instantiates a new PollingProfileSpecPeriodic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PollingProfileSpecPeriodic) GetRetryDelay added in v0.1.7

func (o *PollingProfileSpecPeriodic) GetRetryDelay() string

GetRetryDelay returns the RetryDelay field value if set, zero value otherwise.

func (*PollingProfileSpecPeriodic) GetRetryDelayOk added in v0.1.7

func (o *PollingProfileSpecPeriodic) GetRetryDelayOk() (*string, bool)

GetRetryDelayOk returns a tuple with the RetryDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfileSpecPeriodic) GetTimeout added in v0.1.7

func (o *PollingProfileSpecPeriodic) GetTimeout() string

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*PollingProfileSpecPeriodic) GetTimeoutOk added in v0.1.7

func (o *PollingProfileSpecPeriodic) GetTimeoutOk() (*string, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PollingProfileSpecPeriodic) HasRetryDelay added in v0.1.7

func (o *PollingProfileSpecPeriodic) HasRetryDelay() bool

HasRetryDelay returns a boolean if a field has been set.

func (*PollingProfileSpecPeriodic) HasTimeout added in v0.1.7

func (o *PollingProfileSpecPeriodic) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (PollingProfileSpecPeriodic) MarshalJSON added in v0.1.7

func (o PollingProfileSpecPeriodic) MarshalJSON() ([]byte, error)

func (*PollingProfileSpecPeriodic) SetRetryDelay added in v0.1.7

func (o *PollingProfileSpecPeriodic) SetRetryDelay(v string)

SetRetryDelay gets a reference to the given string and assigns it to the RetryDelay field.

func (*PollingProfileSpecPeriodic) SetTimeout added in v0.1.7

func (o *PollingProfileSpecPeriodic) SetTimeout(v string)

SetTimeout gets a reference to the given string and assigns it to the Timeout field.

func (PollingProfileSpecPeriodic) ToMap added in v0.1.7

func (o PollingProfileSpecPeriodic) ToMap() (map[string]interface{}, error)

type RequiredGatesResult added in v0.1.7

type RequiredGatesResult struct {
	Required []SupportedGates `json:"required"`
	Failed   []SupportedGates `json:"failed"`
	Passed   bool             `json:"passed"`
}

RequiredGatesResult struct for RequiredGatesResult

func NewRequiredGatesResult added in v0.1.7

func NewRequiredGatesResult(required []SupportedGates, failed []SupportedGates, passed bool) *RequiredGatesResult

NewRequiredGatesResult instantiates a new RequiredGatesResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRequiredGatesResultWithDefaults added in v0.1.7

func NewRequiredGatesResultWithDefaults() *RequiredGatesResult

NewRequiredGatesResultWithDefaults instantiates a new RequiredGatesResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RequiredGatesResult) GetFailed added in v0.1.7

func (o *RequiredGatesResult) GetFailed() []SupportedGates

GetFailed returns the Failed field value

func (*RequiredGatesResult) GetFailedOk added in v0.1.7

func (o *RequiredGatesResult) GetFailedOk() ([]SupportedGates, bool)

GetFailedOk returns a tuple with the Failed field value and a boolean to check if the value has been set.

func (*RequiredGatesResult) GetPassed added in v0.1.7

func (o *RequiredGatesResult) GetPassed() bool

GetPassed returns the Passed field value

func (*RequiredGatesResult) GetPassedOk added in v0.1.7

func (o *RequiredGatesResult) GetPassedOk() (*bool, bool)

GetPassedOk returns a tuple with the Passed field value and a boolean to check if the value has been set.

func (*RequiredGatesResult) GetRequired added in v0.1.7

func (o *RequiredGatesResult) GetRequired() []SupportedGates

GetRequired returns the Required field value

func (*RequiredGatesResult) GetRequiredOk added in v0.1.7

func (o *RequiredGatesResult) GetRequiredOk() ([]SupportedGates, bool)

GetRequiredOk returns a tuple with the Required field value and a boolean to check if the value has been set.

func (RequiredGatesResult) MarshalJSON added in v0.1.7

func (o RequiredGatesResult) MarshalJSON() ([]byte, error)

func (*RequiredGatesResult) SetFailed added in v0.1.7

func (o *RequiredGatesResult) SetFailed(v []SupportedGates)

SetFailed sets field value

func (*RequiredGatesResult) SetPassed added in v0.1.7

func (o *RequiredGatesResult) SetPassed(v bool)

SetPassed sets field value

func (*RequiredGatesResult) SetRequired added in v0.1.7

func (o *RequiredGatesResult) SetRequired(v []SupportedGates)

SetRequired sets field value

func (RequiredGatesResult) ToMap added in v0.1.7

func (o RequiredGatesResult) ToMap() (map[string]interface{}, error)

type ResolveContext

type ResolveContext struct {
	TestId        *string `json:"testId,omitempty"`
	RunId         *int32  `json:"runId,omitempty"`
	SpanId        *string `json:"spanId,omitempty"`
	Selector      *string `json:"selector,omitempty"`
	VariableSetId *string `json:"variableSetId,omitempty"`
}

ResolveContext struct for ResolveContext

func NewResolveContext

func NewResolveContext() *ResolveContext

NewResolveContext instantiates a new ResolveContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResolveContextWithDefaults

func NewResolveContextWithDefaults() *ResolveContext

NewResolveContextWithDefaults instantiates a new ResolveContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResolveContext) GetRunId

func (o *ResolveContext) GetRunId() int32

GetRunId returns the RunId field value if set, zero value otherwise.

func (*ResolveContext) GetRunIdOk

func (o *ResolveContext) GetRunIdOk() (*int32, bool)

GetRunIdOk returns a tuple with the RunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveContext) GetSelector

func (o *ResolveContext) GetSelector() string

GetSelector returns the Selector field value if set, zero value otherwise.

func (*ResolveContext) GetSelectorOk

func (o *ResolveContext) GetSelectorOk() (*string, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveContext) GetSpanId

func (o *ResolveContext) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*ResolveContext) GetSpanIdOk

func (o *ResolveContext) GetSpanIdOk() (*string, bool)

GetSpanIdOk returns a tuple with the SpanId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveContext) GetTestId

func (o *ResolveContext) GetTestId() string

GetTestId returns the TestId field value if set, zero value otherwise.

func (*ResolveContext) GetTestIdOk

func (o *ResolveContext) GetTestIdOk() (*string, bool)

GetTestIdOk returns a tuple with the TestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveContext) GetVariableSetId added in v0.1.7

func (o *ResolveContext) GetVariableSetId() string

GetVariableSetId returns the VariableSetId field value if set, zero value otherwise.

func (*ResolveContext) GetVariableSetIdOk added in v0.1.7

func (o *ResolveContext) GetVariableSetIdOk() (*string, bool)

GetVariableSetIdOk returns a tuple with the VariableSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveContext) HasRunId

func (o *ResolveContext) HasRunId() bool

HasRunId returns a boolean if a field has been set.

func (*ResolveContext) HasSelector

func (o *ResolveContext) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*ResolveContext) HasSpanId

func (o *ResolveContext) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (*ResolveContext) HasTestId

func (o *ResolveContext) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*ResolveContext) HasVariableSetId added in v0.1.7

func (o *ResolveContext) HasVariableSetId() bool

HasVariableSetId returns a boolean if a field has been set.

func (ResolveContext) MarshalJSON

func (o ResolveContext) MarshalJSON() ([]byte, error)

func (*ResolveContext) SetRunId

func (o *ResolveContext) SetRunId(v int32)

SetRunId gets a reference to the given int32 and assigns it to the RunId field.

func (*ResolveContext) SetSelector

func (o *ResolveContext) SetSelector(v string)

SetSelector gets a reference to the given string and assigns it to the Selector field.

func (*ResolveContext) SetSpanId

func (o *ResolveContext) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (*ResolveContext) SetTestId

func (o *ResolveContext) SetTestId(v string)

SetTestId gets a reference to the given string and assigns it to the TestId field.

func (*ResolveContext) SetVariableSetId added in v0.1.7

func (o *ResolveContext) SetVariableSetId(v string)

SetVariableSetId gets a reference to the given string and assigns it to the VariableSetId field.

func (ResolveContext) ToMap added in v0.1.7

func (o ResolveContext) ToMap() (map[string]interface{}, error)

type ResolveRequestInfo

type ResolveRequestInfo struct {
	Expression *string         `json:"expression,omitempty"`
	Context    *ResolveContext `json:"context,omitempty"`
}

ResolveRequestInfo struct for ResolveRequestInfo

func NewResolveRequestInfo

func NewResolveRequestInfo() *ResolveRequestInfo

NewResolveRequestInfo instantiates a new ResolveRequestInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResolveRequestInfoWithDefaults

func NewResolveRequestInfoWithDefaults() *ResolveRequestInfo

NewResolveRequestInfoWithDefaults instantiates a new ResolveRequestInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResolveRequestInfo) GetContext

func (o *ResolveRequestInfo) GetContext() ResolveContext

GetContext returns the Context field value if set, zero value otherwise.

func (*ResolveRequestInfo) GetContextOk

func (o *ResolveRequestInfo) GetContextOk() (*ResolveContext, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveRequestInfo) GetExpression

func (o *ResolveRequestInfo) GetExpression() string

GetExpression returns the Expression field value if set, zero value otherwise.

func (*ResolveRequestInfo) GetExpressionOk

func (o *ResolveRequestInfo) GetExpressionOk() (*string, bool)

GetExpressionOk returns a tuple with the Expression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveRequestInfo) HasContext

func (o *ResolveRequestInfo) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*ResolveRequestInfo) HasExpression

func (o *ResolveRequestInfo) HasExpression() bool

HasExpression returns a boolean if a field has been set.

func (ResolveRequestInfo) MarshalJSON

func (o ResolveRequestInfo) MarshalJSON() ([]byte, error)

func (*ResolveRequestInfo) SetContext

func (o *ResolveRequestInfo) SetContext(v ResolveContext)

SetContext gets a reference to the given ResolveContext and assigns it to the Context field.

func (*ResolveRequestInfo) SetExpression

func (o *ResolveRequestInfo) SetExpression(v string)

SetExpression gets a reference to the given string and assigns it to the Expression field.

func (ResolveRequestInfo) ToMap added in v0.1.7

func (o ResolveRequestInfo) ToMap() (map[string]interface{}, error)

type ResolveResponseInfo

type ResolveResponseInfo struct {
	ResolvedValues []string `json:"resolvedValues,omitempty"`
}

ResolveResponseInfo struct for ResolveResponseInfo

func NewResolveResponseInfo

func NewResolveResponseInfo() *ResolveResponseInfo

NewResolveResponseInfo instantiates a new ResolveResponseInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResolveResponseInfoWithDefaults

func NewResolveResponseInfoWithDefaults() *ResolveResponseInfo

NewResolveResponseInfoWithDefaults instantiates a new ResolveResponseInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResolveResponseInfo) GetResolvedValues

func (o *ResolveResponseInfo) GetResolvedValues() []string

GetResolvedValues returns the ResolvedValues field value if set, zero value otherwise.

func (*ResolveResponseInfo) GetResolvedValuesOk

func (o *ResolveResponseInfo) GetResolvedValuesOk() ([]string, bool)

GetResolvedValuesOk returns a tuple with the ResolvedValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResolveResponseInfo) HasResolvedValues

func (o *ResolveResponseInfo) HasResolvedValues() bool

HasResolvedValues returns a boolean if a field has been set.

func (ResolveResponseInfo) MarshalJSON

func (o ResolveResponseInfo) MarshalJSON() ([]byte, error)

func (*ResolveResponseInfo) SetResolvedValues

func (o *ResolveResponseInfo) SetResolvedValues(v []string)

SetResolvedValues gets a reference to the given []string and assigns it to the ResolvedValues field.

func (ResolveResponseInfo) ToMap added in v0.1.7

func (o ResolveResponseInfo) ToMap() (map[string]interface{}, error)

type Resource

type Resource struct {
	Type string      `json:"type"`
	Item interface{} `json:"item"`
}

Resource struct for Resource

func NewResource

func NewResource(type_ string, item interface{}) *Resource

NewResource instantiates a new Resource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceWithDefaults

func NewResourceWithDefaults() *Resource

NewResourceWithDefaults instantiates a new Resource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Resource) GetItem

func (o *Resource) GetItem() interface{}

GetItem returns the Item field value If the value is explicit nil, the zero value for interface{} will be returned

func (*Resource) GetItemOk

func (o *Resource) GetItemOk() (*interface{}, bool)

GetItemOk returns a tuple with the Item field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Resource) GetType

func (o *Resource) GetType() string

GetType returns the Type field value

func (*Resource) GetTypeOk

func (o *Resource) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (Resource) MarshalJSON

func (o Resource) MarshalJSON() ([]byte, error)

func (*Resource) SetItem

func (o *Resource) SetItem(v interface{})

SetItem sets field value

func (*Resource) SetType

func (o *Resource) SetType(v string)

SetType sets field value

func (Resource) ToMap added in v0.1.7

func (o Resource) ToMap() (map[string]interface{}, error)

type ResourceApiApiService added in v0.1.7

type ResourceApiApiService service

ResourceApiApiService ResourceApiApi service

func (*ResourceApiApiService) CreateDemo added in v0.1.7

CreateDemo Create a Demonstration setting

Create a demonstration used on Tracetest as quick start examples.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDemoRequest

func (*ResourceApiApiService) CreateDemoExecute added in v0.1.7

func (a *ResourceApiApiService) CreateDemoExecute(r ApiCreateDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) CreateLinter added in v0.1.7

CreateLinter Create an Linter

Create an Linter that can be used by tests and Linters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateLinterRequest

func (*ResourceApiApiService) CreateLinterExecute added in v0.1.7

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) CreateTest added in v0.1.7

CreateTest Create new test

Create new test action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTestRequest

func (*ResourceApiApiService) CreateTestExecute added in v0.1.7

func (a *ResourceApiApiService) CreateTestExecute(r ApiCreateTestRequest) (*Test, *http.Response, error)

Execute executes the request

@return Test

func (*ResourceApiApiService) CreateTestSuite added in v0.1.7

CreateTestSuite Create new TestSuite

Create new TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTestSuiteRequest

func (*ResourceApiApiService) CreateTestSuiteExecute added in v0.1.7

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) CreateVariableSet added in v0.1.7

CreateVariableSet Create a VariableSet

Create a VariableSet that can be used by tests and test suites

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateVariableSetRequest

func (*ResourceApiApiService) CreateVariableSetExecute added in v0.1.7

Execute executes the request

@return VariableSetResource

func (*ResourceApiApiService) DeleteDataStore added in v0.1.7

func (a *ResourceApiApiService) DeleteDataStore(ctx context.Context, dataStoreId string) ApiDeleteDataStoreRequest

DeleteDataStore Delete a Data Store

Delete a Data Store

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dataStoreId ID of a datastore used on Tracetest to configure how to fetch traces in a test
@return ApiDeleteDataStoreRequest

func (*ResourceApiApiService) DeleteDataStoreExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteDataStoreExecute(r ApiDeleteDataStoreRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteDemo added in v0.1.7

DeleteDemo Delete a Demonstration setting

Delete a demonstration used on Tracetest as quick start examples.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param demoId ID of a demonstration used on Tracetest as quick start examples
@return ApiDeleteDemoRequest

func (*ResourceApiApiService) DeleteDemoExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteDemoExecute(r ApiDeleteDemoRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteLinter added in v0.1.7

func (a *ResourceApiApiService) DeleteLinter(ctx context.Context, linterId string) ApiDeleteLinterRequest

DeleteLinter Delete an Linter

Delete an Linter from Tracetest

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param linterId ID of an Linter
@return ApiDeleteLinterRequest

func (*ResourceApiApiService) DeleteLinterExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteLinterExecute(r ApiDeleteLinterRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteTest added in v0.1.7

DeleteTest delete a test

delete a test

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiDeleteTestRequest

func (*ResourceApiApiService) DeleteTestExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteTestExecute(r ApiDeleteTestRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteTestSuite added in v0.1.7

func (a *ResourceApiApiService) DeleteTestSuite(ctx context.Context, testSuiteId string) ApiDeleteTestSuiteRequest

DeleteTestSuite delete a TestSuite

delete a TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@return ApiDeleteTestSuiteRequest

func (*ResourceApiApiService) DeleteTestSuiteExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteTestSuiteExecute(r ApiDeleteTestSuiteRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteVariableSet added in v0.1.7

func (a *ResourceApiApiService) DeleteVariableSet(ctx context.Context, variableSetId string) ApiDeleteVariableSetRequest

DeleteVariableSet Delete a variable set

Delete a variable set from Tracetest

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableSetId ID of a VariableSet used on Tracetest to inject values into tests and TestSuites
@return ApiDeleteVariableSetRequest

func (*ResourceApiApiService) DeleteVariableSetExecute added in v0.1.7

func (a *ResourceApiApiService) DeleteVariableSetExecute(r ApiDeleteVariableSetRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) GetConfiguration added in v0.1.7

func (a *ResourceApiApiService) GetConfiguration(ctx context.Context, configId string) ApiGetConfigurationRequest

GetConfiguration Get Tracetest configuration

Get Tracetest configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param configId ID of the configuration resource used on Tracetest. It should be set as 'current'
@return ApiGetConfigurationRequest

func (*ResourceApiApiService) GetConfigurationExecute added in v0.1.7

Execute executes the request

@return ConfigurationResource

func (*ResourceApiApiService) GetDataStore added in v0.1.7

func (a *ResourceApiApiService) GetDataStore(ctx context.Context, dataStoreId string) ApiGetDataStoreRequest

GetDataStore Get a Data Store

Get a Data Store

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dataStoreId ID of a datastore used on Tracetest to configure how to fetch traces in a test
@return ApiGetDataStoreRequest

func (*ResourceApiApiService) GetDataStoreExecute added in v0.1.7

Execute executes the request

@return DataStoreResource

func (*ResourceApiApiService) GetDemo added in v0.1.7

GetDemo Get Demonstration setting

Get a demonstration used on Tracetest as quick start examples.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param demoId ID of a demonstration used on Tracetest as quick start examples
@return ApiGetDemoRequest

func (*ResourceApiApiService) GetDemoExecute added in v0.1.7

func (a *ResourceApiApiService) GetDemoExecute(r ApiGetDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) GetLinter added in v0.1.7

func (a *ResourceApiApiService) GetLinter(ctx context.Context, linterId string) ApiGetLinterRequest

GetLinter Get a specific Linter

Get one Linter by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param linterId ID of an Linter
@return ApiGetLinterRequest

func (*ResourceApiApiService) GetLinterExecute added in v0.1.7

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) GetPollingProfile added in v0.1.7

func (a *ResourceApiApiService) GetPollingProfile(ctx context.Context, pollingProfileId string) ApiGetPollingProfileRequest

GetPollingProfile Get Polling Profile

Get a polling profile used on Tracetest to configure how to fetch traces in a test.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pollingProfileId ID of a polling profile used on Tracetest to configure how to fetch traces in a test. It should be set as 'current'
@return ApiGetPollingProfileRequest

func (*ResourceApiApiService) GetPollingProfileExecute added in v0.1.7

Execute executes the request

@return PollingProfile

func (*ResourceApiApiService) GetTestSuite added in v0.1.7

func (a *ResourceApiApiService) GetTestSuite(ctx context.Context, testSuiteId string) ApiGetTestSuiteRequest

GetTestSuite get TestSuite

get TestSuite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@return ApiGetTestSuiteRequest

func (*ResourceApiApiService) GetTestSuiteExecute added in v0.1.7

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) GetTestSuites added in v0.1.7

GetTestSuites Get testsuites

get testsuites

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTestSuitesRequest

func (*ResourceApiApiService) GetTestSuitesExecute added in v0.1.7

Execute executes the request

@return TestSuiteResourceList

func (*ResourceApiApiService) GetTests added in v0.1.7

GetTests Get tests

get tests

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTestsRequest

func (*ResourceApiApiService) GetTestsExecute added in v0.1.7

Execute executes the request

@return TestResourceList

func (*ResourceApiApiService) GetVariableSet added in v0.1.7

func (a *ResourceApiApiService) GetVariableSet(ctx context.Context, variableSetId string) ApiGetVariableSetRequest

GetVariableSet Get a specific VariableSet

Get one VariableSet by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableSetId ID of a VariableSet used on Tracetest to inject values into tests and TestSuites
@return ApiGetVariableSetRequest

func (*ResourceApiApiService) GetVariableSetExecute added in v0.1.7

Execute executes the request

@return VariableSetResource

func (*ResourceApiApiService) ListConfiguration added in v0.1.7

ListConfiguration List Tracetest configuration

List Tracetest configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListConfigurationRequest

func (*ResourceApiApiService) ListConfigurationExecute added in v0.1.7

Execute executes the request

@return ConfigurationResourceList

func (*ResourceApiApiService) ListDataStore added in v0.1.7

ListDataStore List Data Store

List Data Store

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDataStoreRequest

func (*ResourceApiApiService) ListDataStoreExecute added in v0.1.7

Execute executes the request

@return DataStoreList

func (*ResourceApiApiService) ListDemos added in v0.1.7

ListDemos List Demonstrations

List demonstrations used on Tracetest as quick start examples.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDemosRequest

func (*ResourceApiApiService) ListDemosExecute added in v0.1.7

Execute executes the request

@return DemoList

func (*ResourceApiApiService) ListLinters added in v0.1.7

ListLinters List Linters

List Linters available in Tracetest.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListLintersRequest

func (*ResourceApiApiService) ListLintersExecute added in v0.1.7

Execute executes the request

@return LinterResourceList

func (*ResourceApiApiService) ListPollingProfile added in v0.1.7

ListPollingProfile List Polling Profile Configuration

List Polling Profile configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListPollingProfileRequest

func (*ResourceApiApiService) ListPollingProfileExecute added in v0.1.7

Execute executes the request

@return PollingProfileList

func (*ResourceApiApiService) ListVariableSets added in v0.1.7

ListVariableSets List VariableSets

List VariableSets available in Tracetest.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListVariableSetsRequest

func (*ResourceApiApiService) ListVariableSetsExecute added in v0.1.7

Execute executes the request

@return VariableSetResourceList

func (*ResourceApiApiService) TestsTestIdGet added in v0.1.7

func (a *ResourceApiApiService) TestsTestIdGet(ctx context.Context, testId string) ApiTestsTestIdGetRequest

TestsTestIdGet get test

get test

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiTestsTestIdGetRequest

func (*ResourceApiApiService) TestsTestIdGetExecute added in v0.1.7

Execute executes the request

@return TestResource

func (*ResourceApiApiService) UpdateConfiguration added in v0.1.7

func (a *ResourceApiApiService) UpdateConfiguration(ctx context.Context, configId string) ApiUpdateConfigurationRequest

UpdateConfiguration Update Tracetest configuration

Update Tracetest configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param configId ID of the configuration resource used on Tracetest. It should be set as 'current'
@return ApiUpdateConfigurationRequest

func (*ResourceApiApiService) UpdateConfigurationExecute added in v0.1.7

Execute executes the request

@return ConfigurationResource

func (*ResourceApiApiService) UpdateDataStore added in v0.1.7

func (a *ResourceApiApiService) UpdateDataStore(ctx context.Context, dataStoreId string) ApiUpdateDataStoreRequest

UpdateDataStore Update a Data Store

Update a Data Store

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dataStoreId ID of a datastore used on Tracetest to configure how to fetch traces in a test
@return ApiUpdateDataStoreRequest

func (*ResourceApiApiService) UpdateDataStoreExecute added in v0.1.7

func (a *ResourceApiApiService) UpdateDataStoreExecute(r ApiUpdateDataStoreRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) UpdateDemo added in v0.1.7

UpdateDemo Update a Demonstration setting

Update a demonstration used on Tracetest as quick start examples.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param demoId ID of a demonstration used on Tracetest as quick start examples
@return ApiUpdateDemoRequest

func (*ResourceApiApiService) UpdateDemoExecute added in v0.1.7

func (a *ResourceApiApiService) UpdateDemoExecute(r ApiUpdateDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) UpdateLinter added in v0.1.7

func (a *ResourceApiApiService) UpdateLinter(ctx context.Context, linterId string) ApiUpdateLinterRequest

UpdateLinter Update a Linter

Update a Linter used on Tracetest

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param linterId ID of an Linter
@return ApiUpdateLinterRequest

func (*ResourceApiApiService) UpdateLinterExecute added in v0.1.7

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) UpdatePollingProfile added in v0.1.7

func (a *ResourceApiApiService) UpdatePollingProfile(ctx context.Context, pollingProfileId string) ApiUpdatePollingProfileRequest

UpdatePollingProfile Update a Polling Profile

Update a polling profile used on Tracetest to configure how to fetch traces in a test.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pollingProfileId ID of a polling profile used on Tracetest to configure how to fetch traces in a test. It should be set as 'current'
@return ApiUpdatePollingProfileRequest

func (*ResourceApiApiService) UpdatePollingProfileExecute added in v0.1.7

Execute executes the request

@return PollingProfile

func (*ResourceApiApiService) UpdateTest added in v0.1.7

UpdateTest update test

update test action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testId id of the test
@return ApiUpdateTestRequest

func (*ResourceApiApiService) UpdateTestExecute added in v0.1.7

func (a *ResourceApiApiService) UpdateTestExecute(r ApiUpdateTestRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) UpdateTestSuite added in v0.1.7

func (a *ResourceApiApiService) UpdateTestSuite(ctx context.Context, testSuiteId string) ApiUpdateTestSuiteRequest

UpdateTestSuite update TestSuite

update TestSuite action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param testSuiteId id of the TestSuite
@return ApiUpdateTestSuiteRequest

func (*ResourceApiApiService) UpdateTestSuiteExecute added in v0.1.7

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) UpdateVariableSet added in v0.1.7

func (a *ResourceApiApiService) UpdateVariableSet(ctx context.Context, variableSetId string) ApiUpdateVariableSetRequest

UpdateVariableSet Update a VariableSet

Update a VariableSet used on Tracetest

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableSetId ID of a VariableSet used on Tracetest to inject values into tests and TestSuites
@return ApiUpdateVariableSetRequest

func (*ResourceApiApiService) UpdateVariableSetExecute added in v0.1.7

Execute executes the request

@return VariableSetResource

type RunInformation

type RunInformation struct {
	Metadata      map[string]string  `json:"metadata,omitempty"`
	VariableSetId *string            `json:"variableSetId,omitempty"`
	Variables     []VariableSetValue `json:"variables,omitempty"`
	RequiredGates []SupportedGates   `json:"requiredGates,omitempty"`
}

RunInformation struct for RunInformation

func NewRunInformation

func NewRunInformation() *RunInformation

NewRunInformation instantiates a new RunInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunInformationWithDefaults

func NewRunInformationWithDefaults() *RunInformation

NewRunInformationWithDefaults instantiates a new RunInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunInformation) GetMetadata

func (o *RunInformation) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunInformation) GetMetadataOk

func (o *RunInformation) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunInformation) GetRequiredGates added in v0.1.7

func (o *RunInformation) GetRequiredGates() []SupportedGates

GetRequiredGates returns the RequiredGates field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunInformation) GetRequiredGatesOk added in v0.1.7

func (o *RunInformation) GetRequiredGatesOk() ([]SupportedGates, bool)

GetRequiredGatesOk returns a tuple with the RequiredGates 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 (*RunInformation) GetVariableSetId added in v0.1.7

func (o *RunInformation) GetVariableSetId() string

GetVariableSetId returns the VariableSetId field value if set, zero value otherwise.

func (*RunInformation) GetVariableSetIdOk added in v0.1.7

func (o *RunInformation) GetVariableSetIdOk() (*string, bool)

GetVariableSetIdOk returns a tuple with the VariableSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunInformation) GetVariables

func (o *RunInformation) GetVariables() []VariableSetValue

GetVariables returns the Variables field value if set, zero value otherwise.

func (*RunInformation) GetVariablesOk

func (o *RunInformation) GetVariablesOk() ([]VariableSetValue, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunInformation) HasMetadata

func (o *RunInformation) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RunInformation) HasRequiredGates added in v0.1.7

func (o *RunInformation) HasRequiredGates() bool

HasRequiredGates returns a boolean if a field has been set.

func (*RunInformation) HasVariableSetId added in v0.1.7

func (o *RunInformation) HasVariableSetId() bool

HasVariableSetId returns a boolean if a field has been set.

func (*RunInformation) HasVariables

func (o *RunInformation) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (RunInformation) MarshalJSON

func (o RunInformation) MarshalJSON() ([]byte, error)

func (*RunInformation) SetMetadata

func (o *RunInformation) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*RunInformation) SetRequiredGates added in v0.1.7

func (o *RunInformation) SetRequiredGates(v []SupportedGates)

SetRequiredGates gets a reference to the given []SupportedGates and assigns it to the RequiredGates field.

func (*RunInformation) SetVariableSetId added in v0.1.7

func (o *RunInformation) SetVariableSetId(v string)

SetVariableSetId gets a reference to the given string and assigns it to the VariableSetId field.

func (*RunInformation) SetVariables

func (o *RunInformation) SetVariables(v []VariableSetValue)

SetVariables gets a reference to the given []VariableSetValue and assigns it to the Variables field.

func (RunInformation) ToMap added in v0.1.7

func (o RunInformation) ToMap() (map[string]interface{}, error)

type SelectedSpansResult

type SelectedSpansResult struct {
	Selector *Selector `json:"selector,omitempty"`
	SpanIds  []string  `json:"spanIds,omitempty"`
}

SelectedSpansResult struct for SelectedSpansResult

func NewSelectedSpansResult

func NewSelectedSpansResult() *SelectedSpansResult

NewSelectedSpansResult instantiates a new SelectedSpansResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectedSpansResultWithDefaults

func NewSelectedSpansResultWithDefaults() *SelectedSpansResult

NewSelectedSpansResultWithDefaults instantiates a new SelectedSpansResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelectedSpansResult) GetSelector

func (o *SelectedSpansResult) GetSelector() Selector

GetSelector returns the Selector field value if set, zero value otherwise.

func (*SelectedSpansResult) GetSelectorOk

func (o *SelectedSpansResult) GetSelectorOk() (*Selector, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectedSpansResult) GetSpanIds

func (o *SelectedSpansResult) GetSpanIds() []string

GetSpanIds returns the SpanIds field value if set, zero value otherwise.

func (*SelectedSpansResult) GetSpanIdsOk

func (o *SelectedSpansResult) GetSpanIdsOk() ([]string, bool)

GetSpanIdsOk returns a tuple with the SpanIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectedSpansResult) HasSelector

func (o *SelectedSpansResult) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*SelectedSpansResult) HasSpanIds

func (o *SelectedSpansResult) HasSpanIds() bool

HasSpanIds returns a boolean if a field has been set.

func (SelectedSpansResult) MarshalJSON

func (o SelectedSpansResult) MarshalJSON() ([]byte, error)

func (*SelectedSpansResult) SetSelector

func (o *SelectedSpansResult) SetSelector(v Selector)

SetSelector gets a reference to the given Selector and assigns it to the Selector field.

func (*SelectedSpansResult) SetSpanIds

func (o *SelectedSpansResult) SetSpanIds(v []string)

SetSpanIds gets a reference to the given []string and assigns it to the SpanIds field.

func (SelectedSpansResult) ToMap added in v0.1.7

func (o SelectedSpansResult) ToMap() (map[string]interface{}, error)

type Selector

type Selector struct {
	Query     *string        `json:"query,omitempty"`
	Structure []SpanSelector `json:"structure,omitempty"`
}

Selector struct for Selector

func NewSelector

func NewSelector() *Selector

NewSelector instantiates a new Selector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectorWithDefaults

func NewSelectorWithDefaults() *Selector

NewSelectorWithDefaults instantiates a new Selector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Selector) GetQuery

func (o *Selector) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*Selector) GetQueryOk

func (o *Selector) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Selector) GetStructure

func (o *Selector) GetStructure() []SpanSelector

GetStructure returns the Structure field value if set, zero value otherwise.

func (*Selector) GetStructureOk

func (o *Selector) GetStructureOk() ([]SpanSelector, bool)

GetStructureOk returns a tuple with the Structure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Selector) HasQuery

func (o *Selector) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*Selector) HasStructure

func (o *Selector) HasStructure() bool

HasStructure returns a boolean if a field has been set.

func (Selector) MarshalJSON

func (o Selector) MarshalJSON() ([]byte, error)

func (*Selector) SetQuery

func (o *Selector) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*Selector) SetStructure

func (o *Selector) SetStructure(v []SpanSelector)

SetStructure gets a reference to the given []SpanSelector and assigns it to the Structure field.

func (Selector) ToMap added in v0.1.7

func (o Selector) ToMap() (map[string]interface{}, error)

type SelectorFilter

type SelectorFilter struct {
	Property string `json:"property"`
	Operator string `json:"operator"`
	Value    string `json:"value"`
}

SelectorFilter struct for SelectorFilter

func NewSelectorFilter

func NewSelectorFilter(property string, operator string, value string) *SelectorFilter

NewSelectorFilter instantiates a new SelectorFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectorFilterWithDefaults

func NewSelectorFilterWithDefaults() *SelectorFilter

NewSelectorFilterWithDefaults instantiates a new SelectorFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelectorFilter) GetOperator

func (o *SelectorFilter) GetOperator() string

GetOperator returns the Operator field value

func (*SelectorFilter) GetOperatorOk

func (o *SelectorFilter) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator field value and a boolean to check if the value has been set.

func (*SelectorFilter) GetProperty

func (o *SelectorFilter) GetProperty() string

GetProperty returns the Property field value

func (*SelectorFilter) GetPropertyOk

func (o *SelectorFilter) GetPropertyOk() (*string, bool)

GetPropertyOk returns a tuple with the Property field value and a boolean to check if the value has been set.

func (*SelectorFilter) GetValue

func (o *SelectorFilter) GetValue() string

GetValue returns the Value field value

func (*SelectorFilter) GetValueOk

func (o *SelectorFilter) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (SelectorFilter) MarshalJSON

func (o SelectorFilter) MarshalJSON() ([]byte, error)

func (*SelectorFilter) SetOperator

func (o *SelectorFilter) SetOperator(v string)

SetOperator sets field value

func (*SelectorFilter) SetProperty

func (o *SelectorFilter) SetProperty(v string)

SetProperty sets field value

func (*SelectorFilter) SetValue

func (o *SelectorFilter) SetValue(v string)

SetValue sets field value

func (SelectorFilter) ToMap added in v0.1.7

func (o SelectorFilter) ToMap() (map[string]interface{}, error)

type SelectorPseudoClass

type SelectorPseudoClass struct {
	Name     string `json:"name"`
	Argument *int32 `json:"argument,omitempty"`
}

SelectorPseudoClass struct for SelectorPseudoClass

func NewSelectorPseudoClass

func NewSelectorPseudoClass(name string) *SelectorPseudoClass

NewSelectorPseudoClass instantiates a new SelectorPseudoClass object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectorPseudoClassWithDefaults

func NewSelectorPseudoClassWithDefaults() *SelectorPseudoClass

NewSelectorPseudoClassWithDefaults instantiates a new SelectorPseudoClass object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelectorPseudoClass) GetArgument

func (o *SelectorPseudoClass) GetArgument() int32

GetArgument returns the Argument field value if set, zero value otherwise.

func (*SelectorPseudoClass) GetArgumentOk

func (o *SelectorPseudoClass) GetArgumentOk() (*int32, bool)

GetArgumentOk returns a tuple with the Argument field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectorPseudoClass) GetName

func (o *SelectorPseudoClass) GetName() string

GetName returns the Name field value

func (*SelectorPseudoClass) GetNameOk

func (o *SelectorPseudoClass) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SelectorPseudoClass) HasArgument

func (o *SelectorPseudoClass) HasArgument() bool

HasArgument returns a boolean if a field has been set.

func (SelectorPseudoClass) MarshalJSON

func (o SelectorPseudoClass) MarshalJSON() ([]byte, error)

func (*SelectorPseudoClass) SetArgument

func (o *SelectorPseudoClass) SetArgument(v int32)

SetArgument gets a reference to the given int32 and assigns it to the Argument field.

func (*SelectorPseudoClass) SetName

func (o *SelectorPseudoClass) SetName(v string)

SetName sets field value

func (SelectorPseudoClass) ToMap added in v0.1.7

func (o SelectorPseudoClass) ToMap() (map[string]interface{}, error)

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 SignalFX

type SignalFX struct {
	Realm *string `json:"realm,omitempty"`
	Token *string `json:"token,omitempty"`
}

SignalFX struct for SignalFX

func NewSignalFX

func NewSignalFX() *SignalFX

NewSignalFX instantiates a new SignalFX object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSignalFXWithDefaults

func NewSignalFXWithDefaults() *SignalFX

NewSignalFXWithDefaults instantiates a new SignalFX object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SignalFX) GetRealm

func (o *SignalFX) GetRealm() string

GetRealm returns the Realm field value if set, zero value otherwise.

func (*SignalFX) GetRealmOk

func (o *SignalFX) GetRealmOk() (*string, bool)

GetRealmOk returns a tuple with the Realm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SignalFX) GetToken

func (o *SignalFX) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SignalFX) GetTokenOk

func (o *SignalFX) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SignalFX) HasRealm

func (o *SignalFX) HasRealm() bool

HasRealm returns a boolean if a field has been set.

func (*SignalFX) HasToken

func (o *SignalFX) HasToken() bool

HasToken returns a boolean if a field has been set.

func (SignalFX) MarshalJSON

func (o SignalFX) MarshalJSON() ([]byte, error)

func (*SignalFX) SetRealm

func (o *SignalFX) SetRealm(v string)

SetRealm gets a reference to the given string and assigns it to the Realm field.

func (*SignalFX) SetToken

func (o *SignalFX) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (SignalFX) ToMap added in v0.1.7

func (o SignalFX) ToMap() (map[string]interface{}, error)

type Span

type Span struct {
	Id       *string `json:"id,omitempty"`
	ParentId *string `json:"parentId,omitempty"`
	Name     *string `json:"name,omitempty"`
	Kind     *string `json:"kind,omitempty"`
	// span start time in unix milli format
	StartTime *int64 `json:"startTime,omitempty"`
	// span end time in unix milli format
	EndTime *int64 `json:"endTime,omitempty"`
	// Key-Value of span attributes
	Attributes *map[string]string `json:"attributes,omitempty"`
	Children   []Span             `json:"children,omitempty"`
}

Span struct for Span

func NewSpan

func NewSpan() *Span

NewSpan instantiates a new Span object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSpanWithDefaults

func NewSpanWithDefaults() *Span

NewSpanWithDefaults instantiates a new Span object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Span) GetAttributes

func (o *Span) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Span) GetAttributesOk

func (o *Span) GetAttributesOk() (*map[string]string, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetChildren

func (o *Span) GetChildren() []Span

GetChildren returns the Children field value if set, zero value otherwise.

func (*Span) GetChildrenOk

func (o *Span) GetChildrenOk() ([]Span, bool)

GetChildrenOk returns a tuple with the Children field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetEndTime

func (o *Span) GetEndTime() int64

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*Span) GetEndTimeOk

func (o *Span) GetEndTimeOk() (*int64, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetId

func (o *Span) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Span) GetIdOk

func (o *Span) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetKind added in v0.1.7

func (o *Span) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Span) GetKindOk added in v0.1.7

func (o *Span) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetName

func (o *Span) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Span) GetNameOk

func (o *Span) 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 (*Span) GetParentId

func (o *Span) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Span) GetParentIdOk

func (o *Span) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) GetStartTime

func (o *Span) GetStartTime() int64

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*Span) GetStartTimeOk

func (o *Span) GetStartTimeOk() (*int64, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Span) HasAttributes

func (o *Span) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Span) HasChildren

func (o *Span) HasChildren() bool

HasChildren returns a boolean if a field has been set.

func (*Span) HasEndTime

func (o *Span) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*Span) HasId

func (o *Span) HasId() bool

HasId returns a boolean if a field has been set.

func (*Span) HasKind added in v0.1.7

func (o *Span) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Span) HasName

func (o *Span) HasName() bool

HasName returns a boolean if a field has been set.

func (*Span) HasParentId

func (o *Span) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Span) HasStartTime

func (o *Span) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (Span) MarshalJSON

func (o Span) MarshalJSON() ([]byte, error)

func (*Span) SetAttributes

func (o *Span) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*Span) SetChildren

func (o *Span) SetChildren(v []Span)

SetChildren gets a reference to the given []Span and assigns it to the Children field.

func (*Span) SetEndTime

func (o *Span) SetEndTime(v int64)

SetEndTime gets a reference to the given int64 and assigns it to the EndTime field.

func (*Span) SetId

func (o *Span) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Span) SetKind added in v0.1.7

func (o *Span) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Span) SetName

func (o *Span) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Span) SetParentId

func (o *Span) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Span) SetStartTime

func (o *Span) SetStartTime(v int64)

SetStartTime gets a reference to the given int64 and assigns it to the StartTime field.

func (Span) ToMap added in v0.1.7

func (o Span) ToMap() (map[string]interface{}, error)

type SpanSelector

type SpanSelector struct {
	Filters       []SelectorFilter            `json:"filters"`
	PseudoClass   NullableSelectorPseudoClass `json:"pseudoClass,omitempty"`
	ChildSelector NullableSpanSelector        `json:"childSelector,omitempty"`
}

SpanSelector struct for SpanSelector

func NewSpanSelector

func NewSpanSelector(filters []SelectorFilter) *SpanSelector

NewSpanSelector instantiates a new SpanSelector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSpanSelectorWithDefaults

func NewSpanSelectorWithDefaults() *SpanSelector

NewSpanSelectorWithDefaults instantiates a new SpanSelector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SpanSelector) GetChildSelector

func (o *SpanSelector) GetChildSelector() SpanSelector

GetChildSelector returns the ChildSelector field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpanSelector) GetChildSelectorOk

func (o *SpanSelector) GetChildSelectorOk() (*SpanSelector, bool)

GetChildSelectorOk returns a tuple with the ChildSelector 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 (*SpanSelector) GetFilters

func (o *SpanSelector) GetFilters() []SelectorFilter

GetFilters returns the Filters field value

func (*SpanSelector) GetFiltersOk

func (o *SpanSelector) GetFiltersOk() ([]SelectorFilter, bool)

GetFiltersOk returns a tuple with the Filters field value and a boolean to check if the value has been set.

func (*SpanSelector) GetPseudoClass

func (o *SpanSelector) GetPseudoClass() SelectorPseudoClass

GetPseudoClass returns the PseudoClass field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpanSelector) GetPseudoClassOk

func (o *SpanSelector) GetPseudoClassOk() (*SelectorPseudoClass, bool)

GetPseudoClassOk returns a tuple with the PseudoClass 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 (*SpanSelector) HasChildSelector

func (o *SpanSelector) HasChildSelector() bool

HasChildSelector returns a boolean if a field has been set.

func (*SpanSelector) HasPseudoClass

func (o *SpanSelector) HasPseudoClass() bool

HasPseudoClass returns a boolean if a field has been set.

func (SpanSelector) MarshalJSON

func (o SpanSelector) MarshalJSON() ([]byte, error)

func (*SpanSelector) SetChildSelector

func (o *SpanSelector) SetChildSelector(v SpanSelector)

SetChildSelector gets a reference to the given NullableSpanSelector and assigns it to the ChildSelector field.

func (*SpanSelector) SetChildSelectorNil

func (o *SpanSelector) SetChildSelectorNil()

SetChildSelectorNil sets the value for ChildSelector to be an explicit nil

func (*SpanSelector) SetFilters

func (o *SpanSelector) SetFilters(v []SelectorFilter)

SetFilters sets field value

func (*SpanSelector) SetPseudoClass

func (o *SpanSelector) SetPseudoClass(v SelectorPseudoClass)

SetPseudoClass gets a reference to the given NullableSelectorPseudoClass and assigns it to the PseudoClass field.

func (*SpanSelector) SetPseudoClassNil

func (o *SpanSelector) SetPseudoClassNil()

SetPseudoClassNil sets the value for PseudoClass to be an explicit nil

func (SpanSelector) ToMap added in v0.1.7

func (o SpanSelector) ToMap() (map[string]interface{}, error)

func (*SpanSelector) UnsetChildSelector

func (o *SpanSelector) UnsetChildSelector()

UnsetChildSelector ensures that no value is present for ChildSelector, not even an explicit nil

func (*SpanSelector) UnsetPseudoClass

func (o *SpanSelector) UnsetPseudoClass()

UnsetPseudoClass ensures that no value is present for PseudoClass, not even an explicit nil

type SupportedClients added in v0.1.7

type SupportedClients string

SupportedClients the model 'SupportedClients'

const (
	HTTP SupportedClients = "http"
	GRPC SupportedClients = "grpc"
)

List of SupportedClients

func NewSupportedClientsFromValue added in v0.1.7

func NewSupportedClientsFromValue(v string) (*SupportedClients, error)

NewSupportedClientsFromValue returns a pointer to a valid SupportedClients for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SupportedClients) IsValid added in v0.1.7

func (v SupportedClients) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SupportedClients) Ptr added in v0.1.7

Ptr returns reference to SupportedClients value

func (*SupportedClients) UnmarshalJSON added in v0.1.7

func (v *SupportedClients) UnmarshalJSON(src []byte) error

type SupportedConnectionTypes added in v0.1.7

type SupportedConnectionTypes string

SupportedConnectionTypes the model 'SupportedConnectionTypes'

const (
	DIRECT    SupportedConnectionTypes = "direct"
	COLLECTOR SupportedConnectionTypes = "collector"
)

List of SupportedConnectionTypes

func NewSupportedConnectionTypesFromValue added in v0.1.7

func NewSupportedConnectionTypesFromValue(v string) (*SupportedConnectionTypes, error)

NewSupportedConnectionTypesFromValue returns a pointer to a valid SupportedConnectionTypes for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SupportedConnectionTypes) IsValid added in v0.1.7

func (v SupportedConnectionTypes) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SupportedConnectionTypes) Ptr added in v0.1.7

Ptr returns reference to SupportedConnectionTypes value

func (*SupportedConnectionTypes) UnmarshalJSON added in v0.1.7

func (v *SupportedConnectionTypes) UnmarshalJSON(src []byte) error

type SupportedDataStores

type SupportedDataStores string

SupportedDataStores the model 'SupportedDataStores'

const (
	AGENT            SupportedDataStores = "agent"
	JAEGER           SupportedDataStores = "jaeger"
	OPENSEARCH       SupportedDataStores = "opensearch"
	TEMPO            SupportedDataStores = "tempo"
	SIGNALFX         SupportedDataStores = "signalfx"
	OTLP             SupportedDataStores = "otlp"
	ELASTICAPM       SupportedDataStores = "elasticapm"
	NEWRELIC         SupportedDataStores = "newrelic"
	LIGHTSTEP        SupportedDataStores = "lightstep"
	DATADOG          SupportedDataStores = "datadog"
	AWSXRAY          SupportedDataStores = "awsxray"
	HONEYCOMB        SupportedDataStores = "honeycomb"
	AZUREAPPINSIGHTS SupportedDataStores = "azureappinsights"
	SIGNOZ           SupportedDataStores = "signoz"
	DYNATRACE        SupportedDataStores = "dynatrace"
)

List of SupportedDataStores

func NewSupportedDataStoresFromValue

func NewSupportedDataStoresFromValue(v string) (*SupportedDataStores, error)

NewSupportedDataStoresFromValue returns a pointer to a valid SupportedDataStores for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SupportedDataStores) IsValid

func (v SupportedDataStores) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SupportedDataStores) Ptr

Ptr returns reference to SupportedDataStores value

func (*SupportedDataStores) UnmarshalJSON

func (v *SupportedDataStores) UnmarshalJSON(src []byte) error

type SupportedGates added in v0.1.7

type SupportedGates string

SupportedGates the model 'SupportedGates'

const (
	ANALYZER_SCORE SupportedGates = "analyzer-score"
	ANALYZER_RULES SupportedGates = "analyzer-rules"
	TEST_SPECS     SupportedGates = "test-specs"
)

List of SupportedGates

func NewSupportedGatesFromValue added in v0.1.7

func NewSupportedGatesFromValue(v string) (*SupportedGates, error)

NewSupportedGatesFromValue returns a pointer to a valid SupportedGates for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SupportedGates) IsValid added in v0.1.7

func (v SupportedGates) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SupportedGates) Ptr added in v0.1.7

func (v SupportedGates) Ptr() *SupportedGates

Ptr returns reference to SupportedGates value

func (*SupportedGates) UnmarshalJSON added in v0.1.7

func (v *SupportedGates) UnmarshalJSON(src []byte) error

type TLS

type TLS struct {
	Insecure           *bool       `json:"insecure,omitempty"`
	InsecureSkipVerify *bool       `json:"insecureSkipVerify,omitempty"`
	ServerName         *string     `json:"serverName,omitempty"`
	Settings           *TLSSetting `json:"settings,omitempty"`
}

TLS struct for TLS

func NewTLS

func NewTLS() *TLS

NewTLS instantiates a new TLS object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTLSWithDefaults

func NewTLSWithDefaults() *TLS

NewTLSWithDefaults instantiates a new TLS object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TLS) GetInsecure

func (o *TLS) GetInsecure() bool

GetInsecure returns the Insecure field value if set, zero value otherwise.

func (*TLS) GetInsecureOk

func (o *TLS) GetInsecureOk() (*bool, bool)

GetInsecureOk returns a tuple with the Insecure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLS) GetInsecureSkipVerify

func (o *TLS) GetInsecureSkipVerify() bool

GetInsecureSkipVerify returns the InsecureSkipVerify field value if set, zero value otherwise.

func (*TLS) GetInsecureSkipVerifyOk

func (o *TLS) GetInsecureSkipVerifyOk() (*bool, bool)

GetInsecureSkipVerifyOk returns a tuple with the InsecureSkipVerify field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLS) GetServerName

func (o *TLS) GetServerName() string

GetServerName returns the ServerName field value if set, zero value otherwise.

func (*TLS) GetServerNameOk

func (o *TLS) GetServerNameOk() (*string, bool)

GetServerNameOk returns a tuple with the ServerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLS) GetSettings

func (o *TLS) GetSettings() TLSSetting

GetSettings returns the Settings field value if set, zero value otherwise.

func (*TLS) GetSettingsOk

func (o *TLS) GetSettingsOk() (*TLSSetting, bool)

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLS) HasInsecure

func (o *TLS) HasInsecure() bool

HasInsecure returns a boolean if a field has been set.

func (*TLS) HasInsecureSkipVerify

func (o *TLS) HasInsecureSkipVerify() bool

HasInsecureSkipVerify returns a boolean if a field has been set.

func (*TLS) HasServerName

func (o *TLS) HasServerName() bool

HasServerName returns a boolean if a field has been set.

func (*TLS) HasSettings

func (o *TLS) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (TLS) MarshalJSON

func (o TLS) MarshalJSON() ([]byte, error)

func (*TLS) SetInsecure

func (o *TLS) SetInsecure(v bool)

SetInsecure gets a reference to the given bool and assigns it to the Insecure field.

func (*TLS) SetInsecureSkipVerify

func (o *TLS) SetInsecureSkipVerify(v bool)

SetInsecureSkipVerify gets a reference to the given bool and assigns it to the InsecureSkipVerify field.

func (*TLS) SetServerName

func (o *TLS) SetServerName(v string)

SetServerName gets a reference to the given string and assigns it to the ServerName field.

func (*TLS) SetSettings

func (o *TLS) SetSettings(v TLSSetting)

SetSettings gets a reference to the given TLSSetting and assigns it to the Settings field.

func (TLS) ToMap added in v0.1.7

func (o TLS) ToMap() (map[string]interface{}, error)

type TLSSetting

type TLSSetting struct {
	CAFile     *string `json:"cAFile,omitempty"`
	CertFile   *string `json:"certFile,omitempty"`
	KeyFile    *string `json:"keyFile,omitempty"`
	MinVersion *string `json:"minVersion,omitempty"`
	MaxVersion *string `json:"maxVersion,omitempty"`
}

TLSSetting struct for TLSSetting

func NewTLSSetting

func NewTLSSetting() *TLSSetting

NewTLSSetting instantiates a new TLSSetting object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTLSSettingWithDefaults

func NewTLSSettingWithDefaults() *TLSSetting

NewTLSSettingWithDefaults instantiates a new TLSSetting object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TLSSetting) GetCAFile

func (o *TLSSetting) GetCAFile() string

GetCAFile returns the CAFile field value if set, zero value otherwise.

func (*TLSSetting) GetCAFileOk

func (o *TLSSetting) GetCAFileOk() (*string, bool)

GetCAFileOk returns a tuple with the CAFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLSSetting) GetCertFile

func (o *TLSSetting) GetCertFile() string

GetCertFile returns the CertFile field value if set, zero value otherwise.

func (*TLSSetting) GetCertFileOk

func (o *TLSSetting) GetCertFileOk() (*string, bool)

GetCertFileOk returns a tuple with the CertFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLSSetting) GetKeyFile

func (o *TLSSetting) GetKeyFile() string

GetKeyFile returns the KeyFile field value if set, zero value otherwise.

func (*TLSSetting) GetKeyFileOk

func (o *TLSSetting) GetKeyFileOk() (*string, bool)

GetKeyFileOk returns a tuple with the KeyFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLSSetting) GetMaxVersion

func (o *TLSSetting) GetMaxVersion() string

GetMaxVersion returns the MaxVersion field value if set, zero value otherwise.

func (*TLSSetting) GetMaxVersionOk

func (o *TLSSetting) GetMaxVersionOk() (*string, bool)

GetMaxVersionOk returns a tuple with the MaxVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLSSetting) GetMinVersion

func (o *TLSSetting) GetMinVersion() string

GetMinVersion returns the MinVersion field value if set, zero value otherwise.

func (*TLSSetting) GetMinVersionOk

func (o *TLSSetting) GetMinVersionOk() (*string, bool)

GetMinVersionOk returns a tuple with the MinVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TLSSetting) HasCAFile

func (o *TLSSetting) HasCAFile() bool

HasCAFile returns a boolean if a field has been set.

func (*TLSSetting) HasCertFile

func (o *TLSSetting) HasCertFile() bool

HasCertFile returns a boolean if a field has been set.

func (*TLSSetting) HasKeyFile

func (o *TLSSetting) HasKeyFile() bool

HasKeyFile returns a boolean if a field has been set.

func (*TLSSetting) HasMaxVersion

func (o *TLSSetting) HasMaxVersion() bool

HasMaxVersion returns a boolean if a field has been set.

func (*TLSSetting) HasMinVersion

func (o *TLSSetting) HasMinVersion() bool

HasMinVersion returns a boolean if a field has been set.

func (TLSSetting) MarshalJSON

func (o TLSSetting) MarshalJSON() ([]byte, error)

func (*TLSSetting) SetCAFile

func (o *TLSSetting) SetCAFile(v string)

SetCAFile gets a reference to the given string and assigns it to the CAFile field.

func (*TLSSetting) SetCertFile

func (o *TLSSetting) SetCertFile(v string)

SetCertFile gets a reference to the given string and assigns it to the CertFile field.

func (*TLSSetting) SetKeyFile

func (o *TLSSetting) SetKeyFile(v string)

SetKeyFile gets a reference to the given string and assigns it to the KeyFile field.

func (*TLSSetting) SetMaxVersion

func (o *TLSSetting) SetMaxVersion(v string)

SetMaxVersion gets a reference to the given string and assigns it to the MaxVersion field.

func (*TLSSetting) SetMinVersion

func (o *TLSSetting) SetMinVersion(v string)

SetMinVersion gets a reference to the given string and assigns it to the MinVersion field.

func (TLSSetting) ToMap added in v0.1.7

func (o TLSSetting) ToMap() (map[string]interface{}, error)

type TRACEIDRequest

type TRACEIDRequest struct {
	Id *string `json:"id,omitempty"`
}

TRACEIDRequest struct for TRACEIDRequest

func NewTRACEIDRequest

func NewTRACEIDRequest() *TRACEIDRequest

NewTRACEIDRequest instantiates a new TRACEIDRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTRACEIDRequestWithDefaults

func NewTRACEIDRequestWithDefaults() *TRACEIDRequest

NewTRACEIDRequestWithDefaults instantiates a new TRACEIDRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TRACEIDRequest) GetId

func (o *TRACEIDRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TRACEIDRequest) GetIdOk

func (o *TRACEIDRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TRACEIDRequest) HasId

func (o *TRACEIDRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (TRACEIDRequest) MarshalJSON

func (o TRACEIDRequest) MarshalJSON() ([]byte, error)

func (*TRACEIDRequest) SetId

func (o *TRACEIDRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (TRACEIDRequest) ToMap added in v0.1.7

func (o TRACEIDRequest) ToMap() (map[string]interface{}, error)

type TRACEIDResponse

type TRACEIDResponse struct {
	Id *string `json:"id,omitempty"`
}

TRACEIDResponse struct for TRACEIDResponse

func NewTRACEIDResponse

func NewTRACEIDResponse() *TRACEIDResponse

NewTRACEIDResponse instantiates a new TRACEIDResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTRACEIDResponseWithDefaults

func NewTRACEIDResponseWithDefaults() *TRACEIDResponse

NewTRACEIDResponseWithDefaults instantiates a new TRACEIDResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TRACEIDResponse) GetId

func (o *TRACEIDResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TRACEIDResponse) GetIdOk

func (o *TRACEIDResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TRACEIDResponse) HasId

func (o *TRACEIDResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (TRACEIDResponse) MarshalJSON

func (o TRACEIDResponse) MarshalJSON() ([]byte, error)

func (*TRACEIDResponse) SetId

func (o *TRACEIDResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (TRACEIDResponse) ToMap added in v0.1.7

func (o TRACEIDResponse) ToMap() (map[string]interface{}, error)

type Test

type Test struct {
	Id          *string `json:"id,omitempty"`
	Name        *string `json:"name,omitempty"`
	Description *string `json:"description,omitempty"`
	// version number of the test
	Version   *int32     `json:"version,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	Trigger   *Trigger   `json:"trigger,omitempty"`
	// specification of assertions that are going to be made
	Specs []TestSpec `json:"specs,omitempty"`
	// define test outputs, in a key/value format. The value is processed as an expression
	Outputs []TestOutput `json:"outputs,omitempty"`
	Summary *TestSummary `json:"summary,omitempty"`
}

Test struct for Test

func NewTest

func NewTest() *Test

NewTest instantiates a new Test object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestWithDefaults

func NewTestWithDefaults() *Test

NewTestWithDefaults instantiates a new Test object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Test) GetCreatedAt

func (o *Test) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Test) GetCreatedAtOk

func (o *Test) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetDescription

func (o *Test) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Test) GetDescriptionOk

func (o *Test) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetId

func (o *Test) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Test) GetIdOk

func (o *Test) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetName

func (o *Test) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Test) GetNameOk

func (o *Test) 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 (*Test) GetOutputs

func (o *Test) GetOutputs() []TestOutput

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*Test) GetOutputsOk

func (o *Test) GetOutputsOk() ([]TestOutput, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetSpecs

func (o *Test) GetSpecs() []TestSpec

GetSpecs returns the Specs field value if set, zero value otherwise.

func (*Test) GetSpecsOk

func (o *Test) GetSpecsOk() ([]TestSpec, bool)

GetSpecsOk returns a tuple with the Specs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetSummary

func (o *Test) GetSummary() TestSummary

GetSummary returns the Summary field value if set, zero value otherwise.

func (*Test) GetSummaryOk

func (o *Test) GetSummaryOk() (*TestSummary, bool)

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetTrigger added in v0.1.7

func (o *Test) GetTrigger() Trigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*Test) GetTriggerOk added in v0.1.7

func (o *Test) GetTriggerOk() (*Trigger, bool)

GetTriggerOk returns a tuple with the Trigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) GetVersion

func (o *Test) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*Test) GetVersionOk

func (o *Test) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Test) HasCreatedAt

func (o *Test) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Test) HasDescription

func (o *Test) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Test) HasId

func (o *Test) HasId() bool

HasId returns a boolean if a field has been set.

func (*Test) HasName

func (o *Test) HasName() bool

HasName returns a boolean if a field has been set.

func (*Test) HasOutputs

func (o *Test) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*Test) HasSpecs

func (o *Test) HasSpecs() bool

HasSpecs returns a boolean if a field has been set.

func (*Test) HasSummary

func (o *Test) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (*Test) HasTrigger added in v0.1.7

func (o *Test) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*Test) HasVersion

func (o *Test) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Test) MarshalJSON

func (o Test) MarshalJSON() ([]byte, error)

func (*Test) SetCreatedAt

func (o *Test) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Test) SetDescription

func (o *Test) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Test) SetId

func (o *Test) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Test) SetName

func (o *Test) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Test) SetOutputs

func (o *Test) SetOutputs(v []TestOutput)

SetOutputs gets a reference to the given []TestOutput and assigns it to the Outputs field.

func (*Test) SetSpecs

func (o *Test) SetSpecs(v []TestSpec)

SetSpecs gets a reference to the given []TestSpec and assigns it to the Specs field.

func (*Test) SetSummary

func (o *Test) SetSummary(v TestSummary)

SetSummary gets a reference to the given TestSummary and assigns it to the Summary field.

func (*Test) SetTrigger added in v0.1.7

func (o *Test) SetTrigger(v Trigger)

SetTrigger gets a reference to the given Trigger and assigns it to the Trigger field.

func (*Test) SetVersion

func (o *Test) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (Test) ToMap added in v0.1.7

func (o Test) ToMap() (map[string]interface{}, error)

type TestConnectionResponse

type TestConnectionResponse struct {
	Successful *bool              `json:"successful,omitempty"`
	Steps      []ConnectionResult `json:"steps,omitempty"`
}

TestConnectionResponse struct for TestConnectionResponse

func NewTestConnectionResponse

func NewTestConnectionResponse() *TestConnectionResponse

NewTestConnectionResponse instantiates a new TestConnectionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestConnectionResponseWithDefaults

func NewTestConnectionResponseWithDefaults() *TestConnectionResponse

NewTestConnectionResponseWithDefaults instantiates a new TestConnectionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestConnectionResponse) GetSteps

func (o *TestConnectionResponse) GetSteps() []ConnectionResult

GetSteps returns the Steps field value if set, zero value otherwise.

func (*TestConnectionResponse) GetStepsOk

func (o *TestConnectionResponse) GetStepsOk() ([]ConnectionResult, bool)

GetStepsOk returns a tuple with the Steps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestConnectionResponse) GetSuccessful

func (o *TestConnectionResponse) GetSuccessful() bool

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*TestConnectionResponse) GetSuccessfulOk

func (o *TestConnectionResponse) GetSuccessfulOk() (*bool, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestConnectionResponse) HasSteps

func (o *TestConnectionResponse) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*TestConnectionResponse) HasSuccessful

func (o *TestConnectionResponse) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (TestConnectionResponse) MarshalJSON

func (o TestConnectionResponse) MarshalJSON() ([]byte, error)

func (*TestConnectionResponse) SetSteps

func (o *TestConnectionResponse) SetSteps(v []ConnectionResult)

SetSteps gets a reference to the given []ConnectionResult and assigns it to the Steps field.

func (*TestConnectionResponse) SetSuccessful

func (o *TestConnectionResponse) SetSuccessful(v bool)

SetSuccessful gets a reference to the given bool and assigns it to the Successful field.

func (TestConnectionResponse) ToMap added in v0.1.7

func (o TestConnectionResponse) ToMap() (map[string]interface{}, error)

type TestOutput

type TestOutput struct {
	Name           *string   `json:"name,omitempty"`
	Selector       *string   `json:"selector,omitempty"`
	SelectorParsed *Selector `json:"selectorParsed,omitempty"`
	Value          *string   `json:"value,omitempty"`
}

TestOutput struct for TestOutput

func NewTestOutput

func NewTestOutput() *TestOutput

NewTestOutput instantiates a new TestOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestOutputWithDefaults

func NewTestOutputWithDefaults() *TestOutput

NewTestOutputWithDefaults instantiates a new TestOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestOutput) GetName

func (o *TestOutput) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TestOutput) GetNameOk

func (o *TestOutput) 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 (*TestOutput) GetSelector

func (o *TestOutput) GetSelector() string

GetSelector returns the Selector field value if set, zero value otherwise.

func (*TestOutput) GetSelectorOk

func (o *TestOutput) GetSelectorOk() (*string, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestOutput) GetSelectorParsed added in v0.1.7

func (o *TestOutput) GetSelectorParsed() Selector

GetSelectorParsed returns the SelectorParsed field value if set, zero value otherwise.

func (*TestOutput) GetSelectorParsedOk added in v0.1.7

func (o *TestOutput) GetSelectorParsedOk() (*Selector, bool)

GetSelectorParsedOk returns a tuple with the SelectorParsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestOutput) GetValue

func (o *TestOutput) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*TestOutput) GetValueOk

func (o *TestOutput) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestOutput) HasName

func (o *TestOutput) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestOutput) HasSelector

func (o *TestOutput) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*TestOutput) HasSelectorParsed added in v0.1.7

func (o *TestOutput) HasSelectorParsed() bool

HasSelectorParsed returns a boolean if a field has been set.

func (*TestOutput) HasValue

func (o *TestOutput) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TestOutput) MarshalJSON

func (o TestOutput) MarshalJSON() ([]byte, error)

func (*TestOutput) SetName

func (o *TestOutput) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TestOutput) SetSelector

func (o *TestOutput) SetSelector(v string)

SetSelector gets a reference to the given string and assigns it to the Selector field.

func (*TestOutput) SetSelectorParsed added in v0.1.7

func (o *TestOutput) SetSelectorParsed(v Selector)

SetSelectorParsed gets a reference to the given Selector and assigns it to the SelectorParsed field.

func (*TestOutput) SetValue

func (o *TestOutput) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (TestOutput) ToMap added in v0.1.7

func (o TestOutput) ToMap() (map[string]interface{}, error)

type TestResource added in v0.1.7

type TestResource struct {
	// Represents the type of this resource. It should always be set as 'Test'.
	Type *string `json:"type,omitempty"`
	Spec *Test   `json:"spec,omitempty"`
}

TestResource Represents a test structured into the Resources format.

func NewTestResource added in v0.1.7

func NewTestResource() *TestResource

NewTestResource instantiates a new TestResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestResourceWithDefaults added in v0.1.7

func NewTestResourceWithDefaults() *TestResource

NewTestResourceWithDefaults instantiates a new TestResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestResource) GetSpec added in v0.1.7

func (o *TestResource) GetSpec() Test

GetSpec returns the Spec field value if set, zero value otherwise.

func (*TestResource) GetSpecOk added in v0.1.7

func (o *TestResource) GetSpecOk() (*Test, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestResource) GetType added in v0.1.7

func (o *TestResource) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TestResource) GetTypeOk added in v0.1.7

func (o *TestResource) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestResource) HasSpec added in v0.1.7

func (o *TestResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*TestResource) HasType added in v0.1.7

func (o *TestResource) HasType() bool

HasType returns a boolean if a field has been set.

func (TestResource) MarshalJSON added in v0.1.7

func (o TestResource) MarshalJSON() ([]byte, error)

func (*TestResource) SetSpec added in v0.1.7

func (o *TestResource) SetSpec(v Test)

SetSpec gets a reference to the given Test and assigns it to the Spec field.

func (*TestResource) SetType added in v0.1.7

func (o *TestResource) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TestResource) ToMap added in v0.1.7

func (o TestResource) ToMap() (map[string]interface{}, error)

type TestResourceList added in v0.1.7

type TestResourceList struct {
	Count *int32         `json:"count,omitempty"`
	Items []TestResource `json:"items,omitempty"`
}

TestResourceList struct for TestResourceList

func NewTestResourceList added in v0.1.7

func NewTestResourceList() *TestResourceList

NewTestResourceList instantiates a new TestResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestResourceListWithDefaults added in v0.1.7

func NewTestResourceListWithDefaults() *TestResourceList

NewTestResourceListWithDefaults instantiates a new TestResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestResourceList) GetCount added in v0.1.7

func (o *TestResourceList) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*TestResourceList) GetCountOk added in v0.1.7

func (o *TestResourceList) 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.

func (*TestResourceList) GetItems added in v0.1.7

func (o *TestResourceList) GetItems() []TestResource

GetItems returns the Items field value if set, zero value otherwise.

func (*TestResourceList) GetItemsOk added in v0.1.7

func (o *TestResourceList) GetItemsOk() ([]TestResource, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestResourceList) HasCount added in v0.1.7

func (o *TestResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TestResourceList) HasItems added in v0.1.7

func (o *TestResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (TestResourceList) MarshalJSON added in v0.1.7

func (o TestResourceList) MarshalJSON() ([]byte, error)

func (*TestResourceList) SetCount added in v0.1.7

func (o *TestResourceList) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*TestResourceList) SetItems added in v0.1.7

func (o *TestResourceList) SetItems(v []TestResource)

SetItems gets a reference to the given []TestResource and assigns it to the Items field.

func (TestResourceList) ToMap added in v0.1.7

func (o TestResourceList) ToMap() (map[string]interface{}, error)

type TestRun

type TestRun struct {
	Id      *int32  `json:"id,omitempty"`
	TraceId *string `json:"traceId,omitempty"`
	SpanId  *string `json:"spanId,omitempty"`
	// Test version used when running this test run
	TestVersion *int32 `json:"testVersion,omitempty"`
	// Current execution state
	State *string `json:"state,omitempty"`
	// Details of the cause for the last `FAILED` state
	LastErrorState *string `json:"lastErrorState,omitempty"`
	// time in seconds it took for the test to complete, either success or fail. If the test is still running, it will show the time up to the time of the request
	ExecutionTime *int32 `json:"executionTime,omitempty"`
	// time in milliseconds it took for the triggering testSuite to complete, either success or fail. If the test is still running, it will show the time up to the time of the request
	TriggerTime               *int32                `json:"triggerTime,omitempty"`
	CreatedAt                 *time.Time            `json:"createdAt,omitempty"`
	ServiceTriggeredAt        *time.Time            `json:"serviceTriggeredAt,omitempty"`
	ServiceTriggerCompletedAt *time.Time            `json:"serviceTriggerCompletedAt,omitempty"`
	ObtainedTraceAt           *time.Time            `json:"obtainedTraceAt,omitempty"`
	CompletedAt               *time.Time            `json:"completedAt,omitempty"`
	VariableSet               *VariableSet          `json:"variableSet,omitempty"`
	ResolvedTrigger           *Trigger              `json:"resolvedTrigger,omitempty"`
	TriggerResult             *TriggerResult        `json:"triggerResult,omitempty"`
	Trace                     *Trace                `json:"trace,omitempty"`
	Result                    *AssertionResults     `json:"result,omitempty"`
	Linter                    *LinterResult         `json:"linter,omitempty"`
	Outputs                   []TestRunOutputsInner `json:"outputs,omitempty"`
	RequiredGatesResult       *RequiredGatesResult  `json:"requiredGatesResult,omitempty"`
	Metadata                  *map[string]string    `json:"metadata,omitempty"`
	TestSuiteId               *string               `json:"testSuiteId,omitempty"`
	TestSuiteRunId            *int32                `json:"testSuiteRunId,omitempty"`
}

TestRun struct for TestRun

func NewTestRun

func NewTestRun() *TestRun

NewTestRun instantiates a new TestRun object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestRunWithDefaults

func NewTestRunWithDefaults() *TestRun

NewTestRunWithDefaults instantiates a new TestRun object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestRun) GetCompletedAt

func (o *TestRun) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*TestRun) GetCompletedAtOk

func (o *TestRun) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetCreatedAt

func (o *TestRun) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TestRun) GetCreatedAtOk

func (o *TestRun) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetExecutionTime

func (o *TestRun) GetExecutionTime() int32

GetExecutionTime returns the ExecutionTime field value if set, zero value otherwise.

func (*TestRun) GetExecutionTimeOk

func (o *TestRun) GetExecutionTimeOk() (*int32, bool)

GetExecutionTimeOk returns a tuple with the ExecutionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetId

func (o *TestRun) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*TestRun) GetIdOk

func (o *TestRun) 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 (*TestRun) GetLastErrorState

func (o *TestRun) GetLastErrorState() string

GetLastErrorState returns the LastErrorState field value if set, zero value otherwise.

func (*TestRun) GetLastErrorStateOk

func (o *TestRun) GetLastErrorStateOk() (*string, bool)

GetLastErrorStateOk returns a tuple with the LastErrorState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetLinter added in v0.1.7

func (o *TestRun) GetLinter() LinterResult

GetLinter returns the Linter field value if set, zero value otherwise.

func (*TestRun) GetLinterOk added in v0.1.7

func (o *TestRun) GetLinterOk() (*LinterResult, bool)

GetLinterOk returns a tuple with the Linter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetMetadata

func (o *TestRun) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*TestRun) GetMetadataOk

func (o *TestRun) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetObtainedTraceAt

func (o *TestRun) GetObtainedTraceAt() time.Time

GetObtainedTraceAt returns the ObtainedTraceAt field value if set, zero value otherwise.

func (*TestRun) GetObtainedTraceAtOk

func (o *TestRun) GetObtainedTraceAtOk() (*time.Time, bool)

GetObtainedTraceAtOk returns a tuple with the ObtainedTraceAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetOutputs

func (o *TestRun) GetOutputs() []TestRunOutputsInner

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*TestRun) GetOutputsOk

func (o *TestRun) GetOutputsOk() ([]TestRunOutputsInner, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetRequiredGatesResult added in v0.1.7

func (o *TestRun) GetRequiredGatesResult() RequiredGatesResult

GetRequiredGatesResult returns the RequiredGatesResult field value if set, zero value otherwise.

func (*TestRun) GetRequiredGatesResultOk added in v0.1.7

func (o *TestRun) GetRequiredGatesResultOk() (*RequiredGatesResult, bool)

GetRequiredGatesResultOk returns a tuple with the RequiredGatesResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetResolvedTrigger added in v0.1.7

func (o *TestRun) GetResolvedTrigger() Trigger

GetResolvedTrigger returns the ResolvedTrigger field value if set, zero value otherwise.

func (*TestRun) GetResolvedTriggerOk added in v0.1.7

func (o *TestRun) GetResolvedTriggerOk() (*Trigger, bool)

GetResolvedTriggerOk returns a tuple with the ResolvedTrigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetResult

func (o *TestRun) GetResult() AssertionResults

GetResult returns the Result field value if set, zero value otherwise.

func (*TestRun) GetResultOk

func (o *TestRun) GetResultOk() (*AssertionResults, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetServiceTriggerCompletedAt

func (o *TestRun) GetServiceTriggerCompletedAt() time.Time

GetServiceTriggerCompletedAt returns the ServiceTriggerCompletedAt field value if set, zero value otherwise.

func (*TestRun) GetServiceTriggerCompletedAtOk

func (o *TestRun) GetServiceTriggerCompletedAtOk() (*time.Time, bool)

GetServiceTriggerCompletedAtOk returns a tuple with the ServiceTriggerCompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetServiceTriggeredAt

func (o *TestRun) GetServiceTriggeredAt() time.Time

GetServiceTriggeredAt returns the ServiceTriggeredAt field value if set, zero value otherwise.

func (*TestRun) GetServiceTriggeredAtOk

func (o *TestRun) GetServiceTriggeredAtOk() (*time.Time, bool)

GetServiceTriggeredAtOk returns a tuple with the ServiceTriggeredAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetSpanId

func (o *TestRun) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*TestRun) GetSpanIdOk

func (o *TestRun) GetSpanIdOk() (*string, bool)

GetSpanIdOk returns a tuple with the SpanId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetState

func (o *TestRun) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*TestRun) GetStateOk

func (o *TestRun) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTestSuiteId added in v0.1.7

func (o *TestRun) GetTestSuiteId() string

GetTestSuiteId returns the TestSuiteId field value if set, zero value otherwise.

func (*TestRun) GetTestSuiteIdOk added in v0.1.7

func (o *TestRun) GetTestSuiteIdOk() (*string, bool)

GetTestSuiteIdOk returns a tuple with the TestSuiteId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTestSuiteRunId added in v0.1.7

func (o *TestRun) GetTestSuiteRunId() int32

GetTestSuiteRunId returns the TestSuiteRunId field value if set, zero value otherwise.

func (*TestRun) GetTestSuiteRunIdOk added in v0.1.7

func (o *TestRun) GetTestSuiteRunIdOk() (*int32, bool)

GetTestSuiteRunIdOk returns a tuple with the TestSuiteRunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTestVersion

func (o *TestRun) GetTestVersion() int32

GetTestVersion returns the TestVersion field value if set, zero value otherwise.

func (*TestRun) GetTestVersionOk

func (o *TestRun) GetTestVersionOk() (*int32, bool)

GetTestVersionOk returns a tuple with the TestVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTrace

func (o *TestRun) GetTrace() Trace

GetTrace returns the Trace field value if set, zero value otherwise.

func (*TestRun) GetTraceId

func (o *TestRun) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*TestRun) GetTraceIdOk

func (o *TestRun) GetTraceIdOk() (*string, bool)

GetTraceIdOk returns a tuple with the TraceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTraceOk

func (o *TestRun) GetTraceOk() (*Trace, bool)

GetTraceOk returns a tuple with the Trace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTriggerResult

func (o *TestRun) GetTriggerResult() TriggerResult

GetTriggerResult returns the TriggerResult field value if set, zero value otherwise.

func (*TestRun) GetTriggerResultOk

func (o *TestRun) GetTriggerResultOk() (*TriggerResult, bool)

GetTriggerResultOk returns a tuple with the TriggerResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetTriggerTime

func (o *TestRun) GetTriggerTime() int32

GetTriggerTime returns the TriggerTime field value if set, zero value otherwise.

func (*TestRun) GetTriggerTimeOk

func (o *TestRun) GetTriggerTimeOk() (*int32, bool)

GetTriggerTimeOk returns a tuple with the TriggerTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) GetVariableSet added in v0.1.7

func (o *TestRun) GetVariableSet() VariableSet

GetVariableSet returns the VariableSet field value if set, zero value otherwise.

func (*TestRun) GetVariableSetOk added in v0.1.7

func (o *TestRun) GetVariableSetOk() (*VariableSet, bool)

GetVariableSetOk returns a tuple with the VariableSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRun) HasCompletedAt

func (o *TestRun) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*TestRun) HasCreatedAt

func (o *TestRun) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestRun) HasExecutionTime

func (o *TestRun) HasExecutionTime() bool

HasExecutionTime returns a boolean if a field has been set.

func (*TestRun) HasId

func (o *TestRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*TestRun) HasLastErrorState

func (o *TestRun) HasLastErrorState() bool

HasLastErrorState returns a boolean if a field has been set.

func (*TestRun) HasLinter added in v0.1.7

func (o *TestRun) HasLinter() bool

HasLinter returns a boolean if a field has been set.

func (*TestRun) HasMetadata

func (o *TestRun) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*TestRun) HasObtainedTraceAt

func (o *TestRun) HasObtainedTraceAt() bool

HasObtainedTraceAt returns a boolean if a field has been set.

func (*TestRun) HasOutputs

func (o *TestRun) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*TestRun) HasRequiredGatesResult added in v0.1.7

func (o *TestRun) HasRequiredGatesResult() bool

HasRequiredGatesResult returns a boolean if a field has been set.

func (*TestRun) HasResolvedTrigger added in v0.1.7

func (o *TestRun) HasResolvedTrigger() bool

HasResolvedTrigger returns a boolean if a field has been set.

func (*TestRun) HasResult

func (o *TestRun) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*TestRun) HasServiceTriggerCompletedAt

func (o *TestRun) HasServiceTriggerCompletedAt() bool

HasServiceTriggerCompletedAt returns a boolean if a field has been set.

func (*TestRun) HasServiceTriggeredAt

func (o *TestRun) HasServiceTriggeredAt() bool

HasServiceTriggeredAt returns a boolean if a field has been set.

func (*TestRun) HasSpanId

func (o *TestRun) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (*TestRun) HasState

func (o *TestRun) HasState() bool

HasState returns a boolean if a field has been set.

func (*TestRun) HasTestSuiteId added in v0.1.7

func (o *TestRun) HasTestSuiteId() bool

HasTestSuiteId returns a boolean if a field has been set.

func (*TestRun) HasTestSuiteRunId added in v0.1.7

func (o *TestRun) HasTestSuiteRunId() bool

HasTestSuiteRunId returns a boolean if a field has been set.

func (*TestRun) HasTestVersion

func (o *TestRun) HasTestVersion() bool

HasTestVersion returns a boolean if a field has been set.

func (*TestRun) HasTrace

func (o *TestRun) HasTrace() bool

HasTrace returns a boolean if a field has been set.

func (*TestRun) HasTraceId

func (o *TestRun) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (*TestRun) HasTriggerResult

func (o *TestRun) HasTriggerResult() bool

HasTriggerResult returns a boolean if a field has been set.

func (*TestRun) HasTriggerTime

func (o *TestRun) HasTriggerTime() bool

HasTriggerTime returns a boolean if a field has been set.

func (*TestRun) HasVariableSet added in v0.1.7

func (o *TestRun) HasVariableSet() bool

HasVariableSet returns a boolean if a field has been set.

func (TestRun) MarshalJSON

func (o TestRun) MarshalJSON() ([]byte, error)

func (*TestRun) SetCompletedAt

func (o *TestRun) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*TestRun) SetCreatedAt

func (o *TestRun) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TestRun) SetExecutionTime

func (o *TestRun) SetExecutionTime(v int32)

SetExecutionTime gets a reference to the given int32 and assigns it to the ExecutionTime field.

func (*TestRun) SetId

func (o *TestRun) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*TestRun) SetLastErrorState

func (o *TestRun) SetLastErrorState(v string)

SetLastErrorState gets a reference to the given string and assigns it to the LastErrorState field.

func (*TestRun) SetLinter added in v0.1.7

func (o *TestRun) SetLinter(v LinterResult)

SetLinter gets a reference to the given LinterResult and assigns it to the Linter field.

func (*TestRun) SetMetadata

func (o *TestRun) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*TestRun) SetObtainedTraceAt

func (o *TestRun) SetObtainedTraceAt(v time.Time)

SetObtainedTraceAt gets a reference to the given time.Time and assigns it to the ObtainedTraceAt field.

func (*TestRun) SetOutputs

func (o *TestRun) SetOutputs(v []TestRunOutputsInner)

SetOutputs gets a reference to the given []TestRunOutputsInner and assigns it to the Outputs field.

func (*TestRun) SetRequiredGatesResult added in v0.1.7

func (o *TestRun) SetRequiredGatesResult(v RequiredGatesResult)

SetRequiredGatesResult gets a reference to the given RequiredGatesResult and assigns it to the RequiredGatesResult field.

func (*TestRun) SetResolvedTrigger added in v0.1.7

func (o *TestRun) SetResolvedTrigger(v Trigger)

SetResolvedTrigger gets a reference to the given Trigger and assigns it to the ResolvedTrigger field.

func (*TestRun) SetResult

func (o *TestRun) SetResult(v AssertionResults)

SetResult gets a reference to the given AssertionResults and assigns it to the Result field.

func (*TestRun) SetServiceTriggerCompletedAt

func (o *TestRun) SetServiceTriggerCompletedAt(v time.Time)

SetServiceTriggerCompletedAt gets a reference to the given time.Time and assigns it to the ServiceTriggerCompletedAt field.

func (*TestRun) SetServiceTriggeredAt

func (o *TestRun) SetServiceTriggeredAt(v time.Time)

SetServiceTriggeredAt gets a reference to the given time.Time and assigns it to the ServiceTriggeredAt field.

func (*TestRun) SetSpanId

func (o *TestRun) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (*TestRun) SetState

func (o *TestRun) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*TestRun) SetTestSuiteId added in v0.1.7

func (o *TestRun) SetTestSuiteId(v string)

SetTestSuiteId gets a reference to the given string and assigns it to the TestSuiteId field.

func (*TestRun) SetTestSuiteRunId added in v0.1.7

func (o *TestRun) SetTestSuiteRunId(v int32)

SetTestSuiteRunId gets a reference to the given int32 and assigns it to the TestSuiteRunId field.

func (*TestRun) SetTestVersion

func (o *TestRun) SetTestVersion(v int32)

SetTestVersion gets a reference to the given int32 and assigns it to the TestVersion field.

func (*TestRun) SetTrace

func (o *TestRun) SetTrace(v Trace)

SetTrace gets a reference to the given Trace and assigns it to the Trace field.

func (*TestRun) SetTraceId

func (o *TestRun) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

func (*TestRun) SetTriggerResult

func (o *TestRun) SetTriggerResult(v TriggerResult)

SetTriggerResult gets a reference to the given TriggerResult and assigns it to the TriggerResult field.

func (*TestRun) SetTriggerTime

func (o *TestRun) SetTriggerTime(v int32)

SetTriggerTime gets a reference to the given int32 and assigns it to the TriggerTime field.

func (*TestRun) SetVariableSet added in v0.1.7

func (o *TestRun) SetVariableSet(v VariableSet)

SetVariableSet gets a reference to the given VariableSet and assigns it to the VariableSet field.

func (TestRun) ToMap added in v0.1.7

func (o TestRun) ToMap() (map[string]interface{}, error)

type TestRunEvent added in v0.1.7

type TestRunEvent struct {
	Type                *string           `json:"type,omitempty"`
	Stage               *string           `json:"stage,omitempty"`
	Title               *string           `json:"title,omitempty"`
	Description         *string           `json:"description,omitempty"`
	CreatedAt           *time.Time        `json:"createdAt,omitempty"`
	TestId              *string           `json:"testId,omitempty"`
	RunId               *int32            `json:"runId,omitempty"`
	DataStoreConnection *ConnectionResult `json:"dataStoreConnection,omitempty"`
	Polling             *PollingInfo      `json:"polling,omitempty"`
	Outputs             []OutputInfo      `json:"outputs,omitempty"`
}

TestRunEvent struct for TestRunEvent

func NewTestRunEvent added in v0.1.7

func NewTestRunEvent() *TestRunEvent

NewTestRunEvent instantiates a new TestRunEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestRunEventWithDefaults added in v0.1.7

func NewTestRunEventWithDefaults() *TestRunEvent

NewTestRunEventWithDefaults instantiates a new TestRunEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestRunEvent) GetCreatedAt added in v0.1.7

func (o *TestRunEvent) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TestRunEvent) GetCreatedAtOk added in v0.1.7

func (o *TestRunEvent) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetDataStoreConnection added in v0.1.7

func (o *TestRunEvent) GetDataStoreConnection() ConnectionResult

GetDataStoreConnection returns the DataStoreConnection field value if set, zero value otherwise.

func (*TestRunEvent) GetDataStoreConnectionOk added in v0.1.7

func (o *TestRunEvent) GetDataStoreConnectionOk() (*ConnectionResult, bool)

GetDataStoreConnectionOk returns a tuple with the DataStoreConnection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetDescription added in v0.1.7

func (o *TestRunEvent) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TestRunEvent) GetDescriptionOk added in v0.1.7

func (o *TestRunEvent) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetOutputs added in v0.1.7

func (o *TestRunEvent) GetOutputs() []OutputInfo

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*TestRunEvent) GetOutputsOk added in v0.1.7

func (o *TestRunEvent) GetOutputsOk() ([]OutputInfo, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetPolling added in v0.1.7

func (o *TestRunEvent) GetPolling() PollingInfo

GetPolling returns the Polling field value if set, zero value otherwise.

func (*TestRunEvent) GetPollingOk added in v0.1.7

func (o *TestRunEvent) GetPollingOk() (*PollingInfo, bool)

GetPollingOk returns a tuple with the Polling field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetRunId added in v0.1.7

func (o *TestRunEvent) GetRunId() int32

GetRunId returns the RunId field value if set, zero value otherwise.

func (*TestRunEvent) GetRunIdOk added in v0.1.7

func (o *TestRunEvent) GetRunIdOk() (*int32, bool)

GetRunIdOk returns a tuple with the RunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetStage added in v0.1.7

func (o *TestRunEvent) GetStage() string

GetStage returns the Stage field value if set, zero value otherwise.

func (*TestRunEvent) GetStageOk added in v0.1.7

func (o *TestRunEvent) GetStageOk() (*string, bool)

GetStageOk returns a tuple with the Stage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetTestId added in v0.1.7

func (o *TestRunEvent) GetTestId() string

GetTestId returns the TestId field value if set, zero value otherwise.

func (*TestRunEvent) GetTestIdOk added in v0.1.7

func (o *TestRunEvent) GetTestIdOk() (*string, bool)

GetTestIdOk returns a tuple with the TestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetTitle added in v0.1.7

func (o *TestRunEvent) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*TestRunEvent) GetTitleOk added in v0.1.7

func (o *TestRunEvent) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) GetType added in v0.1.7

func (o *TestRunEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TestRunEvent) GetTypeOk added in v0.1.7

func (o *TestRunEvent) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunEvent) HasCreatedAt added in v0.1.7

func (o *TestRunEvent) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestRunEvent) HasDataStoreConnection added in v0.1.7

func (o *TestRunEvent) HasDataStoreConnection() bool

HasDataStoreConnection returns a boolean if a field has been set.

func (*TestRunEvent) HasDescription added in v0.1.7

func (o *TestRunEvent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TestRunEvent) HasOutputs added in v0.1.7

func (o *TestRunEvent) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*TestRunEvent) HasPolling added in v0.1.7

func (o *TestRunEvent) HasPolling() bool

HasPolling returns a boolean if a field has been set.

func (*TestRunEvent) HasRunId added in v0.1.7

func (o *TestRunEvent) HasRunId() bool

HasRunId returns a boolean if a field has been set.

func (*TestRunEvent) HasStage added in v0.1.7

func (o *TestRunEvent) HasStage() bool

HasStage returns a boolean if a field has been set.

func (*TestRunEvent) HasTestId added in v0.1.7

func (o *TestRunEvent) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*TestRunEvent) HasTitle added in v0.1.7

func (o *TestRunEvent) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*TestRunEvent) HasType added in v0.1.7

func (o *TestRunEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (TestRunEvent) MarshalJSON added in v0.1.7

func (o TestRunEvent) MarshalJSON() ([]byte, error)

func (*TestRunEvent) SetCreatedAt added in v0.1.7

func (o *TestRunEvent) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TestRunEvent) SetDataStoreConnection added in v0.1.7

func (o *TestRunEvent) SetDataStoreConnection(v ConnectionResult)

SetDataStoreConnection gets a reference to the given ConnectionResult and assigns it to the DataStoreConnection field.

func (*TestRunEvent) SetDescription added in v0.1.7

func (o *TestRunEvent) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TestRunEvent) SetOutputs added in v0.1.7

func (o *TestRunEvent) SetOutputs(v []OutputInfo)

SetOutputs gets a reference to the given []OutputInfo and assigns it to the Outputs field.

func (*TestRunEvent) SetPolling added in v0.1.7

func (o *TestRunEvent) SetPolling(v PollingInfo)

SetPolling gets a reference to the given PollingInfo and assigns it to the Polling field.

func (*TestRunEvent) SetRunId added in v0.1.7

func (o *TestRunEvent) SetRunId(v int32)

SetRunId gets a reference to the given int32 and assigns it to the RunId field.

func (*TestRunEvent) SetStage added in v0.1.7

func (o *TestRunEvent) SetStage(v string)

SetStage gets a reference to the given string and assigns it to the Stage field.

func (*TestRunEvent) SetTestId added in v0.1.7

func (o *TestRunEvent) SetTestId(v string)

SetTestId gets a reference to the given string and assigns it to the TestId field.

func (*TestRunEvent) SetTitle added in v0.1.7

func (o *TestRunEvent) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*TestRunEvent) SetType added in v0.1.7

func (o *TestRunEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TestRunEvent) ToMap added in v0.1.7

func (o TestRunEvent) ToMap() (map[string]interface{}, error)

type TestRunOutputsInner added in v0.1.7

type TestRunOutputsInner struct {
	Name   *string `json:"name,omitempty"`
	SpanId *string `json:"spanId,omitempty"`
	Value  *string `json:"value,omitempty"`
	Error  *string `json:"error,omitempty"`
}

TestRunOutputsInner struct for TestRunOutputsInner

func NewTestRunOutputsInner added in v0.1.7

func NewTestRunOutputsInner() *TestRunOutputsInner

NewTestRunOutputsInner instantiates a new TestRunOutputsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestRunOutputsInnerWithDefaults added in v0.1.7

func NewTestRunOutputsInnerWithDefaults() *TestRunOutputsInner

NewTestRunOutputsInnerWithDefaults instantiates a new TestRunOutputsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestRunOutputsInner) GetError added in v0.1.7

func (o *TestRunOutputsInner) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*TestRunOutputsInner) GetErrorOk added in v0.1.7

func (o *TestRunOutputsInner) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunOutputsInner) GetName added in v0.1.7

func (o *TestRunOutputsInner) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TestRunOutputsInner) GetNameOk added in v0.1.7

func (o *TestRunOutputsInner) 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 (*TestRunOutputsInner) GetSpanId added in v0.1.7

func (o *TestRunOutputsInner) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*TestRunOutputsInner) GetSpanIdOk added in v0.1.7

func (o *TestRunOutputsInner) GetSpanIdOk() (*string, bool)

GetSpanIdOk returns a tuple with the SpanId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunOutputsInner) GetValue added in v0.1.7

func (o *TestRunOutputsInner) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*TestRunOutputsInner) GetValueOk added in v0.1.7

func (o *TestRunOutputsInner) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestRunOutputsInner) HasError added in v0.1.7

func (o *TestRunOutputsInner) HasError() bool

HasError returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasName added in v0.1.7

func (o *TestRunOutputsInner) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasSpanId added in v0.1.7

func (o *TestRunOutputsInner) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasValue added in v0.1.7

func (o *TestRunOutputsInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TestRunOutputsInner) MarshalJSON added in v0.1.7

func (o TestRunOutputsInner) MarshalJSON() ([]byte, error)

func (*TestRunOutputsInner) SetError added in v0.1.7

func (o *TestRunOutputsInner) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*TestRunOutputsInner) SetName added in v0.1.7

func (o *TestRunOutputsInner) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TestRunOutputsInner) SetSpanId added in v0.1.7

func (o *TestRunOutputsInner) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (*TestRunOutputsInner) SetValue added in v0.1.7

func (o *TestRunOutputsInner) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (TestRunOutputsInner) ToMap added in v0.1.7

func (o TestRunOutputsInner) ToMap() (map[string]interface{}, error)

type TestSpec added in v0.1.7

type TestSpec struct {
	Name           *string   `json:"name,omitempty"`
	Selector       *string   `json:"selector,omitempty"`
	SelectorParsed *Selector `json:"selectorParsed,omitempty"`
	Assertions     []string  `json:"assertions,omitempty"`
}

TestSpec struct for TestSpec

func NewTestSpec added in v0.1.7

func NewTestSpec() *TestSpec

NewTestSpec instantiates a new TestSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSpecWithDefaults added in v0.1.7

func NewTestSpecWithDefaults() *TestSpec

NewTestSpecWithDefaults instantiates a new TestSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSpec) GetAssertions added in v0.1.7

func (o *TestSpec) GetAssertions() []string

GetAssertions returns the Assertions field value if set, zero value otherwise.

func (*TestSpec) GetAssertionsOk added in v0.1.7

func (o *TestSpec) GetAssertionsOk() ([]string, bool)

GetAssertionsOk returns a tuple with the Assertions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSpec) GetName added in v0.1.7

func (o *TestSpec) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TestSpec) GetNameOk added in v0.1.7

func (o *TestSpec) 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 (*TestSpec) GetSelector added in v0.1.7

func (o *TestSpec) GetSelector() string

GetSelector returns the Selector field value if set, zero value otherwise.

func (*TestSpec) GetSelectorOk added in v0.1.7

func (o *TestSpec) GetSelectorOk() (*string, bool)

GetSelectorOk returns a tuple with the Selector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSpec) GetSelectorParsed added in v0.1.7

func (o *TestSpec) GetSelectorParsed() Selector

GetSelectorParsed returns the SelectorParsed field value if set, zero value otherwise.

func (*TestSpec) GetSelectorParsedOk added in v0.1.7

func (o *TestSpec) GetSelectorParsedOk() (*Selector, bool)

GetSelectorParsedOk returns a tuple with the SelectorParsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSpec) HasAssertions added in v0.1.7

func (o *TestSpec) HasAssertions() bool

HasAssertions returns a boolean if a field has been set.

func (*TestSpec) HasName added in v0.1.7

func (o *TestSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestSpec) HasSelector added in v0.1.7

func (o *TestSpec) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*TestSpec) HasSelectorParsed added in v0.1.7

func (o *TestSpec) HasSelectorParsed() bool

HasSelectorParsed returns a boolean if a field has been set.

func (TestSpec) MarshalJSON added in v0.1.7

func (o TestSpec) MarshalJSON() ([]byte, error)

func (*TestSpec) SetAssertions added in v0.1.7

func (o *TestSpec) SetAssertions(v []string)

SetAssertions gets a reference to the given []string and assigns it to the Assertions field.

func (*TestSpec) SetName added in v0.1.7

func (o *TestSpec) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TestSpec) SetSelector added in v0.1.7

func (o *TestSpec) SetSelector(v string)

SetSelector gets a reference to the given string and assigns it to the Selector field.

func (*TestSpec) SetSelectorParsed added in v0.1.7

func (o *TestSpec) SetSelectorParsed(v Selector)

SetSelectorParsed gets a reference to the given Selector and assigns it to the SelectorParsed field.

func (TestSpec) ToMap added in v0.1.7

func (o TestSpec) ToMap() (map[string]interface{}, error)

type TestSpecs

type TestSpecs struct {
	Specs []TestSpec `json:"specs,omitempty"`
}

TestSpecs struct for TestSpecs

func NewTestSpecs

func NewTestSpecs() *TestSpecs

NewTestSpecs instantiates a new TestSpecs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSpecsWithDefaults

func NewTestSpecsWithDefaults() *TestSpecs

NewTestSpecsWithDefaults instantiates a new TestSpecs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSpecs) GetSpecs

func (o *TestSpecs) GetSpecs() []TestSpec

GetSpecs returns the Specs field value if set, zero value otherwise.

func (*TestSpecs) GetSpecsOk

func (o *TestSpecs) GetSpecsOk() ([]TestSpec, bool)

GetSpecsOk returns a tuple with the Specs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSpecs) HasSpecs

func (o *TestSpecs) HasSpecs() bool

HasSpecs returns a boolean if a field has been set.

func (TestSpecs) MarshalJSON

func (o TestSpecs) MarshalJSON() ([]byte, error)

func (*TestSpecs) SetSpecs

func (o *TestSpecs) SetSpecs(v []TestSpec)

SetSpecs gets a reference to the given []TestSpec and assigns it to the Specs field.

func (TestSpecs) ToMap added in v0.1.7

func (o TestSpecs) ToMap() (map[string]interface{}, error)

type TestSuite added in v0.1.7

type TestSuite struct {
	Id          *string `json:"id,omitempty"`
	Name        *string `json:"name,omitempty"`
	Description *string `json:"description,omitempty"`
	// version number of the test
	Version *int32 `json:"version,omitempty"`
	// list of steps of the TestSuite containing just each test id
	Steps []string `json:"steps,omitempty"`
	// list of steps of the TestSuite containing the whole test object
	FullSteps []Test       `json:"fullSteps,omitempty"`
	CreatedAt *time.Time   `json:"createdAt,omitempty"`
	Summary   *TestSummary `json:"summary,omitempty"`
}

TestSuite struct for TestSuite

func NewTestSuite added in v0.1.7

func NewTestSuite() *TestSuite

NewTestSuite instantiates a new TestSuite object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSuiteWithDefaults added in v0.1.7

func NewTestSuiteWithDefaults() *TestSuite

NewTestSuiteWithDefaults instantiates a new TestSuite object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSuite) GetCreatedAt added in v0.1.7

func (o *TestSuite) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TestSuite) GetCreatedAtOk added in v0.1.7

func (o *TestSuite) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetDescription added in v0.1.7

func (o *TestSuite) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TestSuite) GetDescriptionOk added in v0.1.7

func (o *TestSuite) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetFullSteps added in v0.1.7

func (o *TestSuite) GetFullSteps() []Test

GetFullSteps returns the FullSteps field value if set, zero value otherwise.

func (*TestSuite) GetFullStepsOk added in v0.1.7

func (o *TestSuite) GetFullStepsOk() ([]Test, bool)

GetFullStepsOk returns a tuple with the FullSteps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetId added in v0.1.7

func (o *TestSuite) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TestSuite) GetIdOk added in v0.1.7

func (o *TestSuite) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetName added in v0.1.7

func (o *TestSuite) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TestSuite) GetNameOk added in v0.1.7

func (o *TestSuite) 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 (*TestSuite) GetSteps added in v0.1.7

func (o *TestSuite) GetSteps() []string

GetSteps returns the Steps field value if set, zero value otherwise.

func (*TestSuite) GetStepsOk added in v0.1.7

func (o *TestSuite) GetStepsOk() ([]string, bool)

GetStepsOk returns a tuple with the Steps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetSummary added in v0.1.7

func (o *TestSuite) GetSummary() TestSummary

GetSummary returns the Summary field value if set, zero value otherwise.

func (*TestSuite) GetSummaryOk added in v0.1.7

func (o *TestSuite) GetSummaryOk() (*TestSummary, bool)

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) GetVersion added in v0.1.7

func (o *TestSuite) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*TestSuite) GetVersionOk added in v0.1.7

func (o *TestSuite) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuite) HasCreatedAt added in v0.1.7

func (o *TestSuite) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestSuite) HasDescription added in v0.1.7

func (o *TestSuite) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TestSuite) HasFullSteps added in v0.1.7

func (o *TestSuite) HasFullSteps() bool

HasFullSteps returns a boolean if a field has been set.

func (*TestSuite) HasId added in v0.1.7

func (o *TestSuite) HasId() bool

HasId returns a boolean if a field has been set.

func (*TestSuite) HasName added in v0.1.7

func (o *TestSuite) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestSuite) HasSteps added in v0.1.7

func (o *TestSuite) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*TestSuite) HasSummary added in v0.1.7

func (o *TestSuite) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (*TestSuite) HasVersion added in v0.1.7

func (o *TestSuite) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (TestSuite) MarshalJSON added in v0.1.7

func (o TestSuite) MarshalJSON() ([]byte, error)

func (*TestSuite) SetCreatedAt added in v0.1.7

func (o *TestSuite) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TestSuite) SetDescription added in v0.1.7

func (o *TestSuite) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TestSuite) SetFullSteps added in v0.1.7

func (o *TestSuite) SetFullSteps(v []Test)

SetFullSteps gets a reference to the given []Test and assigns it to the FullSteps field.

func (*TestSuite) SetId added in v0.1.7

func (o *TestSuite) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TestSuite) SetName added in v0.1.7

func (o *TestSuite) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TestSuite) SetSteps added in v0.1.7

func (o *TestSuite) SetSteps(v []string)

SetSteps gets a reference to the given []string and assigns it to the Steps field.

func (*TestSuite) SetSummary added in v0.1.7

func (o *TestSuite) SetSummary(v TestSummary)

SetSummary gets a reference to the given TestSummary and assigns it to the Summary field.

func (*TestSuite) SetVersion added in v0.1.7

func (o *TestSuite) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (TestSuite) ToMap added in v0.1.7

func (o TestSuite) ToMap() (map[string]interface{}, error)

type TestSuiteResource added in v0.1.7

type TestSuiteResource struct {
	// Represents the type of this resource. It should always be set as 'TestSuite'.
	Type *string    `json:"type,omitempty"`
	Spec *TestSuite `json:"spec,omitempty"`
}

TestSuiteResource Represents a TestSuite structured into the Resources format.

func NewTestSuiteResource added in v0.1.7

func NewTestSuiteResource() *TestSuiteResource

NewTestSuiteResource instantiates a new TestSuiteResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSuiteResourceWithDefaults added in v0.1.7

func NewTestSuiteResourceWithDefaults() *TestSuiteResource

NewTestSuiteResourceWithDefaults instantiates a new TestSuiteResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSuiteResource) GetSpec added in v0.1.7

func (o *TestSuiteResource) GetSpec() TestSuite

GetSpec returns the Spec field value if set, zero value otherwise.

func (*TestSuiteResource) GetSpecOk added in v0.1.7

func (o *TestSuiteResource) GetSpecOk() (*TestSuite, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteResource) GetType added in v0.1.7

func (o *TestSuiteResource) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TestSuiteResource) GetTypeOk added in v0.1.7

func (o *TestSuiteResource) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteResource) HasSpec added in v0.1.7

func (o *TestSuiteResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*TestSuiteResource) HasType added in v0.1.7

func (o *TestSuiteResource) HasType() bool

HasType returns a boolean if a field has been set.

func (TestSuiteResource) MarshalJSON added in v0.1.7

func (o TestSuiteResource) MarshalJSON() ([]byte, error)

func (*TestSuiteResource) SetSpec added in v0.1.7

func (o *TestSuiteResource) SetSpec(v TestSuite)

SetSpec gets a reference to the given TestSuite and assigns it to the Spec field.

func (*TestSuiteResource) SetType added in v0.1.7

func (o *TestSuiteResource) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TestSuiteResource) ToMap added in v0.1.7

func (o TestSuiteResource) ToMap() (map[string]interface{}, error)

type TestSuiteResourceList added in v0.1.7

type TestSuiteResourceList struct {
	Count *int32              `json:"count,omitempty"`
	Items []TestSuiteResource `json:"items,omitempty"`
}

TestSuiteResourceList struct for TestSuiteResourceList

func NewTestSuiteResourceList added in v0.1.7

func NewTestSuiteResourceList() *TestSuiteResourceList

NewTestSuiteResourceList instantiates a new TestSuiteResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSuiteResourceListWithDefaults added in v0.1.7

func NewTestSuiteResourceListWithDefaults() *TestSuiteResourceList

NewTestSuiteResourceListWithDefaults instantiates a new TestSuiteResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSuiteResourceList) GetCount added in v0.1.7

func (o *TestSuiteResourceList) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*TestSuiteResourceList) GetCountOk added in v0.1.7

func (o *TestSuiteResourceList) 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.

func (*TestSuiteResourceList) GetItems added in v0.1.7

func (o *TestSuiteResourceList) GetItems() []TestSuiteResource

GetItems returns the Items field value if set, zero value otherwise.

func (*TestSuiteResourceList) GetItemsOk added in v0.1.7

func (o *TestSuiteResourceList) GetItemsOk() ([]TestSuiteResource, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteResourceList) HasCount added in v0.1.7

func (o *TestSuiteResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TestSuiteResourceList) HasItems added in v0.1.7

func (o *TestSuiteResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (TestSuiteResourceList) MarshalJSON added in v0.1.7

func (o TestSuiteResourceList) MarshalJSON() ([]byte, error)

func (*TestSuiteResourceList) SetCount added in v0.1.7

func (o *TestSuiteResourceList) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*TestSuiteResourceList) SetItems added in v0.1.7

func (o *TestSuiteResourceList) SetItems(v []TestSuiteResource)

SetItems gets a reference to the given []TestSuiteResource and assigns it to the Items field.

func (TestSuiteResourceList) ToMap added in v0.1.7

func (o TestSuiteResourceList) ToMap() (map[string]interface{}, error)

type TestSuiteRun added in v0.1.7

type TestSuiteRun struct {
	Id                          *int32             `json:"id,omitempty"`
	Version                     *int32             `json:"version,omitempty"`
	CreatedAt                   *time.Time         `json:"createdAt,omitempty"`
	CompletedAt                 *time.Time         `json:"completedAt,omitempty"`
	State                       *string            `json:"state,omitempty"`
	Steps                       []TestRun          `json:"steps,omitempty"`
	VariableSet                 *VariableSet       `json:"variableSet,omitempty"`
	Metadata                    *map[string]string `json:"metadata,omitempty"`
	Pass                        *int32             `json:"pass,omitempty"`
	Fail                        *int32             `json:"fail,omitempty"`
	AllStepsRequiredGatesPassed *bool              `json:"allStepsRequiredGatesPassed,omitempty"`
}

TestSuiteRun struct for TestSuiteRun

func NewTestSuiteRun added in v0.1.7

func NewTestSuiteRun() *TestSuiteRun

NewTestSuiteRun instantiates a new TestSuiteRun object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSuiteRunWithDefaults added in v0.1.7

func NewTestSuiteRunWithDefaults() *TestSuiteRun

NewTestSuiteRunWithDefaults instantiates a new TestSuiteRun object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSuiteRun) GetAllStepsRequiredGatesPassed added in v0.1.7

func (o *TestSuiteRun) GetAllStepsRequiredGatesPassed() bool

GetAllStepsRequiredGatesPassed returns the AllStepsRequiredGatesPassed field value if set, zero value otherwise.

func (*TestSuiteRun) GetAllStepsRequiredGatesPassedOk added in v0.1.7

func (o *TestSuiteRun) GetAllStepsRequiredGatesPassedOk() (*bool, bool)

GetAllStepsRequiredGatesPassedOk returns a tuple with the AllStepsRequiredGatesPassed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetCompletedAt added in v0.1.7

func (o *TestSuiteRun) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*TestSuiteRun) GetCompletedAtOk added in v0.1.7

func (o *TestSuiteRun) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetCreatedAt added in v0.1.7

func (o *TestSuiteRun) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TestSuiteRun) GetCreatedAtOk added in v0.1.7

func (o *TestSuiteRun) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetFail added in v0.1.7

func (o *TestSuiteRun) GetFail() int32

GetFail returns the Fail field value if set, zero value otherwise.

func (*TestSuiteRun) GetFailOk added in v0.1.7

func (o *TestSuiteRun) GetFailOk() (*int32, bool)

GetFailOk returns a tuple with the Fail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetId added in v0.1.7

func (o *TestSuiteRun) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*TestSuiteRun) GetIdOk added in v0.1.7

func (o *TestSuiteRun) 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 (*TestSuiteRun) GetMetadata added in v0.1.7

func (o *TestSuiteRun) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*TestSuiteRun) GetMetadataOk added in v0.1.7

func (o *TestSuiteRun) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetPass added in v0.1.7

func (o *TestSuiteRun) GetPass() int32

GetPass returns the Pass field value if set, zero value otherwise.

func (*TestSuiteRun) GetPassOk added in v0.1.7

func (o *TestSuiteRun) GetPassOk() (*int32, bool)

GetPassOk returns a tuple with the Pass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetState added in v0.1.7

func (o *TestSuiteRun) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*TestSuiteRun) GetStateOk added in v0.1.7

func (o *TestSuiteRun) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetSteps added in v0.1.7

func (o *TestSuiteRun) GetSteps() []TestRun

GetSteps returns the Steps field value if set, zero value otherwise.

func (*TestSuiteRun) GetStepsOk added in v0.1.7

func (o *TestSuiteRun) GetStepsOk() ([]TestRun, bool)

GetStepsOk returns a tuple with the Steps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetVariableSet added in v0.1.7

func (o *TestSuiteRun) GetVariableSet() VariableSet

GetVariableSet returns the VariableSet field value if set, zero value otherwise.

func (*TestSuiteRun) GetVariableSetOk added in v0.1.7

func (o *TestSuiteRun) GetVariableSetOk() (*VariableSet, bool)

GetVariableSetOk returns a tuple with the VariableSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) GetVersion added in v0.1.7

func (o *TestSuiteRun) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*TestSuiteRun) GetVersionOk added in v0.1.7

func (o *TestSuiteRun) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSuiteRun) HasAllStepsRequiredGatesPassed added in v0.1.7

func (o *TestSuiteRun) HasAllStepsRequiredGatesPassed() bool

HasAllStepsRequiredGatesPassed returns a boolean if a field has been set.

func (*TestSuiteRun) HasCompletedAt added in v0.1.7

func (o *TestSuiteRun) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*TestSuiteRun) HasCreatedAt added in v0.1.7

func (o *TestSuiteRun) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestSuiteRun) HasFail added in v0.1.7

func (o *TestSuiteRun) HasFail() bool

HasFail returns a boolean if a field has been set.

func (*TestSuiteRun) HasId added in v0.1.7

func (o *TestSuiteRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*TestSuiteRun) HasMetadata added in v0.1.7

func (o *TestSuiteRun) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*TestSuiteRun) HasPass added in v0.1.7

func (o *TestSuiteRun) HasPass() bool

HasPass returns a boolean if a field has been set.

func (*TestSuiteRun) HasState added in v0.1.7

func (o *TestSuiteRun) HasState() bool

HasState returns a boolean if a field has been set.

func (*TestSuiteRun) HasSteps added in v0.1.7

func (o *TestSuiteRun) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*TestSuiteRun) HasVariableSet added in v0.1.7

func (o *TestSuiteRun) HasVariableSet() bool

HasVariableSet returns a boolean if a field has been set.

func (*TestSuiteRun) HasVersion added in v0.1.7

func (o *TestSuiteRun) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (TestSuiteRun) MarshalJSON added in v0.1.7

func (o TestSuiteRun) MarshalJSON() ([]byte, error)

func (*TestSuiteRun) SetAllStepsRequiredGatesPassed added in v0.1.7

func (o *TestSuiteRun) SetAllStepsRequiredGatesPassed(v bool)

SetAllStepsRequiredGatesPassed gets a reference to the given bool and assigns it to the AllStepsRequiredGatesPassed field.

func (*TestSuiteRun) SetCompletedAt added in v0.1.7

func (o *TestSuiteRun) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*TestSuiteRun) SetCreatedAt added in v0.1.7

func (o *TestSuiteRun) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TestSuiteRun) SetFail added in v0.1.7

func (o *TestSuiteRun) SetFail(v int32)

SetFail gets a reference to the given int32 and assigns it to the Fail field.

func (*TestSuiteRun) SetId added in v0.1.7

func (o *TestSuiteRun) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*TestSuiteRun) SetMetadata added in v0.1.7

func (o *TestSuiteRun) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*TestSuiteRun) SetPass added in v0.1.7

func (o *TestSuiteRun) SetPass(v int32)

SetPass gets a reference to the given int32 and assigns it to the Pass field.

func (*TestSuiteRun) SetState added in v0.1.7

func (o *TestSuiteRun) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*TestSuiteRun) SetSteps added in v0.1.7

func (o *TestSuiteRun) SetSteps(v []TestRun)

SetSteps gets a reference to the given []TestRun and assigns it to the Steps field.

func (*TestSuiteRun) SetVariableSet added in v0.1.7

func (o *TestSuiteRun) SetVariableSet(v VariableSet)

SetVariableSet gets a reference to the given VariableSet and assigns it to the VariableSet field.

func (*TestSuiteRun) SetVersion added in v0.1.7

func (o *TestSuiteRun) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (TestSuiteRun) ToMap added in v0.1.7

func (o TestSuiteRun) ToMap() (map[string]interface{}, error)

type TestSummary

type TestSummary struct {
	Runs    *int32              `json:"runs,omitempty"`
	LastRun *TestSummaryLastRun `json:"lastRun,omitempty"`
}

TestSummary struct for TestSummary

func NewTestSummary

func NewTestSummary() *TestSummary

NewTestSummary instantiates a new TestSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSummaryWithDefaults

func NewTestSummaryWithDefaults() *TestSummary

NewTestSummaryWithDefaults instantiates a new TestSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSummary) GetLastRun

func (o *TestSummary) GetLastRun() TestSummaryLastRun

GetLastRun returns the LastRun field value if set, zero value otherwise.

func (*TestSummary) GetLastRunOk

func (o *TestSummary) GetLastRunOk() (*TestSummaryLastRun, bool)

GetLastRunOk returns a tuple with the LastRun field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSummary) GetRuns

func (o *TestSummary) GetRuns() int32

GetRuns returns the Runs field value if set, zero value otherwise.

func (*TestSummary) GetRunsOk

func (o *TestSummary) GetRunsOk() (*int32, bool)

GetRunsOk returns a tuple with the Runs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSummary) HasLastRun

func (o *TestSummary) HasLastRun() bool

HasLastRun returns a boolean if a field has been set.

func (*TestSummary) HasRuns

func (o *TestSummary) HasRuns() bool

HasRuns returns a boolean if a field has been set.

func (TestSummary) MarshalJSON

func (o TestSummary) MarshalJSON() ([]byte, error)

func (*TestSummary) SetLastRun

func (o *TestSummary) SetLastRun(v TestSummaryLastRun)

SetLastRun gets a reference to the given TestSummaryLastRun and assigns it to the LastRun field.

func (*TestSummary) SetRuns

func (o *TestSummary) SetRuns(v int32)

SetRuns gets a reference to the given int32 and assigns it to the Runs field.

func (TestSummary) ToMap added in v0.1.7

func (o TestSummary) ToMap() (map[string]interface{}, error)

type TestSummaryLastRun

type TestSummaryLastRun struct {
	Time          NullableTime `json:"time,omitempty"`
	Passes        *int32       `json:"passes,omitempty"`
	Fails         *int32       `json:"fails,omitempty"`
	AnalyzerScore *int32       `json:"analyzerScore,omitempty"`
}

TestSummaryLastRun struct for TestSummaryLastRun

func NewTestSummaryLastRun

func NewTestSummaryLastRun() *TestSummaryLastRun

NewTestSummaryLastRun instantiates a new TestSummaryLastRun object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTestSummaryLastRunWithDefaults

func NewTestSummaryLastRunWithDefaults() *TestSummaryLastRun

NewTestSummaryLastRunWithDefaults instantiates a new TestSummaryLastRun object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TestSummaryLastRun) GetAnalyzerScore added in v0.1.7

func (o *TestSummaryLastRun) GetAnalyzerScore() int32

GetAnalyzerScore returns the AnalyzerScore field value if set, zero value otherwise.

func (*TestSummaryLastRun) GetAnalyzerScoreOk added in v0.1.7

func (o *TestSummaryLastRun) GetAnalyzerScoreOk() (*int32, bool)

GetAnalyzerScoreOk returns a tuple with the AnalyzerScore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSummaryLastRun) GetFails

func (o *TestSummaryLastRun) GetFails() int32

GetFails returns the Fails field value if set, zero value otherwise.

func (*TestSummaryLastRun) GetFailsOk

func (o *TestSummaryLastRun) GetFailsOk() (*int32, bool)

GetFailsOk returns a tuple with the Fails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSummaryLastRun) GetPasses

func (o *TestSummaryLastRun) GetPasses() int32

GetPasses returns the Passes field value if set, zero value otherwise.

func (*TestSummaryLastRun) GetPassesOk

func (o *TestSummaryLastRun) GetPassesOk() (*int32, bool)

GetPassesOk returns a tuple with the Passes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TestSummaryLastRun) GetTime

func (o *TestSummaryLastRun) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TestSummaryLastRun) GetTimeOk

func (o *TestSummaryLastRun) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time 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 (*TestSummaryLastRun) HasAnalyzerScore added in v0.1.7

func (o *TestSummaryLastRun) HasAnalyzerScore() bool

HasAnalyzerScore returns a boolean if a field has been set.

func (*TestSummaryLastRun) HasFails

func (o *TestSummaryLastRun) HasFails() bool

HasFails returns a boolean if a field has been set.

func (*TestSummaryLastRun) HasPasses

func (o *TestSummaryLastRun) HasPasses() bool

HasPasses returns a boolean if a field has been set.

func (*TestSummaryLastRun) HasTime

func (o *TestSummaryLastRun) HasTime() bool

HasTime returns a boolean if a field has been set.

func (TestSummaryLastRun) MarshalJSON

func (o TestSummaryLastRun) MarshalJSON() ([]byte, error)

func (*TestSummaryLastRun) SetAnalyzerScore added in v0.1.7

func (o *TestSummaryLastRun) SetAnalyzerScore(v int32)

SetAnalyzerScore gets a reference to the given int32 and assigns it to the AnalyzerScore field.

func (*TestSummaryLastRun) SetFails

func (o *TestSummaryLastRun) SetFails(v int32)

SetFails gets a reference to the given int32 and assigns it to the Fails field.

func (*TestSummaryLastRun) SetPasses

func (o *TestSummaryLastRun) SetPasses(v int32)

SetPasses gets a reference to the given int32 and assigns it to the Passes field.

func (*TestSummaryLastRun) SetTime

func (o *TestSummaryLastRun) SetTime(v time.Time)

SetTime gets a reference to the given NullableTime and assigns it to the Time field.

func (*TestSummaryLastRun) SetTimeNil

func (o *TestSummaryLastRun) SetTimeNil()

SetTimeNil sets the value for Time to be an explicit nil

func (TestSummaryLastRun) ToMap added in v0.1.7

func (o TestSummaryLastRun) ToMap() (map[string]interface{}, error)

func (*TestSummaryLastRun) UnsetTime

func (o *TestSummaryLastRun) UnsetTime()

UnsetTime ensures that no value is present for Time, not even an explicit nil

type Trace

type Trace struct {
	TraceId *string `json:"traceId,omitempty"`
	Tree    *Span   `json:"tree,omitempty"`
	// falttened version, mapped as spanId -> span{}
	Flat *map[string]Span `json:"flat,omitempty"`
}

Trace struct for Trace

func NewTrace

func NewTrace() *Trace

NewTrace instantiates a new Trace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTraceWithDefaults

func NewTraceWithDefaults() *Trace

NewTraceWithDefaults instantiates a new Trace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Trace) GetFlat

func (o *Trace) GetFlat() map[string]Span

GetFlat returns the Flat field value if set, zero value otherwise.

func (*Trace) GetFlatOk

func (o *Trace) GetFlatOk() (*map[string]Span, bool)

GetFlatOk returns a tuple with the Flat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trace) GetTraceId

func (o *Trace) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*Trace) GetTraceIdOk

func (o *Trace) GetTraceIdOk() (*string, bool)

GetTraceIdOk returns a tuple with the TraceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trace) GetTree

func (o *Trace) GetTree() Span

GetTree returns the Tree field value if set, zero value otherwise.

func (*Trace) GetTreeOk

func (o *Trace) GetTreeOk() (*Span, bool)

GetTreeOk returns a tuple with the Tree field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trace) HasFlat

func (o *Trace) HasFlat() bool

HasFlat returns a boolean if a field has been set.

func (*Trace) HasTraceId

func (o *Trace) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (*Trace) HasTree

func (o *Trace) HasTree() bool

HasTree returns a boolean if a field has been set.

func (Trace) MarshalJSON

func (o Trace) MarshalJSON() ([]byte, error)

func (*Trace) SetFlat

func (o *Trace) SetFlat(v map[string]Span)

SetFlat gets a reference to the given map[string]Span and assigns it to the Flat field.

func (*Trace) SetTraceId

func (o *Trace) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

func (*Trace) SetTree

func (o *Trace) SetTree(v Span)

SetTree gets a reference to the given Span and assigns it to the Tree field.

func (Trace) ToMap added in v0.1.7

func (o Trace) ToMap() (map[string]interface{}, error)

type Trigger

type Trigger struct {
	Type        *string         `json:"type,omitempty"`
	HttpRequest *HTTPRequest    `json:"httpRequest,omitempty"`
	Grpc        *GRPCRequest    `json:"grpc,omitempty"`
	Traceid     *TRACEIDRequest `json:"traceid,omitempty"`
	Kafka       *KafkaRequest   `json:"kafka,omitempty"`
}

Trigger struct for Trigger

func NewTrigger

func NewTrigger() *Trigger

NewTrigger instantiates a new Trigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerWithDefaults

func NewTriggerWithDefaults() *Trigger

NewTriggerWithDefaults instantiates a new Trigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Trigger) GetGrpc added in v0.1.7

func (o *Trigger) GetGrpc() GRPCRequest

GetGrpc returns the Grpc field value if set, zero value otherwise.

func (*Trigger) GetGrpcOk added in v0.1.7

func (o *Trigger) GetGrpcOk() (*GRPCRequest, bool)

GetGrpcOk returns a tuple with the Grpc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) GetHttpRequest added in v0.1.7

func (o *Trigger) GetHttpRequest() HTTPRequest

GetHttpRequest returns the HttpRequest field value if set, zero value otherwise.

func (*Trigger) GetHttpRequestOk added in v0.1.7

func (o *Trigger) GetHttpRequestOk() (*HTTPRequest, bool)

GetHttpRequestOk returns a tuple with the HttpRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) GetKafka added in v0.1.7

func (o *Trigger) GetKafka() KafkaRequest

GetKafka returns the Kafka field value if set, zero value otherwise.

func (*Trigger) GetKafkaOk added in v0.1.7

func (o *Trigger) GetKafkaOk() (*KafkaRequest, bool)

GetKafkaOk returns a tuple with the Kafka field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) GetTraceid added in v0.1.7

func (o *Trigger) GetTraceid() TRACEIDRequest

GetTraceid returns the Traceid field value if set, zero value otherwise.

func (*Trigger) GetTraceidOk added in v0.1.7

func (o *Trigger) GetTraceidOk() (*TRACEIDRequest, bool)

GetTraceidOk returns a tuple with the Traceid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) GetType added in v0.1.7

func (o *Trigger) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Trigger) GetTypeOk added in v0.1.7

func (o *Trigger) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) HasGrpc added in v0.1.7

func (o *Trigger) HasGrpc() bool

HasGrpc returns a boolean if a field has been set.

func (*Trigger) HasHttpRequest added in v0.1.7

func (o *Trigger) HasHttpRequest() bool

HasHttpRequest returns a boolean if a field has been set.

func (*Trigger) HasKafka added in v0.1.7

func (o *Trigger) HasKafka() bool

HasKafka returns a boolean if a field has been set.

func (*Trigger) HasTraceid added in v0.1.7

func (o *Trigger) HasTraceid() bool

HasTraceid returns a boolean if a field has been set.

func (*Trigger) HasType added in v0.1.7

func (o *Trigger) HasType() bool

HasType returns a boolean if a field has been set.

func (Trigger) MarshalJSON

func (o Trigger) MarshalJSON() ([]byte, error)

func (*Trigger) SetGrpc added in v0.1.7

func (o *Trigger) SetGrpc(v GRPCRequest)

SetGrpc gets a reference to the given GRPCRequest and assigns it to the Grpc field.

func (*Trigger) SetHttpRequest added in v0.1.7

func (o *Trigger) SetHttpRequest(v HTTPRequest)

SetHttpRequest gets a reference to the given HTTPRequest and assigns it to the HttpRequest field.

func (*Trigger) SetKafka added in v0.1.7

func (o *Trigger) SetKafka(v KafkaRequest)

SetKafka gets a reference to the given KafkaRequest and assigns it to the Kafka field.

func (*Trigger) SetTraceid added in v0.1.7

func (o *Trigger) SetTraceid(v TRACEIDRequest)

SetTraceid gets a reference to the given TRACEIDRequest and assigns it to the Traceid field.

func (*Trigger) SetType added in v0.1.7

func (o *Trigger) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Trigger) ToMap added in v0.1.7

func (o Trigger) ToMap() (map[string]interface{}, error)

type TriggerResult

type TriggerResult struct {
	Type          *string                     `json:"type,omitempty"`
	TriggerResult *TriggerResultTriggerResult `json:"triggerResult,omitempty"`
}

TriggerResult struct for TriggerResult

func NewTriggerResult

func NewTriggerResult() *TriggerResult

NewTriggerResult instantiates a new TriggerResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerResultWithDefaults

func NewTriggerResultWithDefaults() *TriggerResult

NewTriggerResultWithDefaults instantiates a new TriggerResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggerResult) GetTriggerResult

func (o *TriggerResult) GetTriggerResult() TriggerResultTriggerResult

GetTriggerResult returns the TriggerResult field value if set, zero value otherwise.

func (*TriggerResult) GetTriggerResultOk

func (o *TriggerResult) GetTriggerResultOk() (*TriggerResultTriggerResult, bool)

GetTriggerResultOk returns a tuple with the TriggerResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResult) GetType added in v0.1.7

func (o *TriggerResult) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TriggerResult) GetTypeOk added in v0.1.7

func (o *TriggerResult) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResult) HasTriggerResult

func (o *TriggerResult) HasTriggerResult() bool

HasTriggerResult returns a boolean if a field has been set.

func (*TriggerResult) HasType added in v0.1.7

func (o *TriggerResult) HasType() bool

HasType returns a boolean if a field has been set.

func (TriggerResult) MarshalJSON

func (o TriggerResult) MarshalJSON() ([]byte, error)

func (*TriggerResult) SetTriggerResult

func (o *TriggerResult) SetTriggerResult(v TriggerResultTriggerResult)

SetTriggerResult gets a reference to the given TriggerResultTriggerResult and assigns it to the TriggerResult field.

func (*TriggerResult) SetType added in v0.1.7

func (o *TriggerResult) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TriggerResult) ToMap added in v0.1.7

func (o TriggerResult) ToMap() (map[string]interface{}, error)

type TriggerResultTriggerResult

type TriggerResultTriggerResult struct {
	Http    *HTTPResponse    `json:"http,omitempty"`
	Grpc    *GRPCResponse    `json:"grpc,omitempty"`
	Traceid *TRACEIDResponse `json:"traceid,omitempty"`
	Kafka   *KafkaResponse   `json:"kafka,omitempty"`
}

TriggerResultTriggerResult struct for TriggerResultTriggerResult

func NewTriggerResultTriggerResult

func NewTriggerResultTriggerResult() *TriggerResultTriggerResult

NewTriggerResultTriggerResult instantiates a new TriggerResultTriggerResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerResultTriggerResultWithDefaults

func NewTriggerResultTriggerResultWithDefaults() *TriggerResultTriggerResult

NewTriggerResultTriggerResultWithDefaults instantiates a new TriggerResultTriggerResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggerResultTriggerResult) GetGrpc

GetGrpc returns the Grpc field value if set, zero value otherwise.

func (*TriggerResultTriggerResult) GetGrpcOk

func (o *TriggerResultTriggerResult) GetGrpcOk() (*GRPCResponse, bool)

GetGrpcOk returns a tuple with the Grpc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResultTriggerResult) GetHttp

GetHttp returns the Http field value if set, zero value otherwise.

func (*TriggerResultTriggerResult) GetHttpOk

func (o *TriggerResultTriggerResult) GetHttpOk() (*HTTPResponse, bool)

GetHttpOk returns a tuple with the Http field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResultTriggerResult) GetKafka added in v0.1.7

GetKafka returns the Kafka field value if set, zero value otherwise.

func (*TriggerResultTriggerResult) GetKafkaOk added in v0.1.7

func (o *TriggerResultTriggerResult) GetKafkaOk() (*KafkaResponse, bool)

GetKafkaOk returns a tuple with the Kafka field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResultTriggerResult) GetTraceid

GetTraceid returns the Traceid field value if set, zero value otherwise.

func (*TriggerResultTriggerResult) GetTraceidOk

func (o *TriggerResultTriggerResult) GetTraceidOk() (*TRACEIDResponse, bool)

GetTraceidOk returns a tuple with the Traceid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerResultTriggerResult) HasGrpc

func (o *TriggerResultTriggerResult) HasGrpc() bool

HasGrpc returns a boolean if a field has been set.

func (*TriggerResultTriggerResult) HasHttp

func (o *TriggerResultTriggerResult) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*TriggerResultTriggerResult) HasKafka added in v0.1.7

func (o *TriggerResultTriggerResult) HasKafka() bool

HasKafka returns a boolean if a field has been set.

func (*TriggerResultTriggerResult) HasTraceid

func (o *TriggerResultTriggerResult) HasTraceid() bool

HasTraceid returns a boolean if a field has been set.

func (TriggerResultTriggerResult) MarshalJSON

func (o TriggerResultTriggerResult) MarshalJSON() ([]byte, error)

func (*TriggerResultTriggerResult) SetGrpc

SetGrpc gets a reference to the given GRPCResponse and assigns it to the Grpc field.

func (*TriggerResultTriggerResult) SetHttp

SetHttp gets a reference to the given HTTPResponse and assigns it to the Http field.

func (*TriggerResultTriggerResult) SetKafka added in v0.1.7

SetKafka gets a reference to the given KafkaResponse and assigns it to the Kafka field.

func (*TriggerResultTriggerResult) SetTraceid

SetTraceid gets a reference to the given TRACEIDResponse and assigns it to the Traceid field.

func (TriggerResultTriggerResult) ToMap added in v0.1.7

func (o TriggerResultTriggerResult) ToMap() (map[string]interface{}, error)

type Variable added in v0.1.7

type Variable struct {
	Key          *string `json:"key,omitempty"`
	DefaultValue *string `json:"defaultValue,omitempty"`
}

Variable struct for Variable

func NewVariable added in v0.1.7

func NewVariable() *Variable

NewVariable instantiates a new Variable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableWithDefaults added in v0.1.7

func NewVariableWithDefaults() *Variable

NewVariableWithDefaults instantiates a new Variable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Variable) GetDefaultValue added in v0.1.7

func (o *Variable) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*Variable) GetDefaultValueOk added in v0.1.7

func (o *Variable) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Variable) GetKey added in v0.1.7

func (o *Variable) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Variable) GetKeyOk added in v0.1.7

func (o *Variable) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Variable) HasDefaultValue added in v0.1.7

func (o *Variable) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*Variable) HasKey added in v0.1.7

func (o *Variable) HasKey() bool

HasKey returns a boolean if a field has been set.

func (Variable) MarshalJSON added in v0.1.7

func (o Variable) MarshalJSON() ([]byte, error)

func (*Variable) SetDefaultValue added in v0.1.7

func (o *Variable) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*Variable) SetKey added in v0.1.7

func (o *Variable) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (Variable) ToMap added in v0.1.7

func (o Variable) ToMap() (map[string]interface{}, error)

type VariableSet added in v0.1.7

type VariableSet struct {
	Id          *string            `json:"id,omitempty"`
	Name        *string            `json:"name,omitempty"`
	Description *string            `json:"description,omitempty"`
	Values      []VariableSetValue `json:"values,omitempty"`
}

VariableSet struct for VariableSet

func NewVariableSet added in v0.1.7

func NewVariableSet() *VariableSet

NewVariableSet instantiates a new VariableSet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableSetWithDefaults added in v0.1.7

func NewVariableSetWithDefaults() *VariableSet

NewVariableSetWithDefaults instantiates a new VariableSet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableSet) GetDescription added in v0.1.7

func (o *VariableSet) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*VariableSet) GetDescriptionOk added in v0.1.7

func (o *VariableSet) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSet) GetId added in v0.1.7

func (o *VariableSet) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VariableSet) GetIdOk added in v0.1.7

func (o *VariableSet) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSet) GetName added in v0.1.7

func (o *VariableSet) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VariableSet) GetNameOk added in v0.1.7

func (o *VariableSet) 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 (*VariableSet) GetValues added in v0.1.7

func (o *VariableSet) GetValues() []VariableSetValue

GetValues returns the Values field value if set, zero value otherwise.

func (*VariableSet) GetValuesOk added in v0.1.7

func (o *VariableSet) GetValuesOk() ([]VariableSetValue, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSet) HasDescription added in v0.1.7

func (o *VariableSet) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*VariableSet) HasId added in v0.1.7

func (o *VariableSet) HasId() bool

HasId returns a boolean if a field has been set.

func (*VariableSet) HasName added in v0.1.7

func (o *VariableSet) HasName() bool

HasName returns a boolean if a field has been set.

func (*VariableSet) HasValues added in v0.1.7

func (o *VariableSet) HasValues() bool

HasValues returns a boolean if a field has been set.

func (VariableSet) MarshalJSON added in v0.1.7

func (o VariableSet) MarshalJSON() ([]byte, error)

func (*VariableSet) SetDescription added in v0.1.7

func (o *VariableSet) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*VariableSet) SetId added in v0.1.7

func (o *VariableSet) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VariableSet) SetName added in v0.1.7

func (o *VariableSet) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VariableSet) SetValues added in v0.1.7

func (o *VariableSet) SetValues(v []VariableSetValue)

SetValues gets a reference to the given []VariableSetValue and assigns it to the Values field.

func (VariableSet) ToMap added in v0.1.7

func (o VariableSet) ToMap() (map[string]interface{}, error)

type VariableSetResource added in v0.1.7

type VariableSetResource struct {
	// Represents the type of this resource. It should always be set as 'VariableSet'.
	Type *string      `json:"type,omitempty"`
	Spec *VariableSet `json:"spec,omitempty"`
}

VariableSetResource Represents a VariableSet structured into the Resources format.

func NewVariableSetResource added in v0.1.7

func NewVariableSetResource() *VariableSetResource

NewVariableSetResource instantiates a new VariableSetResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableSetResourceWithDefaults added in v0.1.7

func NewVariableSetResourceWithDefaults() *VariableSetResource

NewVariableSetResourceWithDefaults instantiates a new VariableSetResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableSetResource) GetSpec added in v0.1.7

func (o *VariableSetResource) GetSpec() VariableSet

GetSpec returns the Spec field value if set, zero value otherwise.

func (*VariableSetResource) GetSpecOk added in v0.1.7

func (o *VariableSetResource) GetSpecOk() (*VariableSet, bool)

GetSpecOk returns a tuple with the Spec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSetResource) GetType added in v0.1.7

func (o *VariableSetResource) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*VariableSetResource) GetTypeOk added in v0.1.7

func (o *VariableSetResource) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSetResource) HasSpec added in v0.1.7

func (o *VariableSetResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*VariableSetResource) HasType added in v0.1.7

func (o *VariableSetResource) HasType() bool

HasType returns a boolean if a field has been set.

func (VariableSetResource) MarshalJSON added in v0.1.7

func (o VariableSetResource) MarshalJSON() ([]byte, error)

func (*VariableSetResource) SetSpec added in v0.1.7

func (o *VariableSetResource) SetSpec(v VariableSet)

SetSpec gets a reference to the given VariableSet and assigns it to the Spec field.

func (*VariableSetResource) SetType added in v0.1.7

func (o *VariableSetResource) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (VariableSetResource) ToMap added in v0.1.7

func (o VariableSetResource) ToMap() (map[string]interface{}, error)

type VariableSetResourceList added in v0.1.7

type VariableSetResourceList struct {
	Count *int32                `json:"count,omitempty"`
	Items []VariableSetResource `json:"items,omitempty"`
}

VariableSetResourceList struct for VariableSetResourceList

func NewVariableSetResourceList added in v0.1.7

func NewVariableSetResourceList() *VariableSetResourceList

NewVariableSetResourceList instantiates a new VariableSetResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableSetResourceListWithDefaults added in v0.1.7

func NewVariableSetResourceListWithDefaults() *VariableSetResourceList

NewVariableSetResourceListWithDefaults instantiates a new VariableSetResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableSetResourceList) GetCount added in v0.1.7

func (o *VariableSetResourceList) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*VariableSetResourceList) GetCountOk added in v0.1.7

func (o *VariableSetResourceList) 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.

func (*VariableSetResourceList) GetItems added in v0.1.7

GetItems returns the Items field value if set, zero value otherwise.

func (*VariableSetResourceList) GetItemsOk added in v0.1.7

func (o *VariableSetResourceList) GetItemsOk() ([]VariableSetResource, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSetResourceList) HasCount added in v0.1.7

func (o *VariableSetResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*VariableSetResourceList) HasItems added in v0.1.7

func (o *VariableSetResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (VariableSetResourceList) MarshalJSON added in v0.1.7

func (o VariableSetResourceList) MarshalJSON() ([]byte, error)

func (*VariableSetResourceList) SetCount added in v0.1.7

func (o *VariableSetResourceList) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*VariableSetResourceList) SetItems added in v0.1.7

SetItems gets a reference to the given []VariableSetResource and assigns it to the Items field.

func (VariableSetResourceList) ToMap added in v0.1.7

func (o VariableSetResourceList) ToMap() (map[string]interface{}, error)

type VariableSetValue added in v0.1.7

type VariableSetValue struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

VariableSetValue struct for VariableSetValue

func NewVariableSetValue added in v0.1.7

func NewVariableSetValue() *VariableSetValue

NewVariableSetValue instantiates a new VariableSetValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableSetValueWithDefaults added in v0.1.7

func NewVariableSetValueWithDefaults() *VariableSetValue

NewVariableSetValueWithDefaults instantiates a new VariableSetValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableSetValue) GetKey added in v0.1.7

func (o *VariableSetValue) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*VariableSetValue) GetKeyOk added in v0.1.7

func (o *VariableSetValue) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSetValue) GetValue added in v0.1.7

func (o *VariableSetValue) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*VariableSetValue) GetValueOk added in v0.1.7

func (o *VariableSetValue) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableSetValue) HasKey added in v0.1.7

func (o *VariableSetValue) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*VariableSetValue) HasValue added in v0.1.7

func (o *VariableSetValue) HasValue() bool

HasValue returns a boolean if a field has been set.

func (VariableSetValue) MarshalJSON added in v0.1.7

func (o VariableSetValue) MarshalJSON() ([]byte, error)

func (*VariableSetValue) SetKey added in v0.1.7

func (o *VariableSetValue) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*VariableSetValue) SetValue added in v0.1.7

func (o *VariableSetValue) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (VariableSetValue) ToMap added in v0.1.7

func (o VariableSetValue) ToMap() (map[string]interface{}, error)

type Version added in v0.1.7

type Version struct {
	Version       *string `json:"version,omitempty"`
	Type          *string `json:"type,omitempty"`
	UiEndpoint    *string `json:"uiEndpoint,omitempty"`
	AgentEndpoint *string `json:"agentEndpoint,omitempty"`
	ApiEndpoint   *string `json:"apiEndpoint,omitempty"`
}

Version struct for Version

func NewVersion added in v0.1.7

func NewVersion() *Version

NewVersion instantiates a new Version object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVersionWithDefaults added in v0.1.7

func NewVersionWithDefaults() *Version

NewVersionWithDefaults instantiates a new Version object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Version) GetAgentEndpoint added in v0.1.7

func (o *Version) GetAgentEndpoint() string

GetAgentEndpoint returns the AgentEndpoint field value if set, zero value otherwise.

func (*Version) GetAgentEndpointOk added in v0.1.7

func (o *Version) GetAgentEndpointOk() (*string, bool)

GetAgentEndpointOk returns a tuple with the AgentEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) GetApiEndpoint added in v0.1.7

func (o *Version) GetApiEndpoint() string

GetApiEndpoint returns the ApiEndpoint field value if set, zero value otherwise.

func (*Version) GetApiEndpointOk added in v0.1.7

func (o *Version) GetApiEndpointOk() (*string, bool)

GetApiEndpointOk returns a tuple with the ApiEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) GetType added in v0.1.7

func (o *Version) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Version) GetTypeOk added in v0.1.7

func (o *Version) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) GetUiEndpoint added in v0.1.7

func (o *Version) GetUiEndpoint() string

GetUiEndpoint returns the UiEndpoint field value if set, zero value otherwise.

func (*Version) GetUiEndpointOk added in v0.1.7

func (o *Version) GetUiEndpointOk() (*string, bool)

GetUiEndpointOk returns a tuple with the UiEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) GetVersion added in v0.1.7

func (o *Version) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Version) GetVersionOk added in v0.1.7

func (o *Version) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) HasAgentEndpoint added in v0.1.7

func (o *Version) HasAgentEndpoint() bool

HasAgentEndpoint returns a boolean if a field has been set.

func (*Version) HasApiEndpoint added in v0.1.7

func (o *Version) HasApiEndpoint() bool

HasApiEndpoint returns a boolean if a field has been set.

func (*Version) HasType added in v0.1.7

func (o *Version) HasType() bool

HasType returns a boolean if a field has been set.

func (*Version) HasUiEndpoint added in v0.1.7

func (o *Version) HasUiEndpoint() bool

HasUiEndpoint returns a boolean if a field has been set.

func (*Version) HasVersion added in v0.1.7

func (o *Version) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Version) MarshalJSON added in v0.1.7

func (o Version) MarshalJSON() ([]byte, error)

func (*Version) SetAgentEndpoint added in v0.1.7

func (o *Version) SetAgentEndpoint(v string)

SetAgentEndpoint gets a reference to the given string and assigns it to the AgentEndpoint field.

func (*Version) SetApiEndpoint added in v0.1.7

func (o *Version) SetApiEndpoint(v string)

SetApiEndpoint gets a reference to the given string and assigns it to the ApiEndpoint field.

func (*Version) SetType added in v0.1.7

func (o *Version) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Version) SetUiEndpoint added in v0.1.7

func (o *Version) SetUiEndpoint(v string)

SetUiEndpoint gets a reference to the given string and assigns it to the UiEndpoint field.

func (*Version) SetVersion added in v0.1.7

func (o *Version) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Version) ToMap added in v0.1.7

func (o Version) 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