openapi

package
v0.0.0-...-ed06964 Latest Latest
Warning

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

Go to latest
Published: Oct 23, 2023 License: MIT Imports: 21 Imported by: 2

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

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

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

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

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

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

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

Execute executes the request

@return TestSuiteRun

func (*ApiApiService) GetTestSuiteRuns

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

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

Execute executes the request

@return []TestSuiteRun

func (*ApiApiService) GetTestSuiteVersion

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

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

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

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

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

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

Execute executes the request

@return TestSuiteRun

func (*ApiApiService) StopTestRun

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

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

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

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

Execute executes the request

@return TestRun

type ApiCreateDemoRequest

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

func (ApiCreateDemoRequest) Demo

func (ApiCreateDemoRequest) Execute

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

type ApiCreateLinterRequest

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

func (ApiCreateLinterRequest) Execute

func (ApiCreateLinterRequest) LinterResource

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

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

func (ApiCreateTestSuiteRequest) Execute

func (ApiCreateTestSuiteRequest) TestSuiteResource

func (r ApiCreateTestSuiteRequest) TestSuiteResource(testSuiteResource TestSuiteResource) ApiCreateTestSuiteRequest

type ApiCreateVariableSetRequest

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

func (ApiCreateVariableSetRequest) Execute

func (ApiCreateVariableSetRequest) VariableSetResource

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

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

func (ApiDeleteDemoRequest) Execute

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

type ApiDeleteLinterRequest

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

func (ApiDeleteLinterRequest) Execute

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

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

func (ApiDeleteTestSuiteRequest) Execute

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

type ApiDeleteTestSuiteRunRequest

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

func (ApiDeleteTestSuiteRunRequest) Execute

type ApiDeleteVariableSetRequest

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

func (ApiDeleteVariableSetRequest) Execute

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

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

func (ApiGetConfigurationRequest) Execute

type ApiGetDataStoreRequest

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

func (ApiGetDataStoreRequest) Execute

type ApiGetDemoRequest

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

func (ApiGetDemoRequest) Execute

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

type ApiGetLinterRequest

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

func (ApiGetLinterRequest) Execute

type ApiGetPollingProfileRequest

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

func (ApiGetPollingProfileRequest) Execute

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

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

func (ApiGetTestRunEventsRequest) Execute

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

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

func (ApiGetTestSuiteRequest) Execute

type ApiGetTestSuiteRunRequest

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

func (ApiGetTestSuiteRunRequest) Execute

type ApiGetTestSuiteRunsRequest

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

func (ApiGetTestSuiteRunsRequest) Execute

func (ApiGetTestSuiteRunsRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiGetTestSuiteRunsRequest) Take

indicates how many resources can be returned by each page

type ApiGetTestSuiteVersionRequest

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

func (ApiGetTestSuiteVersionRequest) Execute

type ApiGetTestSuitesRequest

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

func (ApiGetTestSuitesRequest) Execute

func (ApiGetTestSuitesRequest) Query

query to search resources

func (ApiGetTestSuitesRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiGetTestSuitesRequest) SortBy

indicates the sort field for the resources

func (ApiGetTestSuitesRequest) SortDirection

func (r ApiGetTestSuitesRequest) SortDirection(sortDirection string) ApiGetTestSuitesRequest

indicates the sort direction for the resources

func (ApiGetTestSuitesRequest) Take

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

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

func (ApiGetVariableSetRequest) Execute

type ApiGetVersionRequest

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

func (ApiGetVersionRequest) Execute

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

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

func (ApiListConfigurationRequest) Execute

func (ApiListConfigurationRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListConfigurationRequest) SortBy

indicates the sort field for the resources

func (ApiListConfigurationRequest) SortDirection

func (r ApiListConfigurationRequest) SortDirection(sortDirection string) ApiListConfigurationRequest

indicates the sort direction for the resources

func (ApiListConfigurationRequest) Take

indicates how many resources can be returned by each page

type ApiListDataStoreRequest

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

func (ApiListDataStoreRequest) Execute

func (ApiListDataStoreRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListDataStoreRequest) SortBy

indicates the sort field for the resources

func (ApiListDataStoreRequest) SortDirection

func (r ApiListDataStoreRequest) SortDirection(sortDirection string) ApiListDataStoreRequest

indicates the sort direction for the resources

func (ApiListDataStoreRequest) Take

indicates how many resources can be returned by each page

type ApiListDemosRequest

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

func (ApiListDemosRequest) Execute

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

func (ApiListDemosRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListDemosRequest) SortBy

indicates the sort field for the resources

func (ApiListDemosRequest) SortDirection

func (r ApiListDemosRequest) SortDirection(sortDirection string) ApiListDemosRequest

indicates the sort direction for the resources

func (ApiListDemosRequest) Take

indicates how many resources can be returned by each page

type ApiListLintersRequest

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

func (ApiListLintersRequest) Execute

func (ApiListLintersRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListLintersRequest) SortBy

indicates the sort field for the resources

func (ApiListLintersRequest) SortDirection

func (r ApiListLintersRequest) SortDirection(sortDirection string) ApiListLintersRequest

indicates the sort direction for the resources

func (ApiListLintersRequest) Take

indicates how many resources can be returned by each page

type ApiListPollingProfileRequest

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

func (ApiListPollingProfileRequest) Execute

func (ApiListPollingProfileRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListPollingProfileRequest) SortBy

indicates the sort field for the resources

func (ApiListPollingProfileRequest) SortDirection

func (r ApiListPollingProfileRequest) SortDirection(sortDirection string) ApiListPollingProfileRequest

indicates the sort direction for the resources

func (ApiListPollingProfileRequest) Take

indicates how many resources can be returned by each page

type ApiListVariableSetsRequest

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

func (ApiListVariableSetsRequest) Execute

func (ApiListVariableSetsRequest) Skip

indicates how many resources will be skipped when paginating

func (ApiListVariableSetsRequest) SortBy

indicates the sort field for the resources

func (ApiListVariableSetsRequest) SortDirection

func (r ApiListVariableSetsRequest) SortDirection(sortDirection string) ApiListVariableSetsRequest

indicates the sort direction for the resources

func (ApiListVariableSetsRequest) Take

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

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

func (ApiRunTestSuiteRequest) Execute

func (ApiRunTestSuiteRequest) RunInformation

func (r ApiRunTestSuiteRequest) RunInformation(runInformation RunInformation) ApiRunTestSuiteRequest

type ApiStopTestRunRequest

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

func (ApiStopTestRunRequest) Execute

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

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

func (ApiTestsTestIdGetRequest) Execute

type ApiUpdateConfigurationRequest

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

func (ApiUpdateConfigurationRequest) ConfigurationResource

func (r ApiUpdateConfigurationRequest) ConfigurationResource(configurationResource ConfigurationResource) ApiUpdateConfigurationRequest

func (ApiUpdateConfigurationRequest) Execute

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

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

func (ApiUpdateDemoRequest) Demo

func (ApiUpdateDemoRequest) Execute

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

type ApiUpdateLinterRequest

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

func (ApiUpdateLinterRequest) Execute

func (ApiUpdateLinterRequest) LinterResource

func (r ApiUpdateLinterRequest) LinterResource(linterResource LinterResource) ApiUpdateLinterRequest

type ApiUpdatePollingProfileRequest

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

func (ApiUpdatePollingProfileRequest) Execute

func (ApiUpdatePollingProfileRequest) PollingProfile

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

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

func (ApiUpdateTestRunRequest) Execute

func (ApiUpdateTestRunRequest) TestRun

type ApiUpdateTestSuiteRequest

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

func (ApiUpdateTestSuiteRequest) Execute

func (ApiUpdateTestSuiteRequest) TestSuiteResource

func (r ApiUpdateTestSuiteRequest) TestSuiteResource(testSuiteResource TestSuiteResource) ApiUpdateTestSuiteRequest

type ApiUpdateVariableSetRequest

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

func (ApiUpdateVariableSetRequest) Execute

func (ApiUpdateVariableSetRequest) VariableSetResource

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

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

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

type AssertionResultsResultsInner

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

AssertionResultsResultsInner struct for AssertionResultsResultsInner

func NewAssertionResultsResultsInner

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

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

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

func (*AssertionResultsResultsInner) GetResultsOk

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

func (o *AssertionResultsResultsInner) GetSelector() Selector

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

func (*AssertionResultsResultsInner) GetSelectorOk

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

func (o *AssertionResultsResultsInner) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*AssertionResultsResultsInner) HasSelector

func (o *AssertionResultsResultsInner) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (AssertionResultsResultsInner) MarshalJSON

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

func (*AssertionResultsResultsInner) SetResults

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

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

func (*AssertionResultsResultsInner) SetSelector

func (o *AssertionResultsResultsInner) SetSelector(v Selector)

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

func (AssertionResultsResultsInner) ToMap

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

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

type AwsXRay

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

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

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

func (o *AwsXRay) GetAccessKeyId() string

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

func (*AwsXRay) GetAccessKeyIdOk

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

func (o *AwsXRay) GetRegion() string

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

func (*AwsXRay) GetRegionOk

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

func (o *AwsXRay) GetSecretAccessKey() string

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

func (*AwsXRay) GetSecretAccessKeyOk

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

func (o *AwsXRay) GetSessionToken() string

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

func (*AwsXRay) GetSessionTokenOk

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

func (o *AwsXRay) GetUseDefaultAuth() bool

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

func (*AwsXRay) GetUseDefaultAuthOk

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

func (o *AwsXRay) HasAccessKeyId() bool

HasAccessKeyId returns a boolean if a field has been set.

func (*AwsXRay) HasRegion

func (o *AwsXRay) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*AwsXRay) HasSecretAccessKey

func (o *AwsXRay) HasSecretAccessKey() bool

HasSecretAccessKey returns a boolean if a field has been set.

func (*AwsXRay) HasSessionToken

func (o *AwsXRay) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (*AwsXRay) HasUseDefaultAuth

func (o *AwsXRay) HasUseDefaultAuth() bool

HasUseDefaultAuth returns a boolean if a field has been set.

func (AwsXRay) MarshalJSON

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

func (*AwsXRay) SetAccessKeyId

func (o *AwsXRay) SetAccessKeyId(v string)

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

func (*AwsXRay) SetRegion

func (o *AwsXRay) SetRegion(v string)

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

func (*AwsXRay) SetSecretAccessKey

func (o *AwsXRay) SetSecretAccessKey(v string)

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

func (*AwsXRay) SetSessionToken

func (o *AwsXRay) SetSessionToken(v string)

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

func (*AwsXRay) SetUseDefaultAuth

func (o *AwsXRay) SetUseDefaultAuth(v bool)

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

func (AwsXRay) ToMap

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

type AzureAppInsights

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

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

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

func (o *AzureAppInsights) GetAccessToken() string

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

func (*AzureAppInsights) GetAccessTokenOk

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

func (o *AzureAppInsights) GetConnectionType() SupportedConnectionTypes

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

func (*AzureAppInsights) GetConnectionTypeOk

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

func (o *AzureAppInsights) GetResourceArmId() string

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

func (*AzureAppInsights) GetResourceArmIdOk

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

func (o *AzureAppInsights) GetUseAzureActiveDirectoryAuth() bool

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

func (*AzureAppInsights) GetUseAzureActiveDirectoryAuthOk

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

func (o *AzureAppInsights) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*AzureAppInsights) HasConnectionType

func (o *AzureAppInsights) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

func (*AzureAppInsights) HasResourceArmId

func (o *AzureAppInsights) HasResourceArmId() bool

HasResourceArmId returns a boolean if a field has been set.

func (*AzureAppInsights) HasUseAzureActiveDirectoryAuth

func (o *AzureAppInsights) HasUseAzureActiveDirectoryAuth() bool

HasUseAzureActiveDirectoryAuth returns a boolean if a field has been set.

func (AzureAppInsights) MarshalJSON

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

func (*AzureAppInsights) SetAccessToken

func (o *AzureAppInsights) SetAccessToken(v string)

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

func (*AzureAppInsights) SetConnectionType

func (o *AzureAppInsights) SetConnectionType(v SupportedConnectionTypes)

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

func (*AzureAppInsights) SetResourceArmId

func (o *AzureAppInsights) SetResourceArmId(v string)

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

func (*AzureAppInsights) SetUseAzureActiveDirectoryAuth

func (o *AzureAppInsights) SetUseAzureActiveDirectoryAuth(v bool)

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

func (AzureAppInsights) ToMap

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

type BaseClient

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

BaseClient struct for BaseClient

func NewBaseClient

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

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

func (o *BaseClient) GetGrpc() GRPCClientSettings

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

func (*BaseClient) GetGrpcOk

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

func (o *BaseClient) GetHttp() HTTPClientSettings

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

func (*BaseClient) GetHttpOk

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

func (o *BaseClient) GetType() SupportedClients

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

func (*BaseClient) GetTypeOk

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

func (o *BaseClient) HasGrpc() bool

HasGrpc returns a boolean if a field has been set.

func (*BaseClient) HasHttp

func (o *BaseClient) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*BaseClient) HasType

func (o *BaseClient) HasType() bool

HasType returns a boolean if a field has been set.

func (BaseClient) MarshalJSON

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

func (*BaseClient) SetGrpc

func (o *BaseClient) SetGrpc(v GRPCClientSettings)

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

func (*BaseClient) SetHttp

func (o *BaseClient) SetHttp(v HTTPClientSettings)

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

func (*BaseClient) SetType

func (o *BaseClient) SetType(v SupportedClients)

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

func (BaseClient) ToMap

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

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

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

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

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

func (*ConfigurationResource) GetSpecOk

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

func (o *ConfigurationResource) GetType() string

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

func (*ConfigurationResource) GetTypeOk

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

func (o *ConfigurationResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*ConfigurationResource) HasType

func (o *ConfigurationResource) HasType() bool

HasType returns a boolean if a field has been set.

func (ConfigurationResource) MarshalJSON

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

func (*ConfigurationResource) SetSpec

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

func (*ConfigurationResource) SetType

func (o *ConfigurationResource) SetType(v string)

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

func (ConfigurationResource) ToMap

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

type ConfigurationResourceList

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

ConfigurationResourceList struct for ConfigurationResourceList

func NewConfigurationResourceList

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

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

func (o *ConfigurationResourceList) GetCount() int32

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

func (*ConfigurationResourceList) GetCountOk

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

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

func (*ConfigurationResourceList) GetItemsOk

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

func (o *ConfigurationResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ConfigurationResourceList) HasItems

func (o *ConfigurationResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConfigurationResourceList) MarshalJSON

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

func (*ConfigurationResourceList) SetCount

func (o *ConfigurationResourceList) SetCount(v int32)

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

func (*ConfigurationResourceList) SetItems

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

func (ConfigurationResourceList) ToMap

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

type ConfigurationResourceSpec

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

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

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

func (o *ConfigurationResourceSpec) GetAnalyticsEnabled() bool

GetAnalyticsEnabled returns the AnalyticsEnabled field value

func (*ConfigurationResourceSpec) GetAnalyticsEnabledOk

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

func (o *ConfigurationResourceSpec) GetId() string

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

func (*ConfigurationResourceSpec) GetIdOk

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

func (o *ConfigurationResourceSpec) GetName() string

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

func (*ConfigurationResourceSpec) GetNameOk

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

func (o *ConfigurationResourceSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*ConfigurationResourceSpec) HasName

func (o *ConfigurationResourceSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (ConfigurationResourceSpec) MarshalJSON

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

func (*ConfigurationResourceSpec) SetAnalyticsEnabled

func (o *ConfigurationResourceSpec) SetAnalyticsEnabled(v bool)

SetAnalyticsEnabled sets field value

func (*ConfigurationResourceSpec) SetId

func (o *ConfigurationResourceSpec) SetId(v string)

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

func (*ConfigurationResourceSpec) SetName

func (o *ConfigurationResourceSpec) SetName(v string)

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

func (ConfigurationResourceSpec) ToMap

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

func (o *ConnectionResult) GetPortCheck() ConnectionTestStep

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

func (*ConnectionResult) GetPortCheckOk

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

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

func (o *ConnectionResult) SetPortCheck(v ConnectionTestStep)

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

func (ConnectionResult) ToMap

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

func (o *ConnectionTestStep) GetStatus() string

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

func (*ConnectionTestStep) GetStatusOk

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

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

func (o *ConnectionTestStep) SetStatus(v string)

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

func (ConnectionTestStep) ToMap

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

func (o *DataStore) GetAwsxray() AwsXRay

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

func (*DataStore) GetAwsxrayOk

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

func (o *DataStore) GetAzureappinsights() AzureAppInsights

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

func (*DataStore) GetAzureappinsightsOk

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

func (o *DataStore) GetDefault() bool

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

func (*DataStore) GetDefaultOk

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

func (o *DataStore) GetElasticapm() ElasticSearch

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

func (*DataStore) GetElasticapmOk

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

func (o *DataStore) GetOpensearch() ElasticSearch

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

func (*DataStore) GetOpensearchOk

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

func (o *DataStore) GetSignalfx() SignalFX

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

func (*DataStore) GetSignalfxOk

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

func (o *DataStore) HasAwsxray() bool

HasAwsxray returns a boolean if a field has been set.

func (*DataStore) HasAzureappinsights

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

func (o *DataStore) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*DataStore) HasElasticapm

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

func (o *DataStore) HasOpensearch() bool

HasOpensearch returns a boolean if a field has been set.

func (*DataStore) HasSignalfx

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

func (o *DataStore) SetAwsxray(v AwsXRay)

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

func (*DataStore) SetAzureappinsights

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

func (o *DataStore) SetDefault(v bool)

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

func (*DataStore) SetElasticapm

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

func (o *DataStore) SetOpensearch(v ElasticSearch)

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

func (*DataStore) SetSignalfx

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

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

type DataStoreList

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

DataStoreList struct for DataStoreList

func NewDataStoreList

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

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

func (o *DataStoreList) GetCount() int32

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

func (*DataStoreList) GetCountOk

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

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

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

func (*DataStoreList) GetItemsOk

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

func (o *DataStoreList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*DataStoreList) HasItems

func (o *DataStoreList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (DataStoreList) MarshalJSON

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

func (*DataStoreList) SetCount

func (o *DataStoreList) SetCount(v int32)

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

func (*DataStoreList) SetItems

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

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

func (DataStoreList) ToMap

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

type DataStoreResource

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

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

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

func (o *DataStoreResource) GetSpec() DataStore

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

func (*DataStoreResource) GetSpecOk

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

func (o *DataStoreResource) GetType() string

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

func (*DataStoreResource) GetTypeOk

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

func (o *DataStoreResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*DataStoreResource) HasType

func (o *DataStoreResource) HasType() bool

HasType returns a boolean if a field has been set.

func (DataStoreResource) MarshalJSON

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

func (*DataStoreResource) SetSpec

func (o *DataStoreResource) SetSpec(v DataStore)

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

func (*DataStoreResource) SetType

func (o *DataStoreResource) SetType(v string)

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

func (DataStoreResource) ToMap

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

type Demo

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

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

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

func (o *Demo) GetSpec() DemoSpec

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

func (*Demo) GetSpecOk

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

func (o *Demo) GetType() string

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

func (*Demo) GetTypeOk

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

func (o *Demo) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*Demo) HasType

func (o *Demo) HasType() bool

HasType returns a boolean if a field has been set.

func (Demo) MarshalJSON

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

func (*Demo) SetSpec

func (o *Demo) SetSpec(v DemoSpec)

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

func (*Demo) SetType

func (o *Demo) SetType(v string)

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

func (Demo) ToMap

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

type DemoList

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

DemoList struct for DemoList

func NewDemoList

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

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

func (o *DemoList) GetCount() int32

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

func (*DemoList) GetCountOk

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

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

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

func (*DemoList) GetItemsOk

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

func (o *DemoList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*DemoList) HasItems

func (o *DemoList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (DemoList) MarshalJSON

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

func (*DemoList) SetCount

func (o *DemoList) SetCount(v int32)

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

func (*DemoList) SetItems

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

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

func (DemoList) ToMap

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

type DemoOpenTelemetryStore

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

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

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

func (o *DemoOpenTelemetryStore) GetCartEndpoint() string

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

func (*DemoOpenTelemetryStore) GetCartEndpointOk

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

func (o *DemoOpenTelemetryStore) GetCheckoutEndpoint() string

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

func (*DemoOpenTelemetryStore) GetCheckoutEndpointOk

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

func (o *DemoOpenTelemetryStore) GetFrontendEndpoint() string

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

func (*DemoOpenTelemetryStore) GetFrontendEndpointOk

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

func (o *DemoOpenTelemetryStore) GetProductCatalogEndpoint() string

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

func (*DemoOpenTelemetryStore) GetProductCatalogEndpointOk

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

func (o *DemoOpenTelemetryStore) HasCartEndpoint() bool

HasCartEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasCheckoutEndpoint

func (o *DemoOpenTelemetryStore) HasCheckoutEndpoint() bool

HasCheckoutEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasFrontendEndpoint

func (o *DemoOpenTelemetryStore) HasFrontendEndpoint() bool

HasFrontendEndpoint returns a boolean if a field has been set.

func (*DemoOpenTelemetryStore) HasProductCatalogEndpoint

func (o *DemoOpenTelemetryStore) HasProductCatalogEndpoint() bool

HasProductCatalogEndpoint returns a boolean if a field has been set.

func (DemoOpenTelemetryStore) MarshalJSON

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

func (*DemoOpenTelemetryStore) SetCartEndpoint

func (o *DemoOpenTelemetryStore) SetCartEndpoint(v string)

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

func (*DemoOpenTelemetryStore) SetCheckoutEndpoint

func (o *DemoOpenTelemetryStore) SetCheckoutEndpoint(v string)

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

func (*DemoOpenTelemetryStore) SetFrontendEndpoint

func (o *DemoOpenTelemetryStore) SetFrontendEndpoint(v string)

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

func (*DemoOpenTelemetryStore) SetProductCatalogEndpoint

func (o *DemoOpenTelemetryStore) SetProductCatalogEndpoint(v string)

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

func (DemoOpenTelemetryStore) ToMap

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

type DemoPokeshop

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

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

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

func (o *DemoPokeshop) GetGrpcEndpoint() string

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

func (*DemoPokeshop) GetGrpcEndpointOk

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

func (o *DemoPokeshop) GetHttpEndpoint() string

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

func (*DemoPokeshop) GetHttpEndpointOk

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

func (o *DemoPokeshop) GetKafkaBroker() string

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

func (*DemoPokeshop) GetKafkaBrokerOk

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

func (o *DemoPokeshop) HasGrpcEndpoint() bool

HasGrpcEndpoint returns a boolean if a field has been set.

func (*DemoPokeshop) HasHttpEndpoint

func (o *DemoPokeshop) HasHttpEndpoint() bool

HasHttpEndpoint returns a boolean if a field has been set.

func (*DemoPokeshop) HasKafkaBroker

func (o *DemoPokeshop) HasKafkaBroker() bool

HasKafkaBroker returns a boolean if a field has been set.

func (DemoPokeshop) MarshalJSON

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

func (*DemoPokeshop) SetGrpcEndpoint

func (o *DemoPokeshop) SetGrpcEndpoint(v string)

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

func (*DemoPokeshop) SetHttpEndpoint

func (o *DemoPokeshop) SetHttpEndpoint(v string)

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

func (*DemoPokeshop) SetKafkaBroker

func (o *DemoPokeshop) SetKafkaBroker(v string)

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

func (DemoPokeshop) ToMap

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

type DemoSpec

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

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

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

func (o *DemoSpec) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*DemoSpec) GetEnabledOk

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

func (o *DemoSpec) GetId() string

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

func (*DemoSpec) GetIdOk

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

func (o *DemoSpec) GetName() string

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

func (*DemoSpec) GetNameOk

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

func (o *DemoSpec) GetOpentelemetryStore() DemoOpenTelemetryStore

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

func (*DemoSpec) GetOpentelemetryStoreOk

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

func (o *DemoSpec) GetPokeshop() DemoPokeshop

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

func (*DemoSpec) GetPokeshopOk

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

func (o *DemoSpec) GetType() string

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

func (*DemoSpec) GetTypeOk

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

func (o *DemoSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*DemoSpec) HasName

func (o *DemoSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*DemoSpec) HasOpentelemetryStore

func (o *DemoSpec) HasOpentelemetryStore() bool

HasOpentelemetryStore returns a boolean if a field has been set.

func (*DemoSpec) HasPokeshop

func (o *DemoSpec) HasPokeshop() bool

HasPokeshop returns a boolean if a field has been set.

func (*DemoSpec) HasType

func (o *DemoSpec) HasType() bool

HasType returns a boolean if a field has been set.

func (DemoSpec) MarshalJSON

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

func (*DemoSpec) SetEnabled

func (o *DemoSpec) SetEnabled(v bool)

SetEnabled sets field value

func (*DemoSpec) SetId

func (o *DemoSpec) SetId(v string)

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

func (*DemoSpec) SetName

func (o *DemoSpec) SetName(v string)

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

func (*DemoSpec) SetOpentelemetryStore

func (o *DemoSpec) SetOpentelemetryStore(v DemoOpenTelemetryStore)

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

func (*DemoSpec) SetPokeshop

func (o *DemoSpec) SetPokeshop(v DemoPokeshop)

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

func (*DemoSpec) SetType

func (o *DemoSpec) SetType(v string)

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

func (DemoSpec) ToMap

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

func (o *ElasticSearch) GetInsecureSkipVerify() bool

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

func (*ElasticSearch) GetInsecureSkipVerifyOk

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

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

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

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

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

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

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

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

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

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

GetTestSuites200Response struct for GetTestSuites200Response

func NewGetTestSuites200Response

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

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

func (o *GetTestSuites200Response) GetCount() int32

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

func (*GetTestSuites200Response) GetCountOk

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

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

func (*GetTestSuites200Response) GetItemsOk

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

func (o *GetTestSuites200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*GetTestSuites200Response) HasItems

func (o *GetTestSuites200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (GetTestSuites200Response) MarshalJSON

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

func (*GetTestSuites200Response) SetCount

func (o *GetTestSuites200Response) SetCount(v int32)

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

func (*GetTestSuites200Response) SetItems

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

func (GetTestSuites200Response) ToMap

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

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

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

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

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

type HTTPClientSettings

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

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

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

func (o *HTTPClientSettings) GetAuth() HTTPAuth

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

func (*HTTPClientSettings) GetAuthOk

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

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

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

func (*HTTPClientSettings) GetHeadersOk

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

func (o *HTTPClientSettings) GetTls() TLS

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

func (*HTTPClientSettings) GetTlsOk

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

func (o *HTTPClientSettings) GetUrl() string

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

func (*HTTPClientSettings) GetUrlOk

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

func (o *HTTPClientSettings) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*HTTPClientSettings) HasHeaders

func (o *HTTPClientSettings) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*HTTPClientSettings) HasTls

func (o *HTTPClientSettings) HasTls() bool

HasTls returns a boolean if a field has been set.

func (*HTTPClientSettings) HasUrl

func (o *HTTPClientSettings) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (HTTPClientSettings) MarshalJSON

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

func (*HTTPClientSettings) SetAuth

func (o *HTTPClientSettings) SetAuth(v HTTPAuth)

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

func (*HTTPClientSettings) SetHeaders

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

func (o *HTTPClientSettings) SetTls(v TLS)

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

func (*HTTPClientSettings) SetUrl

func (o *HTTPClientSettings) SetUrl(v string)

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

func (HTTPClientSettings) ToMap

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

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

func (o *HTTPRequest) GetSslVerification() bool

GetSslVerification returns the SslVerification field value if set, zero value otherwise.

func (*HTTPRequest) GetSslVerificationOk

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

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

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

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

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

type KafkaAuthentication

type KafkaAuthentication struct {
	Type  *string        `json:"type,omitempty"`
	Plain *HTTPAuthBasic `json:"plain,omitempty"`
}

KafkaAuthentication struct for KafkaAuthentication

func NewKafkaAuthentication

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

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

func (o *KafkaAuthentication) GetPlain() HTTPAuthBasic

GetPlain returns the Plain field value if set, zero value otherwise.

func (*KafkaAuthentication) GetPlainOk

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

func (o *KafkaAuthentication) GetType() string

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

func (*KafkaAuthentication) GetTypeOk

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

func (o *KafkaAuthentication) HasPlain() bool

HasPlain returns a boolean if a field has been set.

func (*KafkaAuthentication) HasType

func (o *KafkaAuthentication) HasType() bool

HasType returns a boolean if a field has been set.

func (KafkaAuthentication) MarshalJSON

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

func (*KafkaAuthentication) SetPlain

func (o *KafkaAuthentication) SetPlain(v HTTPAuthBasic)

SetPlain gets a reference to the given HTTPAuthBasic and assigns it to the Plain field.

func (*KafkaAuthentication) SetType

func (o *KafkaAuthentication) SetType(v string)

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

func (KafkaAuthentication) ToMap

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

type KafkaMessageHeader

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

KafkaMessageHeader struct for KafkaMessageHeader

func NewKafkaMessageHeader

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

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

func (o *KafkaMessageHeader) GetKey() string

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

func (*KafkaMessageHeader) GetKeyOk

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

func (o *KafkaMessageHeader) GetValue() string

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

func (*KafkaMessageHeader) GetValueOk

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

func (o *KafkaMessageHeader) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*KafkaMessageHeader) HasValue

func (o *KafkaMessageHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (KafkaMessageHeader) MarshalJSON

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

func (*KafkaMessageHeader) SetKey

func (o *KafkaMessageHeader) SetKey(v string)

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

func (*KafkaMessageHeader) SetValue

func (o *KafkaMessageHeader) SetValue(v string)

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

func (KafkaMessageHeader) ToMap

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

type KafkaRequest

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

func NewKafkaRequest() *KafkaRequest

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

func NewKafkaRequestWithDefaults

func NewKafkaRequestWithDefaults() *KafkaRequest

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

func (*KafkaRequest) GetAuthentication

func (o *KafkaRequest) GetAuthentication() KafkaAuthentication

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

func (*KafkaRequest) GetAuthenticationOk

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

func (o *KafkaRequest) GetBrokerUrls() []string

GetBrokerUrls returns the BrokerUrls field value if set, zero value otherwise.

func (*KafkaRequest) GetBrokerUrlsOk

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

func (o *KafkaRequest) GetHeaders() []KafkaMessageHeader

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

func (*KafkaRequest) GetHeadersOk

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

func (o *KafkaRequest) GetMessageKey() string

GetMessageKey returns the MessageKey field value if set, zero value otherwise.

func (*KafkaRequest) GetMessageKeyOk

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

func (o *KafkaRequest) GetMessageValue() string

GetMessageValue returns the MessageValue field value if set, zero value otherwise.

func (*KafkaRequest) GetMessageValueOk

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

func (o *KafkaRequest) GetSslVerification() bool

GetSslVerification returns the SslVerification field value if set, zero value otherwise.

func (*KafkaRequest) GetSslVerificationOk

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

func (o *KafkaRequest) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise.

func (*KafkaRequest) GetTopicOk

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

func (o *KafkaRequest) HasAuthentication() bool

HasAuthentication returns a boolean if a field has been set.

func (*KafkaRequest) HasBrokerUrls

func (o *KafkaRequest) HasBrokerUrls() bool

HasBrokerUrls returns a boolean if a field has been set.

func (*KafkaRequest) HasHeaders

func (o *KafkaRequest) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*KafkaRequest) HasMessageKey

func (o *KafkaRequest) HasMessageKey() bool

HasMessageKey returns a boolean if a field has been set.

func (*KafkaRequest) HasMessageValue

func (o *KafkaRequest) HasMessageValue() bool

HasMessageValue returns a boolean if a field has been set.

func (*KafkaRequest) HasSslVerification

func (o *KafkaRequest) HasSslVerification() bool

HasSslVerification returns a boolean if a field has been set.

func (*KafkaRequest) HasTopic

func (o *KafkaRequest) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (KafkaRequest) MarshalJSON

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

func (*KafkaRequest) SetAuthentication

func (o *KafkaRequest) SetAuthentication(v KafkaAuthentication)

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

func (*KafkaRequest) SetBrokerUrls

func (o *KafkaRequest) SetBrokerUrls(v []string)

SetBrokerUrls gets a reference to the given []string and assigns it to the BrokerUrls field.

func (*KafkaRequest) SetHeaders

func (o *KafkaRequest) SetHeaders(v []KafkaMessageHeader)

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

func (*KafkaRequest) SetMessageKey

func (o *KafkaRequest) SetMessageKey(v string)

SetMessageKey gets a reference to the given string and assigns it to the MessageKey field.

func (*KafkaRequest) SetMessageValue

func (o *KafkaRequest) SetMessageValue(v string)

SetMessageValue gets a reference to the given string and assigns it to the MessageValue field.

func (*KafkaRequest) SetSslVerification

func (o *KafkaRequest) SetSslVerification(v bool)

SetSslVerification gets a reference to the given bool and assigns it to the SslVerification field.

func (*KafkaRequest) SetTopic

func (o *KafkaRequest) SetTopic(v string)

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (KafkaRequest) ToMap

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

type KafkaResponse

type KafkaResponse struct {
	Partition *string `json:"partition,omitempty"`
	Offset    *string `json:"offset,omitempty"`
}

KafkaResponse struct for KafkaResponse

func NewKafkaResponse

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

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

func (o *KafkaResponse) GetOffset() string

GetOffset returns the Offset field value if set, zero value otherwise.

func (*KafkaResponse) GetOffsetOk

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

func (o *KafkaResponse) GetPartition() string

GetPartition returns the Partition field value if set, zero value otherwise.

func (*KafkaResponse) GetPartitionOk

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

func (o *KafkaResponse) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*KafkaResponse) HasPartition

func (o *KafkaResponse) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (KafkaResponse) MarshalJSON

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

func (*KafkaResponse) SetOffset

func (o *KafkaResponse) SetOffset(v string)

SetOffset gets a reference to the given string and assigns it to the Offset field.

func (*KafkaResponse) SetPartition

func (o *KafkaResponse) SetPartition(v string)

SetPartition gets a reference to the given string and assigns it to the Partition field.

func (KafkaResponse) ToMap

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

type LinterResource

type LinterResource struct {
	Type *string             `json:"type,omitempty"`
	Spec *LinterResourceSpec `json:"spec,omitempty"`
}

LinterResource struct for LinterResource

func NewLinterResource

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

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

func (o *LinterResource) GetSpec() LinterResourceSpec

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

func (*LinterResource) GetSpecOk

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

func (o *LinterResource) GetType() string

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

func (*LinterResource) GetTypeOk

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

func (o *LinterResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*LinterResource) HasType

func (o *LinterResource) HasType() bool

HasType returns a boolean if a field has been set.

func (LinterResource) MarshalJSON

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

func (*LinterResource) SetSpec

func (o *LinterResource) SetSpec(v LinterResourceSpec)

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

func (*LinterResource) SetType

func (o *LinterResource) SetType(v string)

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

func (LinterResource) ToMap

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

type LinterResourceList

type LinterResourceList struct {
	Items []LinterResource `json:"items,omitempty"`
}

LinterResourceList struct for LinterResourceList

func NewLinterResourceList

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

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

func (o *LinterResourceList) GetItems() []LinterResource

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

func (*LinterResourceList) GetItemsOk

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

func (o *LinterResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (LinterResourceList) MarshalJSON

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

func (*LinterResourceList) SetItems

func (o *LinterResourceList) SetItems(v []LinterResource)

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

func (LinterResourceList) ToMap

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

type LinterResourcePlugin

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

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

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

func (o *LinterResourcePlugin) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*LinterResourcePlugin) GetDescriptionOk

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

func (o *LinterResourcePlugin) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*LinterResourcePlugin) GetEnabledOk

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

func (o *LinterResourcePlugin) GetId() string

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

func (*LinterResourcePlugin) GetIdOk

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

func (o *LinterResourcePlugin) GetName() string

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

func (*LinterResourcePlugin) GetNameOk

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

func (o *LinterResourcePlugin) GetRules() []LinterResourceRule

GetRules returns the Rules field value if set, zero value otherwise.

func (*LinterResourcePlugin) GetRulesOk

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

func (o *LinterResourcePlugin) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasEnabled

func (o *LinterResourcePlugin) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasId

func (o *LinterResourcePlugin) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasName

func (o *LinterResourcePlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourcePlugin) HasRules

func (o *LinterResourcePlugin) HasRules() bool

HasRules returns a boolean if a field has been set.

func (LinterResourcePlugin) MarshalJSON

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

func (*LinterResourcePlugin) SetDescription

func (o *LinterResourcePlugin) SetDescription(v string)

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

func (*LinterResourcePlugin) SetEnabled

func (o *LinterResourcePlugin) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*LinterResourcePlugin) SetId

func (o *LinterResourcePlugin) SetId(v string)

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

func (*LinterResourcePlugin) SetName

func (o *LinterResourcePlugin) SetName(v string)

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

func (*LinterResourcePlugin) SetRules

func (o *LinterResourcePlugin) SetRules(v []LinterResourceRule)

SetRules gets a reference to the given []LinterResourceRule and assigns it to the Rules field.

func (LinterResourcePlugin) ToMap

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

type LinterResourceRule

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

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

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

func (o *LinterResourceRule) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*LinterResourceRule) GetDescriptionOk

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

func (o *LinterResourceRule) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*LinterResourceRule) GetErrorDescriptionOk

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

func (o *LinterResourceRule) GetErrorLevel() string

GetErrorLevel returns the ErrorLevel field value if set, zero value otherwise.

func (*LinterResourceRule) GetErrorLevelOk

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

func (o *LinterResourceRule) GetId() string

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

func (*LinterResourceRule) GetIdOk

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

func (o *LinterResourceRule) GetName() string

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

func (*LinterResourceRule) GetNameOk

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

func (o *LinterResourceRule) GetTips() []string

GetTips returns the Tips field value if set, zero value otherwise.

func (*LinterResourceRule) GetTipsOk

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

func (o *LinterResourceRule) GetWeight() int32

GetWeight returns the Weight field value if set, zero value otherwise.

func (*LinterResourceRule) GetWeightOk

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

func (o *LinterResourceRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResourceRule) HasErrorDescription

func (o *LinterResourceRule) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*LinterResourceRule) HasErrorLevel

func (o *LinterResourceRule) HasErrorLevel() bool

HasErrorLevel returns a boolean if a field has been set.

func (*LinterResourceRule) HasId

func (o *LinterResourceRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourceRule) HasName

func (o *LinterResourceRule) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourceRule) HasTips

func (o *LinterResourceRule) HasTips() bool

HasTips returns a boolean if a field has been set.

func (*LinterResourceRule) HasWeight

func (o *LinterResourceRule) HasWeight() bool

HasWeight returns a boolean if a field has been set.

func (LinterResourceRule) MarshalJSON

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

func (*LinterResourceRule) SetDescription

func (o *LinterResourceRule) SetDescription(v string)

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

func (*LinterResourceRule) SetErrorDescription

func (o *LinterResourceRule) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*LinterResourceRule) SetErrorLevel

func (o *LinterResourceRule) SetErrorLevel(v string)

SetErrorLevel gets a reference to the given string and assigns it to the ErrorLevel field.

func (*LinterResourceRule) SetId

func (o *LinterResourceRule) SetId(v string)

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

func (*LinterResourceRule) SetName

func (o *LinterResourceRule) SetName(v string)

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

func (*LinterResourceRule) SetTips

func (o *LinterResourceRule) SetTips(v []string)

SetTips gets a reference to the given []string and assigns it to the Tips field.

func (*LinterResourceRule) SetWeight

func (o *LinterResourceRule) SetWeight(v int32)

SetWeight gets a reference to the given int32 and assigns it to the Weight field.

func (LinterResourceRule) ToMap

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

type LinterResourceSpec

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

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

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

func (o *LinterResourceSpec) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*LinterResourceSpec) GetEnabledOk

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

func (o *LinterResourceSpec) GetId() string

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

func (*LinterResourceSpec) GetIdOk

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

func (o *LinterResourceSpec) GetMinimumScore() int32

GetMinimumScore returns the MinimumScore field value if set, zero value otherwise.

func (*LinterResourceSpec) GetMinimumScoreOk

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

func (o *LinterResourceSpec) GetName() string

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

func (*LinterResourceSpec) GetNameOk

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

func (o *LinterResourceSpec) GetPlugins() []LinterResourcePlugin

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*LinterResourceSpec) GetPluginsOk

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

func (o *LinterResourceSpec) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*LinterResourceSpec) HasId

func (o *LinterResourceSpec) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResourceSpec) HasMinimumScore

func (o *LinterResourceSpec) HasMinimumScore() bool

HasMinimumScore returns a boolean if a field has been set.

func (*LinterResourceSpec) HasName

func (o *LinterResourceSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResourceSpec) HasPlugins

func (o *LinterResourceSpec) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (LinterResourceSpec) MarshalJSON

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

func (*LinterResourceSpec) SetEnabled

func (o *LinterResourceSpec) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*LinterResourceSpec) SetId

func (o *LinterResourceSpec) SetId(v string)

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

func (*LinterResourceSpec) SetMinimumScore

func (o *LinterResourceSpec) SetMinimumScore(v int32)

SetMinimumScore gets a reference to the given int32 and assigns it to the MinimumScore field.

func (*LinterResourceSpec) SetName

func (o *LinterResourceSpec) SetName(v string)

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

func (*LinterResourceSpec) SetPlugins

func (o *LinterResourceSpec) SetPlugins(v []LinterResourcePlugin)

SetPlugins gets a reference to the given []LinterResourcePlugin and assigns it to the Plugins field.

func (LinterResourceSpec) ToMap

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

type LinterResult

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

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

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

func (o *LinterResult) GetMinimumScore() int32

GetMinimumScore returns the MinimumScore field value if set, zero value otherwise.

func (*LinterResult) GetMinimumScoreOk

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

func (o *LinterResult) GetPassed() bool

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

func (*LinterResult) GetPassedOk

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

func (o *LinterResult) GetPlugins() []LinterResultPlugin

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*LinterResult) GetPluginsOk

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

func (o *LinterResult) GetScore() int32

GetScore returns the Score field value if set, zero value otherwise.

func (*LinterResult) GetScoreOk

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

func (o *LinterResult) HasMinimumScore() bool

HasMinimumScore returns a boolean if a field has been set.

func (*LinterResult) HasPassed

func (o *LinterResult) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResult) HasPlugins

func (o *LinterResult) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (*LinterResult) HasScore

func (o *LinterResult) HasScore() bool

HasScore returns a boolean if a field has been set.

func (LinterResult) MarshalJSON

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

func (*LinterResult) SetMinimumScore

func (o *LinterResult) SetMinimumScore(v int32)

SetMinimumScore gets a reference to the given int32 and assigns it to the MinimumScore field.

func (*LinterResult) SetPassed

func (o *LinterResult) SetPassed(v bool)

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

func (*LinterResult) SetPlugins

func (o *LinterResult) SetPlugins(v []LinterResultPlugin)

SetPlugins gets a reference to the given []LinterResultPlugin and assigns it to the Plugins field.

func (*LinterResult) SetScore

func (o *LinterResult) SetScore(v int32)

SetScore gets a reference to the given int32 and assigns it to the Score field.

func (LinterResult) ToMap

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

type LinterResultPlugin

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

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

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

func (o *LinterResultPlugin) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*LinterResultPlugin) GetDescriptionOk

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

func (o *LinterResultPlugin) GetName() string

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

func (*LinterResultPlugin) GetNameOk

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

func (o *LinterResultPlugin) GetPassed() bool

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

func (*LinterResultPlugin) GetPassedOk

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

GetRules returns the Rules field value if set, zero value otherwise.

func (*LinterResultPlugin) GetRulesOk

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

func (o *LinterResultPlugin) GetScore() int32

GetScore returns the Score field value if set, zero value otherwise.

func (*LinterResultPlugin) GetScoreOk

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

func (o *LinterResultPlugin) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPlugin) HasName

func (o *LinterResultPlugin) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResultPlugin) HasPassed

func (o *LinterResultPlugin) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPlugin) HasRules

func (o *LinterResultPlugin) HasRules() bool

HasRules returns a boolean if a field has been set.

func (*LinterResultPlugin) HasScore

func (o *LinterResultPlugin) HasScore() bool

HasScore returns a boolean if a field has been set.

func (LinterResultPlugin) MarshalJSON

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

func (*LinterResultPlugin) SetDescription

func (o *LinterResultPlugin) SetDescription(v string)

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

func (*LinterResultPlugin) SetName

func (o *LinterResultPlugin) SetName(v string)

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

func (*LinterResultPlugin) SetPassed

func (o *LinterResultPlugin) SetPassed(v bool)

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

func (*LinterResultPlugin) SetRules

func (o *LinterResultPlugin) SetRules(v []LinterResultPluginRule)

SetRules gets a reference to the given []LinterResultPluginRule and assigns it to the Rules field.

func (*LinterResultPlugin) SetScore

func (o *LinterResultPlugin) SetScore(v int32)

SetScore gets a reference to the given int32 and assigns it to the Score field.

func (LinterResultPlugin) ToMap

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

type LinterResultPluginRule

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

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

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

func (o *LinterResultPluginRule) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetDescriptionOk

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

func (o *LinterResultPluginRule) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetErrorDescriptionOk

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

func (o *LinterResultPluginRule) GetId() string

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

func (*LinterResultPluginRule) GetIdOk

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

func (o *LinterResultPluginRule) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetLevelOk

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

func (o *LinterResultPluginRule) GetName() string

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

func (*LinterResultPluginRule) GetNameOk

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

func (o *LinterResultPluginRule) GetPassed() bool

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

func (*LinterResultPluginRule) GetPassedOk

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

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

func (*LinterResultPluginRule) GetResultsOk

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

func (*LinterResultPluginRule) GetTips

func (o *LinterResultPluginRule) GetTips() []string

GetTips returns the Tips field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetTipsOk

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

func (o *LinterResultPluginRule) GetWeight() int32

GetWeight returns the Weight field value if set, zero value otherwise.

func (*LinterResultPluginRule) GetWeightOk

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

func (o *LinterResultPluginRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasErrorDescription

func (o *LinterResultPluginRule) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasId

func (o *LinterResultPluginRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasLevel

func (o *LinterResultPluginRule) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasName

func (o *LinterResultPluginRule) HasName() bool

HasName returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasPassed

func (o *LinterResultPluginRule) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasResults

func (o *LinterResultPluginRule) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasTips

func (o *LinterResultPluginRule) HasTips() bool

HasTips returns a boolean if a field has been set.

func (*LinterResultPluginRule) HasWeight

func (o *LinterResultPluginRule) HasWeight() bool

HasWeight returns a boolean if a field has been set.

func (LinterResultPluginRule) MarshalJSON

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

func (*LinterResultPluginRule) SetDescription

func (o *LinterResultPluginRule) SetDescription(v string)

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

func (*LinterResultPluginRule) SetErrorDescription

func (o *LinterResultPluginRule) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*LinterResultPluginRule) SetId

func (o *LinterResultPluginRule) SetId(v string)

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

func (*LinterResultPluginRule) SetLevel

func (o *LinterResultPluginRule) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*LinterResultPluginRule) SetName

func (o *LinterResultPluginRule) SetName(v string)

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

func (*LinterResultPluginRule) SetPassed

func (o *LinterResultPluginRule) SetPassed(v bool)

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

func (*LinterResultPluginRule) SetResults

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

func (*LinterResultPluginRule) SetTips

func (o *LinterResultPluginRule) SetTips(v []string)

SetTips gets a reference to the given []string and assigns it to the Tips field.

func (*LinterResultPluginRule) SetWeight

func (o *LinterResultPluginRule) SetWeight(v int32)

SetWeight gets a reference to the given int32 and assigns it to the Weight field.

func (LinterResultPluginRule) ToMap

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

type LinterResultPluginRuleResult

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

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

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

GetErrors returns the Errors field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetErrorsOk

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

func (o *LinterResultPluginRuleResult) GetPassed() bool

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

func (*LinterResultPluginRuleResult) GetPassedOk

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

func (o *LinterResultPluginRuleResult) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*LinterResultPluginRuleResult) GetSeverityOk

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

func (o *LinterResultPluginRuleResult) GetSpanId() string

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

func (*LinterResultPluginRuleResult) GetSpanIdOk

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

func (o *LinterResultPluginRuleResult) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasPassed

func (o *LinterResultPluginRuleResult) HasPassed() bool

HasPassed returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasSeverity

func (o *LinterResultPluginRuleResult) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*LinterResultPluginRuleResult) HasSpanId

func (o *LinterResultPluginRuleResult) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (LinterResultPluginRuleResult) MarshalJSON

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

func (*LinterResultPluginRuleResult) SetErrors

SetErrors gets a reference to the given []LinterResultPluginRuleResultError and assigns it to the Errors field.

func (*LinterResultPluginRuleResult) SetPassed

func (o *LinterResultPluginRuleResult) SetPassed(v bool)

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

func (*LinterResultPluginRuleResult) SetSeverity

func (o *LinterResultPluginRuleResult) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*LinterResultPluginRuleResult) SetSpanId

func (o *LinterResultPluginRuleResult) SetSpanId(v string)

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

func (LinterResultPluginRuleResult) ToMap

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

type LinterResultPluginRuleResultError

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

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

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

func (o *LinterResultPluginRuleResultError) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*LinterResultPluginRuleResultError) GetDescriptionOk

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

func (o *LinterResultPluginRuleResultError) GetExpected() string

GetExpected returns the Expected field value if set, zero value otherwise.

func (*LinterResultPluginRuleResultError) GetExpectedOk

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

func (o *LinterResultPluginRuleResultError) GetSuggestions() []string

GetSuggestions returns the Suggestions field value if set, zero value otherwise.

func (*LinterResultPluginRuleResultError) GetSuggestionsOk

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

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

func (*LinterResultPluginRuleResultError) GetValueOk

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

func (o *LinterResultPluginRuleResultError) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasExpected

func (o *LinterResultPluginRuleResultError) HasExpected() bool

HasExpected returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasSuggestions

func (o *LinterResultPluginRuleResultError) HasSuggestions() bool

HasSuggestions returns a boolean if a field has been set.

func (*LinterResultPluginRuleResultError) HasValue

HasValue returns a boolean if a field has been set.

func (LinterResultPluginRuleResultError) MarshalJSON

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

func (*LinterResultPluginRuleResultError) SetDescription

func (o *LinterResultPluginRuleResultError) SetDescription(v string)

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

func (*LinterResultPluginRuleResultError) SetExpected

func (o *LinterResultPluginRuleResultError) SetExpected(v string)

SetExpected gets a reference to the given string and assigns it to the Expected field.

func (*LinterResultPluginRuleResultError) SetSuggestions

func (o *LinterResultPluginRuleResultError) SetSuggestions(v []string)

SetSuggestions gets a reference to the given []string and assigns it to the Suggestions field.

func (*LinterResultPluginRuleResultError) SetValue

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

func (LinterResultPluginRuleResultError) ToMap

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

type ListDemos200Response

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

ListDemos200Response struct for ListDemos200Response

func NewListDemos200Response

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

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

func (o *ListDemos200Response) GetCount() int32

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

func (*ListDemos200Response) GetCountOk

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

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

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

func (*ListDemos200Response) GetItemsOk

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

func (o *ListDemos200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListDemos200Response) HasItems

func (o *ListDemos200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListDemos200Response) MarshalJSON

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

func (*ListDemos200Response) SetCount

func (o *ListDemos200Response) SetCount(v int32)

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

func (*ListDemos200Response) SetItems

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

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

func (ListDemos200Response) ToMap

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

type ListVariableSets200Response

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

ListVariableSets200Response struct for ListVariableSets200Response

func NewListVariableSets200Response

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

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

func (o *ListVariableSets200Response) GetCount() int32

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

func (*ListVariableSets200Response) GetCountOk

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

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

func (*ListVariableSets200Response) GetItemsOk

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

func (o *ListVariableSets200Response) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListVariableSets200Response) HasItems

func (o *ListVariableSets200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ListVariableSets200Response) MarshalJSON

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

func (*ListVariableSets200Response) SetCount

func (o *ListVariableSets200Response) SetCount(v int32)

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

func (*ListVariableSets200Response) SetItems

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

func (ListVariableSets200Response) ToMap

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

type MappedNullable

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

type MissingVariable

type MissingVariable struct {
	TestId    *string    `json:"testId,omitempty"`
	Variables []Variable `json:"variables,omitempty"`
}

MissingVariable struct for MissingVariable

func NewMissingVariable

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

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

func (o *MissingVariable) GetTestId() string

GetTestId returns the TestId field value if set, zero value otherwise.

func (*MissingVariable) GetTestIdOk

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

func (o *MissingVariable) GetVariables() []Variable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*MissingVariable) GetVariablesOk

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

func (o *MissingVariable) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*MissingVariable) HasVariables

func (o *MissingVariable) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (MissingVariable) MarshalJSON

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

func (*MissingVariable) SetTestId

func (o *MissingVariable) SetTestId(v string)

SetTestId gets a reference to the given string and assigns it to the TestId field.

func (*MissingVariable) SetVariables

func (o *MissingVariable) SetVariables(v []Variable)

SetVariables gets a reference to the given []Variable and assigns it to the Variables field.

func (MissingVariable) ToMap

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

type MissingVariablesError

type MissingVariablesError struct {
	MissingVariables []MissingVariable `json:"missingVariables,omitempty"`
}

MissingVariablesError struct for MissingVariablesError

func NewMissingVariablesError

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

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

func (o *MissingVariablesError) GetMissingVariables() []MissingVariable

GetMissingVariables returns the MissingVariables field value if set, zero value otherwise.

func (*MissingVariablesError) GetMissingVariablesOk

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

func (o *MissingVariablesError) HasMissingVariables() bool

HasMissingVariables returns a boolean if a field has been set.

func (MissingVariablesError) MarshalJSON

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

func (*MissingVariablesError) SetMissingVariables

func (o *MissingVariablesError) SetMissingVariables(v []MissingVariable)

SetMissingVariables gets a reference to the given []MissingVariable and assigns it to the MissingVariables field.

func (MissingVariablesError) ToMap

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

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

func (NullableAssertionResultsResultsInner) Get

func (NullableAssertionResultsResultsInner) IsSet

func (NullableAssertionResultsResultsInner) MarshalJSON

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

func (*NullableAssertionResultsResultsInner) Set

func (*NullableAssertionResultsResultsInner) UnmarshalJSON

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

func (*NullableAssertionResultsResultsInner) Unset

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

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

func NewNullableAwsXRay

func NewNullableAwsXRay(val *AwsXRay) *NullableAwsXRay

func (NullableAwsXRay) Get

func (v NullableAwsXRay) Get() *AwsXRay

func (NullableAwsXRay) IsSet

func (v NullableAwsXRay) IsSet() bool

func (NullableAwsXRay) MarshalJSON

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

func (*NullableAwsXRay) Set

func (v *NullableAwsXRay) Set(val *AwsXRay)

func (*NullableAwsXRay) UnmarshalJSON

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

func (*NullableAwsXRay) Unset

func (v *NullableAwsXRay) Unset()

type NullableAzureAppInsights

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

func NewNullableAzureAppInsights

func NewNullableAzureAppInsights(val *AzureAppInsights) *NullableAzureAppInsights

func (NullableAzureAppInsights) Get

func (NullableAzureAppInsights) IsSet

func (v NullableAzureAppInsights) IsSet() bool

func (NullableAzureAppInsights) MarshalJSON

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

func (*NullableAzureAppInsights) Set

func (*NullableAzureAppInsights) UnmarshalJSON

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

func (*NullableAzureAppInsights) Unset

func (v *NullableAzureAppInsights) Unset()

type NullableBaseClient

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

func NewNullableBaseClient

func NewNullableBaseClient(val *BaseClient) *NullableBaseClient

func (NullableBaseClient) Get

func (v NullableBaseClient) Get() *BaseClient

func (NullableBaseClient) IsSet

func (v NullableBaseClient) IsSet() bool

func (NullableBaseClient) MarshalJSON

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

func (*NullableBaseClient) Set

func (v *NullableBaseClient) Set(val *BaseClient)

func (*NullableBaseClient) UnmarshalJSON

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

func (*NullableBaseClient) Unset

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

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

func (NullableConfigurationResource) Get

func (NullableConfigurationResource) IsSet

func (NullableConfigurationResource) MarshalJSON

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

func (*NullableConfigurationResource) Set

func (*NullableConfigurationResource) UnmarshalJSON

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

func (*NullableConfigurationResource) Unset

func (v *NullableConfigurationResource) Unset()

type NullableConfigurationResourceList

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

func (NullableConfigurationResourceList) Get

func (NullableConfigurationResourceList) IsSet

func (NullableConfigurationResourceList) MarshalJSON

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

func (*NullableConfigurationResourceList) Set

func (*NullableConfigurationResourceList) UnmarshalJSON

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

func (*NullableConfigurationResourceList) Unset

type NullableConfigurationResourceSpec

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

func (NullableConfigurationResourceSpec) Get

func (NullableConfigurationResourceSpec) IsSet

func (NullableConfigurationResourceSpec) MarshalJSON

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

func (*NullableConfigurationResourceSpec) Set

func (*NullableConfigurationResourceSpec) UnmarshalJSON

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

func (*NullableConfigurationResourceSpec) Unset

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

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

func NewNullableDataStoreList

func NewNullableDataStoreList(val *DataStoreList) *NullableDataStoreList

func (NullableDataStoreList) Get

func (NullableDataStoreList) IsSet

func (v NullableDataStoreList) IsSet() bool

func (NullableDataStoreList) MarshalJSON

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

func (*NullableDataStoreList) Set

func (v *NullableDataStoreList) Set(val *DataStoreList)

func (*NullableDataStoreList) UnmarshalJSON

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

func (*NullableDataStoreList) Unset

func (v *NullableDataStoreList) Unset()

type NullableDataStoreResource

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

func NewNullableDataStoreResource

func NewNullableDataStoreResource(val *DataStoreResource) *NullableDataStoreResource

func (NullableDataStoreResource) Get

func (NullableDataStoreResource) IsSet

func (v NullableDataStoreResource) IsSet() bool

func (NullableDataStoreResource) MarshalJSON

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

func (*NullableDataStoreResource) Set

func (*NullableDataStoreResource) UnmarshalJSON

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

func (*NullableDataStoreResource) Unset

func (v *NullableDataStoreResource) Unset()

type NullableDemo

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

func NewNullableDemo

func NewNullableDemo(val *Demo) *NullableDemo

func (NullableDemo) Get

func (v NullableDemo) Get() *Demo

func (NullableDemo) IsSet

func (v NullableDemo) IsSet() bool

func (NullableDemo) MarshalJSON

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

func (*NullableDemo) Set

func (v *NullableDemo) Set(val *Demo)

func (*NullableDemo) UnmarshalJSON

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

func (*NullableDemo) Unset

func (v *NullableDemo) Unset()

type NullableDemoList

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

func NewNullableDemoList

func NewNullableDemoList(val *DemoList) *NullableDemoList

func (NullableDemoList) Get

func (v NullableDemoList) Get() *DemoList

func (NullableDemoList) IsSet

func (v NullableDemoList) IsSet() bool

func (NullableDemoList) MarshalJSON

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

func (*NullableDemoList) Set

func (v *NullableDemoList) Set(val *DemoList)

func (*NullableDemoList) UnmarshalJSON

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

func (*NullableDemoList) Unset

func (v *NullableDemoList) Unset()

type NullableDemoOpenTelemetryStore

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

func (NullableDemoOpenTelemetryStore) Get

func (NullableDemoOpenTelemetryStore) IsSet

func (NullableDemoOpenTelemetryStore) MarshalJSON

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

func (*NullableDemoOpenTelemetryStore) Set

func (*NullableDemoOpenTelemetryStore) UnmarshalJSON

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

func (*NullableDemoOpenTelemetryStore) Unset

func (v *NullableDemoOpenTelemetryStore) Unset()

type NullableDemoPokeshop

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

func NewNullableDemoPokeshop

func NewNullableDemoPokeshop(val *DemoPokeshop) *NullableDemoPokeshop

func (NullableDemoPokeshop) Get

func (NullableDemoPokeshop) IsSet

func (v NullableDemoPokeshop) IsSet() bool

func (NullableDemoPokeshop) MarshalJSON

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

func (*NullableDemoPokeshop) Set

func (v *NullableDemoPokeshop) Set(val *DemoPokeshop)

func (*NullableDemoPokeshop) UnmarshalJSON

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

func (*NullableDemoPokeshop) Unset

func (v *NullableDemoPokeshop) Unset()

type NullableDemoSpec

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

func NewNullableDemoSpec

func NewNullableDemoSpec(val *DemoSpec) *NullableDemoSpec

func (NullableDemoSpec) Get

func (v NullableDemoSpec) Get() *DemoSpec

func (NullableDemoSpec) IsSet

func (v NullableDemoSpec) IsSet() bool

func (NullableDemoSpec) MarshalJSON

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

func (*NullableDemoSpec) Set

func (v *NullableDemoSpec) Set(val *DemoSpec)

func (*NullableDemoSpec) UnmarshalJSON

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

func (*NullableDemoSpec) Unset

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

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

func (NullableGetTestSuites200Response) Get

func (NullableGetTestSuites200Response) IsSet

func (NullableGetTestSuites200Response) MarshalJSON

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

func (*NullableGetTestSuites200Response) Set

func (*NullableGetTestSuites200Response) UnmarshalJSON

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

func (*NullableGetTestSuites200Response) Unset

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

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

func NewNullableHTTPClientSettings

func NewNullableHTTPClientSettings(val *HTTPClientSettings) *NullableHTTPClientSettings

func (NullableHTTPClientSettings) Get

func (NullableHTTPClientSettings) IsSet

func (v NullableHTTPClientSettings) IsSet() bool

func (NullableHTTPClientSettings) MarshalJSON

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

func (*NullableHTTPClientSettings) Set

func (*NullableHTTPClientSettings) UnmarshalJSON

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

func (*NullableHTTPClientSettings) Unset

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

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

func NewNullableKafkaAuthentication

func NewNullableKafkaAuthentication(val *KafkaAuthentication) *NullableKafkaAuthentication

func (NullableKafkaAuthentication) Get

func (NullableKafkaAuthentication) IsSet

func (NullableKafkaAuthentication) MarshalJSON

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

func (*NullableKafkaAuthentication) Set

func (*NullableKafkaAuthentication) UnmarshalJSON

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

func (*NullableKafkaAuthentication) Unset

func (v *NullableKafkaAuthentication) Unset()

type NullableKafkaMessageHeader

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

func NewNullableKafkaMessageHeader

func NewNullableKafkaMessageHeader(val *KafkaMessageHeader) *NullableKafkaMessageHeader

func (NullableKafkaMessageHeader) Get

func (NullableKafkaMessageHeader) IsSet

func (v NullableKafkaMessageHeader) IsSet() bool

func (NullableKafkaMessageHeader) MarshalJSON

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

func (*NullableKafkaMessageHeader) Set

func (*NullableKafkaMessageHeader) UnmarshalJSON

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

func (*NullableKafkaMessageHeader) Unset

func (v *NullableKafkaMessageHeader) Unset()

type NullableKafkaRequest

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

func NewNullableKafkaRequest

func NewNullableKafkaRequest(val *KafkaRequest) *NullableKafkaRequest

func (NullableKafkaRequest) Get

func (NullableKafkaRequest) IsSet

func (v NullableKafkaRequest) IsSet() bool

func (NullableKafkaRequest) MarshalJSON

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

func (*NullableKafkaRequest) Set

func (v *NullableKafkaRequest) Set(val *KafkaRequest)

func (*NullableKafkaRequest) UnmarshalJSON

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

func (*NullableKafkaRequest) Unset

func (v *NullableKafkaRequest) Unset()

type NullableKafkaResponse

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

func NewNullableKafkaResponse

func NewNullableKafkaResponse(val *KafkaResponse) *NullableKafkaResponse

func (NullableKafkaResponse) Get

func (NullableKafkaResponse) IsSet

func (v NullableKafkaResponse) IsSet() bool

func (NullableKafkaResponse) MarshalJSON

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

func (*NullableKafkaResponse) Set

func (v *NullableKafkaResponse) Set(val *KafkaResponse)

func (*NullableKafkaResponse) UnmarshalJSON

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

func (*NullableKafkaResponse) Unset

func (v *NullableKafkaResponse) Unset()

type NullableLinterResource

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

func NewNullableLinterResource

func NewNullableLinterResource(val *LinterResource) *NullableLinterResource

func (NullableLinterResource) Get

func (NullableLinterResource) IsSet

func (v NullableLinterResource) IsSet() bool

func (NullableLinterResource) MarshalJSON

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

func (*NullableLinterResource) Set

func (*NullableLinterResource) UnmarshalJSON

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

func (*NullableLinterResource) Unset

func (v *NullableLinterResource) Unset()

type NullableLinterResourceList

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

func NewNullableLinterResourceList

func NewNullableLinterResourceList(val *LinterResourceList) *NullableLinterResourceList

func (NullableLinterResourceList) Get

func (NullableLinterResourceList) IsSet

func (v NullableLinterResourceList) IsSet() bool

func (NullableLinterResourceList) MarshalJSON

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

func (*NullableLinterResourceList) Set

func (*NullableLinterResourceList) UnmarshalJSON

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

func (*NullableLinterResourceList) Unset

func (v *NullableLinterResourceList) Unset()

type NullableLinterResourcePlugin

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

func NewNullableLinterResourcePlugin

func NewNullableLinterResourcePlugin(val *LinterResourcePlugin) *NullableLinterResourcePlugin

func (NullableLinterResourcePlugin) Get

func (NullableLinterResourcePlugin) IsSet

func (NullableLinterResourcePlugin) MarshalJSON

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

func (*NullableLinterResourcePlugin) Set

func (*NullableLinterResourcePlugin) UnmarshalJSON

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

func (*NullableLinterResourcePlugin) Unset

func (v *NullableLinterResourcePlugin) Unset()

type NullableLinterResourceRule

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

func NewNullableLinterResourceRule

func NewNullableLinterResourceRule(val *LinterResourceRule) *NullableLinterResourceRule

func (NullableLinterResourceRule) Get

func (NullableLinterResourceRule) IsSet

func (v NullableLinterResourceRule) IsSet() bool

func (NullableLinterResourceRule) MarshalJSON

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

func (*NullableLinterResourceRule) Set

func (*NullableLinterResourceRule) UnmarshalJSON

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

func (*NullableLinterResourceRule) Unset

func (v *NullableLinterResourceRule) Unset()

type NullableLinterResourceSpec

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

func NewNullableLinterResourceSpec

func NewNullableLinterResourceSpec(val *LinterResourceSpec) *NullableLinterResourceSpec

func (NullableLinterResourceSpec) Get

func (NullableLinterResourceSpec) IsSet

func (v NullableLinterResourceSpec) IsSet() bool

func (NullableLinterResourceSpec) MarshalJSON

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

func (*NullableLinterResourceSpec) Set

func (*NullableLinterResourceSpec) UnmarshalJSON

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

func (*NullableLinterResourceSpec) Unset

func (v *NullableLinterResourceSpec) Unset()

type NullableLinterResult

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

func NewNullableLinterResult

func NewNullableLinterResult(val *LinterResult) *NullableLinterResult

func (NullableLinterResult) Get

func (NullableLinterResult) IsSet

func (v NullableLinterResult) IsSet() bool

func (NullableLinterResult) MarshalJSON

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

func (*NullableLinterResult) Set

func (v *NullableLinterResult) Set(val *LinterResult)

func (*NullableLinterResult) UnmarshalJSON

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

func (*NullableLinterResult) Unset

func (v *NullableLinterResult) Unset()

type NullableLinterResultPlugin

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

func NewNullableLinterResultPlugin

func NewNullableLinterResultPlugin(val *LinterResultPlugin) *NullableLinterResultPlugin

func (NullableLinterResultPlugin) Get

func (NullableLinterResultPlugin) IsSet

func (v NullableLinterResultPlugin) IsSet() bool

func (NullableLinterResultPlugin) MarshalJSON

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

func (*NullableLinterResultPlugin) Set

func (*NullableLinterResultPlugin) UnmarshalJSON

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

func (*NullableLinterResultPlugin) Unset

func (v *NullableLinterResultPlugin) Unset()

type NullableLinterResultPluginRule

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

func (NullableLinterResultPluginRule) Get

func (NullableLinterResultPluginRule) IsSet

func (NullableLinterResultPluginRule) MarshalJSON

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

func (*NullableLinterResultPluginRule) Set

func (*NullableLinterResultPluginRule) UnmarshalJSON

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

func (*NullableLinterResultPluginRule) Unset

func (v *NullableLinterResultPluginRule) Unset()

type NullableLinterResultPluginRuleResult

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

func (NullableLinterResultPluginRuleResult) Get

func (NullableLinterResultPluginRuleResult) IsSet

func (NullableLinterResultPluginRuleResult) MarshalJSON

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

func (*NullableLinterResultPluginRuleResult) Set

func (*NullableLinterResultPluginRuleResult) UnmarshalJSON

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

func (*NullableLinterResultPluginRuleResult) Unset

type NullableLinterResultPluginRuleResultError

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

func (NullableLinterResultPluginRuleResultError) Get

func (NullableLinterResultPluginRuleResultError) IsSet

func (NullableLinterResultPluginRuleResultError) MarshalJSON

func (*NullableLinterResultPluginRuleResultError) Set

func (*NullableLinterResultPluginRuleResultError) UnmarshalJSON

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

func (*NullableLinterResultPluginRuleResultError) Unset

type NullableListDemos200Response

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

func NewNullableListDemos200Response

func NewNullableListDemos200Response(val *ListDemos200Response) *NullableListDemos200Response

func (NullableListDemos200Response) Get

func (NullableListDemos200Response) IsSet

func (NullableListDemos200Response) MarshalJSON

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

func (*NullableListDemos200Response) Set

func (*NullableListDemos200Response) UnmarshalJSON

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

func (*NullableListDemos200Response) Unset

func (v *NullableListDemos200Response) Unset()

type NullableListVariableSets200Response

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

func (NullableListVariableSets200Response) Get

func (NullableListVariableSets200Response) IsSet

func (NullableListVariableSets200Response) MarshalJSON

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

func (*NullableListVariableSets200Response) Set

func (*NullableListVariableSets200Response) UnmarshalJSON

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

func (*NullableListVariableSets200Response) Unset

type NullableMissingVariable

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

func NewNullableMissingVariable

func NewNullableMissingVariable(val *MissingVariable) *NullableMissingVariable

func (NullableMissingVariable) Get

func (NullableMissingVariable) IsSet

func (v NullableMissingVariable) IsSet() bool

func (NullableMissingVariable) MarshalJSON

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

func (*NullableMissingVariable) Set

func (*NullableMissingVariable) UnmarshalJSON

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

func (*NullableMissingVariable) Unset

func (v *NullableMissingVariable) Unset()

type NullableMissingVariablesError

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

func (NullableMissingVariablesError) Get

func (NullableMissingVariablesError) IsSet

func (NullableMissingVariablesError) MarshalJSON

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

func (*NullableMissingVariablesError) Set

func (*NullableMissingVariablesError) UnmarshalJSON

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

func (*NullableMissingVariablesError) Unset

func (v *NullableMissingVariablesError) Unset()

type NullableOutputInfo

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

func NewNullableOutputInfo

func NewNullableOutputInfo(val *OutputInfo) *NullableOutputInfo

func (NullableOutputInfo) Get

func (v NullableOutputInfo) Get() *OutputInfo

func (NullableOutputInfo) IsSet

func (v NullableOutputInfo) IsSet() bool

func (NullableOutputInfo) MarshalJSON

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

func (*NullableOutputInfo) Set

func (v *NullableOutputInfo) Set(val *OutputInfo)

func (*NullableOutputInfo) UnmarshalJSON

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

func (*NullableOutputInfo) Unset

func (v *NullableOutputInfo) Unset()

type NullablePollingInfo

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

func NewNullablePollingInfo

func NewNullablePollingInfo(val *PollingInfo) *NullablePollingInfo

func (NullablePollingInfo) Get

func (NullablePollingInfo) IsSet

func (v NullablePollingInfo) IsSet() bool

func (NullablePollingInfo) MarshalJSON

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

func (*NullablePollingInfo) Set

func (v *NullablePollingInfo) Set(val *PollingInfo)

func (*NullablePollingInfo) UnmarshalJSON

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

func (*NullablePollingInfo) Unset

func (v *NullablePollingInfo) Unset()

type NullablePollingInfoPeriodic

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

func NewNullablePollingInfoPeriodic

func NewNullablePollingInfoPeriodic(val *PollingInfoPeriodic) *NullablePollingInfoPeriodic

func (NullablePollingInfoPeriodic) Get

func (NullablePollingInfoPeriodic) IsSet

func (NullablePollingInfoPeriodic) MarshalJSON

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

func (*NullablePollingInfoPeriodic) Set

func (*NullablePollingInfoPeriodic) UnmarshalJSON

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

func (*NullablePollingInfoPeriodic) Unset

func (v *NullablePollingInfoPeriodic) Unset()

type NullablePollingProfile

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

func NewNullablePollingProfile

func NewNullablePollingProfile(val *PollingProfile) *NullablePollingProfile

func (NullablePollingProfile) Get

func (NullablePollingProfile) IsSet

func (v NullablePollingProfile) IsSet() bool

func (NullablePollingProfile) MarshalJSON

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

func (*NullablePollingProfile) Set

func (*NullablePollingProfile) UnmarshalJSON

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

func (*NullablePollingProfile) Unset

func (v *NullablePollingProfile) Unset()

type NullablePollingProfileList

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

func NewNullablePollingProfileList

func NewNullablePollingProfileList(val *PollingProfileList) *NullablePollingProfileList

func (NullablePollingProfileList) Get

func (NullablePollingProfileList) IsSet

func (v NullablePollingProfileList) IsSet() bool

func (NullablePollingProfileList) MarshalJSON

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

func (*NullablePollingProfileList) Set

func (*NullablePollingProfileList) UnmarshalJSON

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

func (*NullablePollingProfileList) Unset

func (v *NullablePollingProfileList) Unset()

type NullablePollingProfileSpec

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

func NewNullablePollingProfileSpec

func NewNullablePollingProfileSpec(val *PollingProfileSpec) *NullablePollingProfileSpec

func (NullablePollingProfileSpec) Get

func (NullablePollingProfileSpec) IsSet

func (v NullablePollingProfileSpec) IsSet() bool

func (NullablePollingProfileSpec) MarshalJSON

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

func (*NullablePollingProfileSpec) Set

func (*NullablePollingProfileSpec) UnmarshalJSON

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

func (*NullablePollingProfileSpec) Unset

func (v *NullablePollingProfileSpec) Unset()

type NullablePollingProfileSpecPeriodic

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

func (NullablePollingProfileSpecPeriodic) Get

func (NullablePollingProfileSpecPeriodic) IsSet

func (NullablePollingProfileSpecPeriodic) MarshalJSON

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

func (*NullablePollingProfileSpecPeriodic) Set

func (*NullablePollingProfileSpecPeriodic) UnmarshalJSON

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

func (*NullablePollingProfileSpecPeriodic) Unset

type NullableRequiredGatesResult

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

func NewNullableRequiredGatesResult

func NewNullableRequiredGatesResult(val *RequiredGatesResult) *NullableRequiredGatesResult

func (NullableRequiredGatesResult) Get

func (NullableRequiredGatesResult) IsSet

func (NullableRequiredGatesResult) MarshalJSON

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

func (*NullableRequiredGatesResult) Set

func (*NullableRequiredGatesResult) UnmarshalJSON

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

func (*NullableRequiredGatesResult) Unset

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

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

func NewNullableSupportedClients

func NewNullableSupportedClients(val *SupportedClients) *NullableSupportedClients

func (NullableSupportedClients) Get

func (NullableSupportedClients) IsSet

func (v NullableSupportedClients) IsSet() bool

func (NullableSupportedClients) MarshalJSON

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

func (*NullableSupportedClients) Set

func (*NullableSupportedClients) UnmarshalJSON

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

func (*NullableSupportedClients) Unset

func (v *NullableSupportedClients) Unset()

type NullableSupportedConnectionTypes

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

func (NullableSupportedConnectionTypes) Get

func (NullableSupportedConnectionTypes) IsSet

func (NullableSupportedConnectionTypes) MarshalJSON

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

func (*NullableSupportedConnectionTypes) Set

func (*NullableSupportedConnectionTypes) UnmarshalJSON

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

func (*NullableSupportedConnectionTypes) Unset

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

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

func NewNullableSupportedGates

func NewNullableSupportedGates(val *SupportedGates) *NullableSupportedGates

func (NullableSupportedGates) Get

func (NullableSupportedGates) IsSet

func (v NullableSupportedGates) IsSet() bool

func (NullableSupportedGates) MarshalJSON

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

func (*NullableSupportedGates) Set

func (*NullableSupportedGates) UnmarshalJSON

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

func (*NullableSupportedGates) Unset

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

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

func NewNullableTestResource

func NewNullableTestResource(val *TestResource) *NullableTestResource

func (NullableTestResource) Get

func (NullableTestResource) IsSet

func (v NullableTestResource) IsSet() bool

func (NullableTestResource) MarshalJSON

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

func (*NullableTestResource) Set

func (v *NullableTestResource) Set(val *TestResource)

func (*NullableTestResource) UnmarshalJSON

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

func (*NullableTestResource) Unset

func (v *NullableTestResource) Unset()

type NullableTestResourceList

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

func NewNullableTestResourceList

func NewNullableTestResourceList(val *TestResourceList) *NullableTestResourceList

func (NullableTestResourceList) Get

func (NullableTestResourceList) IsSet

func (v NullableTestResourceList) IsSet() bool

func (NullableTestResourceList) MarshalJSON

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

func (*NullableTestResourceList) Set

func (*NullableTestResourceList) UnmarshalJSON

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

func (*NullableTestResourceList) Unset

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

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

func NewNullableTestRunEvent

func NewNullableTestRunEvent(val *TestRunEvent) *NullableTestRunEvent

func (NullableTestRunEvent) Get

func (NullableTestRunEvent) IsSet

func (v NullableTestRunEvent) IsSet() bool

func (NullableTestRunEvent) MarshalJSON

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

func (*NullableTestRunEvent) Set

func (v *NullableTestRunEvent) Set(val *TestRunEvent)

func (*NullableTestRunEvent) UnmarshalJSON

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

func (*NullableTestRunEvent) Unset

func (v *NullableTestRunEvent) Unset()

type NullableTestRunOutputsInner

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

func NewNullableTestRunOutputsInner

func NewNullableTestRunOutputsInner(val *TestRunOutputsInner) *NullableTestRunOutputsInner

func (NullableTestRunOutputsInner) Get

func (NullableTestRunOutputsInner) IsSet

func (NullableTestRunOutputsInner) MarshalJSON

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

func (*NullableTestRunOutputsInner) Set

func (*NullableTestRunOutputsInner) UnmarshalJSON

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

func (*NullableTestRunOutputsInner) Unset

func (v *NullableTestRunOutputsInner) Unset()

type NullableTestSpec

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

func NewNullableTestSpec

func NewNullableTestSpec(val *TestSpec) *NullableTestSpec

func (NullableTestSpec) Get

func (v NullableTestSpec) Get() *TestSpec

func (NullableTestSpec) IsSet

func (v NullableTestSpec) IsSet() bool

func (NullableTestSpec) MarshalJSON

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

func (*NullableTestSpec) Set

func (v *NullableTestSpec) Set(val *TestSpec)

func (*NullableTestSpec) UnmarshalJSON

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

func (*NullableTestSpec) Unset

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

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

func NewNullableTestSuite

func NewNullableTestSuite(val *TestSuite) *NullableTestSuite

func (NullableTestSuite) Get

func (v NullableTestSuite) Get() *TestSuite

func (NullableTestSuite) IsSet

func (v NullableTestSuite) IsSet() bool

func (NullableTestSuite) MarshalJSON

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

func (*NullableTestSuite) Set

func (v *NullableTestSuite) Set(val *TestSuite)

func (*NullableTestSuite) UnmarshalJSON

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

func (*NullableTestSuite) Unset

func (v *NullableTestSuite) Unset()

type NullableTestSuiteResource

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

func NewNullableTestSuiteResource

func NewNullableTestSuiteResource(val *TestSuiteResource) *NullableTestSuiteResource

func (NullableTestSuiteResource) Get

func (NullableTestSuiteResource) IsSet

func (v NullableTestSuiteResource) IsSet() bool

func (NullableTestSuiteResource) MarshalJSON

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

func (*NullableTestSuiteResource) Set

func (*NullableTestSuiteResource) UnmarshalJSON

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

func (*NullableTestSuiteResource) Unset

func (v *NullableTestSuiteResource) Unset()

type NullableTestSuiteResourceList

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

func (NullableTestSuiteResourceList) Get

func (NullableTestSuiteResourceList) IsSet

func (NullableTestSuiteResourceList) MarshalJSON

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

func (*NullableTestSuiteResourceList) Set

func (*NullableTestSuiteResourceList) UnmarshalJSON

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

func (*NullableTestSuiteResourceList) Unset

func (v *NullableTestSuiteResourceList) Unset()

type NullableTestSuiteRun

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

func NewNullableTestSuiteRun

func NewNullableTestSuiteRun(val *TestSuiteRun) *NullableTestSuiteRun

func (NullableTestSuiteRun) Get

func (NullableTestSuiteRun) IsSet

func (v NullableTestSuiteRun) IsSet() bool

func (NullableTestSuiteRun) MarshalJSON

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

func (*NullableTestSuiteRun) Set

func (v *NullableTestSuiteRun) Set(val *TestSuiteRun)

func (*NullableTestSuiteRun) UnmarshalJSON

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

func (*NullableTestSuiteRun) Unset

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

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

func NewNullableVariable

func NewNullableVariable(val *Variable) *NullableVariable

func (NullableVariable) Get

func (v NullableVariable) Get() *Variable

func (NullableVariable) IsSet

func (v NullableVariable) IsSet() bool

func (NullableVariable) MarshalJSON

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

func (*NullableVariable) Set

func (v *NullableVariable) Set(val *Variable)

func (*NullableVariable) UnmarshalJSON

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

func (*NullableVariable) Unset

func (v *NullableVariable) Unset()

type NullableVariableSet

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

func NewNullableVariableSet

func NewNullableVariableSet(val *VariableSet) *NullableVariableSet

func (NullableVariableSet) Get

func (NullableVariableSet) IsSet

func (v NullableVariableSet) IsSet() bool

func (NullableVariableSet) MarshalJSON

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

func (*NullableVariableSet) Set

func (v *NullableVariableSet) Set(val *VariableSet)

func (*NullableVariableSet) UnmarshalJSON

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

func (*NullableVariableSet) Unset

func (v *NullableVariableSet) Unset()

type NullableVariableSetResource

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

func NewNullableVariableSetResource

func NewNullableVariableSetResource(val *VariableSetResource) *NullableVariableSetResource

func (NullableVariableSetResource) Get

func (NullableVariableSetResource) IsSet

func (NullableVariableSetResource) MarshalJSON

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

func (*NullableVariableSetResource) Set

func (*NullableVariableSetResource) UnmarshalJSON

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

func (*NullableVariableSetResource) Unset

func (v *NullableVariableSetResource) Unset()

type NullableVariableSetResourceList

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

func (NullableVariableSetResourceList) Get

func (NullableVariableSetResourceList) IsSet

func (NullableVariableSetResourceList) MarshalJSON

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

func (*NullableVariableSetResourceList) Set

func (*NullableVariableSetResourceList) UnmarshalJSON

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

func (*NullableVariableSetResourceList) Unset

type NullableVariableSetValue

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

func NewNullableVariableSetValue

func NewNullableVariableSetValue(val *VariableSetValue) *NullableVariableSetValue

func (NullableVariableSetValue) Get

func (NullableVariableSetValue) IsSet

func (v NullableVariableSetValue) IsSet() bool

func (NullableVariableSetValue) MarshalJSON

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

func (*NullableVariableSetValue) Set

func (*NullableVariableSetValue) UnmarshalJSON

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

func (*NullableVariableSetValue) Unset

func (v *NullableVariableSetValue) Unset()

type NullableVersion

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

func NewNullableVersion

func NewNullableVersion(val *Version) *NullableVersion

func (NullableVersion) Get

func (v NullableVersion) Get() *Version

func (NullableVersion) IsSet

func (v NullableVersion) IsSet() bool

func (NullableVersion) MarshalJSON

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

func (*NullableVersion) Set

func (v *NullableVersion) Set(val *Version)

func (*NullableVersion) UnmarshalJSON

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

func (*NullableVersion) Unset

func (v *NullableVersion) Unset()

type OutputInfo

type OutputInfo struct {
	LogLevel   *string `json:"logLevel,omitempty"`
	Message    *string `json:"message,omitempty"`
	OutputName *string `json:"outputName,omitempty"`
}

OutputInfo struct for OutputInfo

func NewOutputInfo

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

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

func (o *OutputInfo) GetLogLevel() string

GetLogLevel returns the LogLevel field value if set, zero value otherwise.

func (*OutputInfo) GetLogLevelOk

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

func (o *OutputInfo) GetMessage() string

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

func (*OutputInfo) GetMessageOk

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

func (o *OutputInfo) GetOutputName() string

GetOutputName returns the OutputName field value if set, zero value otherwise.

func (*OutputInfo) GetOutputNameOk

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

func (o *OutputInfo) HasLogLevel() bool

HasLogLevel returns a boolean if a field has been set.

func (*OutputInfo) HasMessage

func (o *OutputInfo) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*OutputInfo) HasOutputName

func (o *OutputInfo) HasOutputName() bool

HasOutputName returns a boolean if a field has been set.

func (OutputInfo) MarshalJSON

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

func (*OutputInfo) SetLogLevel

func (o *OutputInfo) SetLogLevel(v string)

SetLogLevel gets a reference to the given string and assigns it to the LogLevel field.

func (*OutputInfo) SetMessage

func (o *OutputInfo) SetMessage(v string)

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

func (*OutputInfo) SetOutputName

func (o *OutputInfo) SetOutputName(v string)

SetOutputName gets a reference to the given string and assigns it to the OutputName field.

func (OutputInfo) ToMap

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

type PollingInfo

type PollingInfo struct {
	Type       *string              `json:"type,omitempty"`
	IsComplete *bool                `json:"isComplete,omitempty"`
	Periodic   *PollingInfoPeriodic `json:"periodic,omitempty"`
}

PollingInfo struct for PollingInfo

func NewPollingInfo

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

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

func (o *PollingInfo) GetIsComplete() bool

GetIsComplete returns the IsComplete field value if set, zero value otherwise.

func (*PollingInfo) GetIsCompleteOk

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

func (o *PollingInfo) GetPeriodic() PollingInfoPeriodic

GetPeriodic returns the Periodic field value if set, zero value otherwise.

func (*PollingInfo) GetPeriodicOk

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

func (o *PollingInfo) GetType() string

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

func (*PollingInfo) GetTypeOk

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

func (o *PollingInfo) HasIsComplete() bool

HasIsComplete returns a boolean if a field has been set.

func (*PollingInfo) HasPeriodic

func (o *PollingInfo) HasPeriodic() bool

HasPeriodic returns a boolean if a field has been set.

func (*PollingInfo) HasType

func (o *PollingInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (PollingInfo) MarshalJSON

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

func (*PollingInfo) SetIsComplete

func (o *PollingInfo) SetIsComplete(v bool)

SetIsComplete gets a reference to the given bool and assigns it to the IsComplete field.

func (*PollingInfo) SetPeriodic

func (o *PollingInfo) SetPeriodic(v PollingInfoPeriodic)

SetPeriodic gets a reference to the given PollingInfoPeriodic and assigns it to the Periodic field.

func (*PollingInfo) SetType

func (o *PollingInfo) SetType(v string)

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

func (PollingInfo) ToMap

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

type PollingInfoPeriodic

type PollingInfoPeriodic struct {
	NumberSpans      *int32 `json:"numberSpans,omitempty"`
	NumberIterations *int32 `json:"numberIterations,omitempty"`
}

PollingInfoPeriodic struct for PollingInfoPeriodic

func NewPollingInfoPeriodic

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

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

func (o *PollingInfoPeriodic) GetNumberIterations() int32

GetNumberIterations returns the NumberIterations field value if set, zero value otherwise.

func (*PollingInfoPeriodic) GetNumberIterationsOk

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

func (o *PollingInfoPeriodic) GetNumberSpans() int32

GetNumberSpans returns the NumberSpans field value if set, zero value otherwise.

func (*PollingInfoPeriodic) GetNumberSpansOk

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

func (o *PollingInfoPeriodic) HasNumberIterations() bool

HasNumberIterations returns a boolean if a field has been set.

func (*PollingInfoPeriodic) HasNumberSpans

func (o *PollingInfoPeriodic) HasNumberSpans() bool

HasNumberSpans returns a boolean if a field has been set.

func (PollingInfoPeriodic) MarshalJSON

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

func (*PollingInfoPeriodic) SetNumberIterations

func (o *PollingInfoPeriodic) SetNumberIterations(v int32)

SetNumberIterations gets a reference to the given int32 and assigns it to the NumberIterations field.

func (*PollingInfoPeriodic) SetNumberSpans

func (o *PollingInfoPeriodic) SetNumberSpans(v int32)

SetNumberSpans gets a reference to the given int32 and assigns it to the NumberSpans field.

func (PollingInfoPeriodic) ToMap

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

type PollingProfile

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

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

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

func (o *PollingProfile) GetSpec() PollingProfileSpec

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

func (*PollingProfile) GetSpecOk

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

func (o *PollingProfile) GetType() string

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

func (*PollingProfile) GetTypeOk

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

func (o *PollingProfile) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*PollingProfile) HasType

func (o *PollingProfile) HasType() bool

HasType returns a boolean if a field has been set.

func (PollingProfile) MarshalJSON

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

func (*PollingProfile) SetSpec

func (o *PollingProfile) SetSpec(v PollingProfileSpec)

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

func (*PollingProfile) SetType

func (o *PollingProfile) SetType(v string)

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

func (PollingProfile) ToMap

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

type PollingProfileList

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

PollingProfileList struct for PollingProfileList

func NewPollingProfileList

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

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

func (o *PollingProfileList) GetCount() int32

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

func (*PollingProfileList) GetCountOk

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

func (o *PollingProfileList) GetItems() []PollingProfile

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

func (*PollingProfileList) GetItemsOk

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

func (o *PollingProfileList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*PollingProfileList) HasItems

func (o *PollingProfileList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (PollingProfileList) MarshalJSON

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

func (*PollingProfileList) SetCount

func (o *PollingProfileList) SetCount(v int32)

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

func (*PollingProfileList) SetItems

func (o *PollingProfileList) SetItems(v []PollingProfile)

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

func (PollingProfileList) ToMap

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

type PollingProfileSpec

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

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

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

func (o *PollingProfileSpec) GetDefault() bool

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

func (*PollingProfileSpec) GetDefaultOk

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

func (o *PollingProfileSpec) GetId() string

GetId returns the Id field value

func (*PollingProfileSpec) GetIdOk

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

func (o *PollingProfileSpec) GetName() string

GetName returns the Name field value

func (*PollingProfileSpec) GetNameOk

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

GetPeriodic returns the Periodic field value if set, zero value otherwise.

func (*PollingProfileSpec) GetPeriodicOk

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

func (o *PollingProfileSpec) GetStrategy() string

GetStrategy returns the Strategy field value

func (*PollingProfileSpec) GetStrategyOk

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

func (o *PollingProfileSpec) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*PollingProfileSpec) HasPeriodic

func (o *PollingProfileSpec) HasPeriodic() bool

HasPeriodic returns a boolean if a field has been set.

func (PollingProfileSpec) MarshalJSON

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

func (*PollingProfileSpec) SetDefault

func (o *PollingProfileSpec) SetDefault(v bool)

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

func (*PollingProfileSpec) SetId

func (o *PollingProfileSpec) SetId(v string)

SetId sets field value

func (*PollingProfileSpec) SetName

func (o *PollingProfileSpec) SetName(v string)

SetName sets field value

func (*PollingProfileSpec) SetPeriodic

SetPeriodic gets a reference to the given PollingProfileSpecPeriodic and assigns it to the Periodic field.

func (*PollingProfileSpec) SetStrategy

func (o *PollingProfileSpec) SetStrategy(v string)

SetStrategy sets field value

func (PollingProfileSpec) ToMap

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

type PollingProfileSpecPeriodic

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

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

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

func (o *PollingProfileSpecPeriodic) GetRetryDelay() string

GetRetryDelay returns the RetryDelay field value if set, zero value otherwise.

func (*PollingProfileSpecPeriodic) GetRetryDelayOk

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

func (o *PollingProfileSpecPeriodic) GetTimeout() string

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*PollingProfileSpecPeriodic) GetTimeoutOk

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

func (o *PollingProfileSpecPeriodic) HasRetryDelay() bool

HasRetryDelay returns a boolean if a field has been set.

func (*PollingProfileSpecPeriodic) HasTimeout

func (o *PollingProfileSpecPeriodic) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (PollingProfileSpecPeriodic) MarshalJSON

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

func (*PollingProfileSpecPeriodic) SetRetryDelay

func (o *PollingProfileSpecPeriodic) SetRetryDelay(v string)

SetRetryDelay gets a reference to the given string and assigns it to the RetryDelay field.

func (*PollingProfileSpecPeriodic) SetTimeout

func (o *PollingProfileSpecPeriodic) SetTimeout(v string)

SetTimeout gets a reference to the given string and assigns it to the Timeout field.

func (PollingProfileSpecPeriodic) ToMap

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

type RequiredGatesResult

type RequiredGatesResult struct {
	Required []SupportedGates `json:"required"`
	Failed   []SupportedGates `json:"failed"`
	Passed   bool             `json:"passed"`
}

RequiredGatesResult struct for RequiredGatesResult

func NewRequiredGatesResult

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

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

func (o *RequiredGatesResult) GetFailed() []SupportedGates

GetFailed returns the Failed field value

func (*RequiredGatesResult) GetFailedOk

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

func (o *RequiredGatesResult) GetPassed() bool

GetPassed returns the Passed field value

func (*RequiredGatesResult) GetPassedOk

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

func (o *RequiredGatesResult) GetRequired() []SupportedGates

GetRequired returns the Required field value

func (*RequiredGatesResult) GetRequiredOk

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

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

func (*RequiredGatesResult) SetFailed

func (o *RequiredGatesResult) SetFailed(v []SupportedGates)

SetFailed sets field value

func (*RequiredGatesResult) SetPassed

func (o *RequiredGatesResult) SetPassed(v bool)

SetPassed sets field value

func (*RequiredGatesResult) SetRequired

func (o *RequiredGatesResult) SetRequired(v []SupportedGates)

SetRequired sets field value

func (RequiredGatesResult) ToMap

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

func (o *ResolveContext) GetVariableSetId() string

GetVariableSetId returns the VariableSetId field value if set, zero value otherwise.

func (*ResolveContext) GetVariableSetIdOk

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

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

func (o *ResolveContext) SetVariableSetId(v string)

SetVariableSetId gets a reference to the given string and assigns it to the VariableSetId field.

func (ResolveContext) ToMap

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

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

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

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

type ResourceApiApiService

type ResourceApiApiService service

ResourceApiApiService ResourceApiApi service

func (*ResourceApiApiService) CreateDemo

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

func (a *ResourceApiApiService) CreateDemoExecute(r ApiCreateDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) CreateLinter

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

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) CreateTest

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

func (a *ResourceApiApiService) CreateTestExecute(r ApiCreateTestRequest) (*Test, *http.Response, error)

Execute executes the request

@return Test

func (*ResourceApiApiService) CreateTestSuite

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

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) CreateVariableSet

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

Execute executes the request

@return VariableSetResource

func (*ResourceApiApiService) DeleteDataStore

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

func (a *ResourceApiApiService) DeleteDataStoreExecute(r ApiDeleteDataStoreRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteDemo

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

func (a *ResourceApiApiService) DeleteDemoExecute(r ApiDeleteDemoRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteLinter

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

func (a *ResourceApiApiService) DeleteLinterExecute(r ApiDeleteLinterRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteTest

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

func (a *ResourceApiApiService) DeleteTestExecute(r ApiDeleteTestRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteTestSuite

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

func (a *ResourceApiApiService) DeleteTestSuiteExecute(r ApiDeleteTestSuiteRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) DeleteVariableSet

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

func (a *ResourceApiApiService) DeleteVariableSetExecute(r ApiDeleteVariableSetRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) GetConfiguration

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

Execute executes the request

@return ConfigurationResource

func (*ResourceApiApiService) GetDataStore

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

Execute executes the request

@return DataStoreResource

func (*ResourceApiApiService) GetDemo

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

func (a *ResourceApiApiService) GetDemoExecute(r ApiGetDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) GetLinter

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

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) GetPollingProfile

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

Execute executes the request

@return PollingProfile

func (*ResourceApiApiService) GetTestSuite

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

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) GetTestSuites

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

Execute executes the request

@return TestSuiteResourceList

func (*ResourceApiApiService) GetTests

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

Execute executes the request

@return TestResourceList

func (*ResourceApiApiService) GetVariableSet

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

Execute executes the request

@return VariableSetResource

func (*ResourceApiApiService) ListConfiguration

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

Execute executes the request

@return ConfigurationResourceList

func (*ResourceApiApiService) ListDataStore

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

Execute executes the request

@return DataStoreList

func (*ResourceApiApiService) ListDemos

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

Execute executes the request

@return DemoList

func (*ResourceApiApiService) ListLinters

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

Execute executes the request

@return LinterResourceList

func (*ResourceApiApiService) ListPollingProfile

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

Execute executes the request

@return PollingProfileList

func (*ResourceApiApiService) ListVariableSets

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

Execute executes the request

@return VariableSetResourceList

func (*ResourceApiApiService) TestsTestIdGet

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

Execute executes the request

@return TestResource

func (*ResourceApiApiService) UpdateConfiguration

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

Execute executes the request

@return ConfigurationResource

func (*ResourceApiApiService) UpdateDataStore

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

func (a *ResourceApiApiService) UpdateDataStoreExecute(r ApiUpdateDataStoreRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) UpdateDemo

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

func (a *ResourceApiApiService) UpdateDemoExecute(r ApiUpdateDemoRequest) (*Demo, *http.Response, error)

Execute executes the request

@return Demo

func (*ResourceApiApiService) UpdateLinter

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

Execute executes the request

@return LinterResource

func (*ResourceApiApiService) UpdatePollingProfile

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

Execute executes the request

@return PollingProfile

func (*ResourceApiApiService) UpdateTest

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

func (a *ResourceApiApiService) UpdateTestExecute(r ApiUpdateTestRequest) (*http.Response, error)

Execute executes the request

func (*ResourceApiApiService) UpdateTestSuite

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

Execute executes the request

@return TestSuiteResource

func (*ResourceApiApiService) UpdateVariableSet

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

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

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

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

func (o *RunInformation) GetVariableSetId() string

GetVariableSetId returns the VariableSetId field value if set, zero value otherwise.

func (*RunInformation) GetVariableSetIdOk

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

func (o *RunInformation) HasRequiredGates() bool

HasRequiredGates returns a boolean if a field has been set.

func (*RunInformation) HasVariableSetId

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

func (o *RunInformation) SetRequiredGates(v []SupportedGates)

SetRequiredGates gets a reference to the given []SupportedGates and assigns it to the RequiredGates field.

func (*RunInformation) SetVariableSetId

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

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

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

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

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

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

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

func (o *Span) GetKind() string

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

func (*Span) GetKindOk

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

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

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

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

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

type SupportedClients string

SupportedClients the model 'SupportedClients'

const (
	HTTP SupportedClients = "http"
	GRPC SupportedClients = "grpc"
)

List of SupportedClients

func NewSupportedClientsFromValue

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

func (v SupportedClients) IsValid() bool

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

func (SupportedClients) Ptr

Ptr returns reference to SupportedClients value

func (*SupportedClients) UnmarshalJSON

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

type SupportedConnectionTypes

type SupportedConnectionTypes string

SupportedConnectionTypes the model 'SupportedConnectionTypes'

const (
	DIRECT    SupportedConnectionTypes = "direct"
	COLLECTOR SupportedConnectionTypes = "collector"
)

List of SupportedConnectionTypes

func NewSupportedConnectionTypesFromValue

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

func (v SupportedConnectionTypes) IsValid() bool

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

func (SupportedConnectionTypes) Ptr

Ptr returns reference to SupportedConnectionTypes value

func (*SupportedConnectionTypes) UnmarshalJSON

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

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

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

func (v SupportedGates) IsValid() bool

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

func (SupportedGates) Ptr

func (v SupportedGates) Ptr() *SupportedGates

Ptr returns reference to SupportedGates value

func (*SupportedGates) UnmarshalJSON

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

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

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

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

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

func (o *Test) GetTrigger() Trigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*Test) GetTriggerOk

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

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

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

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

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

func (o *TestOutput) GetSelectorParsed() Selector

GetSelectorParsed returns the SelectorParsed field value if set, zero value otherwise.

func (*TestOutput) GetSelectorParsedOk

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

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

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

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

type TestResource

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

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

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

func (o *TestResource) GetSpec() Test

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

func (*TestResource) GetSpecOk

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

func (o *TestResource) GetType() string

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

func (*TestResource) GetTypeOk

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

func (o *TestResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*TestResource) HasType

func (o *TestResource) HasType() bool

HasType returns a boolean if a field has been set.

func (TestResource) MarshalJSON

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

func (*TestResource) SetSpec

func (o *TestResource) SetSpec(v Test)

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

func (*TestResource) SetType

func (o *TestResource) SetType(v string)

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

func (TestResource) ToMap

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

type TestResourceList

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

TestResourceList struct for TestResourceList

func NewTestResourceList

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

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

func (o *TestResourceList) GetCount() int32

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

func (*TestResourceList) GetCountOk

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

func (o *TestResourceList) GetItems() []TestResource

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

func (*TestResourceList) GetItemsOk

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

func (o *TestResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TestResourceList) HasItems

func (o *TestResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (TestResourceList) MarshalJSON

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

func (*TestResourceList) SetCount

func (o *TestResourceList) SetCount(v int32)

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

func (*TestResourceList) SetItems

func (o *TestResourceList) SetItems(v []TestResource)

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

func (TestResourceList) ToMap

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

func (o *TestRun) GetLinter() LinterResult

GetLinter returns the Linter field value if set, zero value otherwise.

func (*TestRun) GetLinterOk

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

func (o *TestRun) GetRequiredGatesResult() RequiredGatesResult

GetRequiredGatesResult returns the RequiredGatesResult field value if set, zero value otherwise.

func (*TestRun) GetRequiredGatesResultOk

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

func (o *TestRun) GetResolvedTrigger() Trigger

GetResolvedTrigger returns the ResolvedTrigger field value if set, zero value otherwise.

func (*TestRun) GetResolvedTriggerOk

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

func (o *TestRun) GetTestSuiteId() string

GetTestSuiteId returns the TestSuiteId field value if set, zero value otherwise.

func (*TestRun) GetTestSuiteIdOk

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

func (o *TestRun) GetTestSuiteRunId() int32

GetTestSuiteRunId returns the TestSuiteRunId field value if set, zero value otherwise.

func (*TestRun) GetTestSuiteRunIdOk

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

func (o *TestRun) GetVariableSet() VariableSet

GetVariableSet returns the VariableSet field value if set, zero value otherwise.

func (*TestRun) GetVariableSetOk

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

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

func (o *TestRun) HasRequiredGatesResult() bool

HasRequiredGatesResult returns a boolean if a field has been set.

func (*TestRun) HasResolvedTrigger

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

func (o *TestRun) HasTestSuiteId() bool

HasTestSuiteId returns a boolean if a field has been set.

func (*TestRun) HasTestSuiteRunId

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

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

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

func (o *TestRun) SetRequiredGatesResult(v RequiredGatesResult)

SetRequiredGatesResult gets a reference to the given RequiredGatesResult and assigns it to the RequiredGatesResult field.

func (*TestRun) SetResolvedTrigger

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

func (o *TestRun) SetTestSuiteId(v string)

SetTestSuiteId gets a reference to the given string and assigns it to the TestSuiteId field.

func (*TestRun) SetTestSuiteRunId

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

func (o *TestRun) SetVariableSet(v VariableSet)

SetVariableSet gets a reference to the given VariableSet and assigns it to the VariableSet field.

func (TestRun) ToMap

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

type TestRunEvent

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

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

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

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

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

func (*TestRunEvent) GetCreatedAtOk

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

func (o *TestRunEvent) GetDataStoreConnection() ConnectionResult

GetDataStoreConnection returns the DataStoreConnection field value if set, zero value otherwise.

func (*TestRunEvent) GetDataStoreConnectionOk

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

func (o *TestRunEvent) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TestRunEvent) GetDescriptionOk

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

func (o *TestRunEvent) GetOutputs() []OutputInfo

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*TestRunEvent) GetOutputsOk

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

func (o *TestRunEvent) GetPolling() PollingInfo

GetPolling returns the Polling field value if set, zero value otherwise.

func (*TestRunEvent) GetPollingOk

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

func (o *TestRunEvent) GetRunId() int32

GetRunId returns the RunId field value if set, zero value otherwise.

func (*TestRunEvent) GetRunIdOk

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

func (o *TestRunEvent) GetStage() string

GetStage returns the Stage field value if set, zero value otherwise.

func (*TestRunEvent) GetStageOk

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

func (o *TestRunEvent) GetTestId() string

GetTestId returns the TestId field value if set, zero value otherwise.

func (*TestRunEvent) GetTestIdOk

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

func (o *TestRunEvent) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*TestRunEvent) GetTitleOk

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

func (o *TestRunEvent) GetType() string

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

func (*TestRunEvent) GetTypeOk

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

func (o *TestRunEvent) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestRunEvent) HasDataStoreConnection

func (o *TestRunEvent) HasDataStoreConnection() bool

HasDataStoreConnection returns a boolean if a field has been set.

func (*TestRunEvent) HasDescription

func (o *TestRunEvent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TestRunEvent) HasOutputs

func (o *TestRunEvent) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*TestRunEvent) HasPolling

func (o *TestRunEvent) HasPolling() bool

HasPolling returns a boolean if a field has been set.

func (*TestRunEvent) HasRunId

func (o *TestRunEvent) HasRunId() bool

HasRunId returns a boolean if a field has been set.

func (*TestRunEvent) HasStage

func (o *TestRunEvent) HasStage() bool

HasStage returns a boolean if a field has been set.

func (*TestRunEvent) HasTestId

func (o *TestRunEvent) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*TestRunEvent) HasTitle

func (o *TestRunEvent) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*TestRunEvent) HasType

func (o *TestRunEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (TestRunEvent) MarshalJSON

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

func (*TestRunEvent) SetCreatedAt

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

func (o *TestRunEvent) SetDataStoreConnection(v ConnectionResult)

SetDataStoreConnection gets a reference to the given ConnectionResult and assigns it to the DataStoreConnection field.

func (*TestRunEvent) SetDescription

func (o *TestRunEvent) SetDescription(v string)

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

func (*TestRunEvent) SetOutputs

func (o *TestRunEvent) SetOutputs(v []OutputInfo)

SetOutputs gets a reference to the given []OutputInfo and assigns it to the Outputs field.

func (*TestRunEvent) SetPolling

func (o *TestRunEvent) SetPolling(v PollingInfo)

SetPolling gets a reference to the given PollingInfo and assigns it to the Polling field.

func (*TestRunEvent) SetRunId

func (o *TestRunEvent) SetRunId(v int32)

SetRunId gets a reference to the given int32 and assigns it to the RunId field.

func (*TestRunEvent) SetStage

func (o *TestRunEvent) SetStage(v string)

SetStage gets a reference to the given string and assigns it to the Stage field.

func (*TestRunEvent) SetTestId

func (o *TestRunEvent) SetTestId(v string)

SetTestId gets a reference to the given string and assigns it to the TestId field.

func (*TestRunEvent) SetTitle

func (o *TestRunEvent) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*TestRunEvent) SetType

func (o *TestRunEvent) SetType(v string)

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

func (TestRunEvent) ToMap

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

type TestRunOutputsInner

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

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

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

func (o *TestRunOutputsInner) GetError() string

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

func (*TestRunOutputsInner) GetErrorOk

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

func (o *TestRunOutputsInner) GetName() string

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

func (*TestRunOutputsInner) GetNameOk

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

func (o *TestRunOutputsInner) GetSpanId() string

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

func (*TestRunOutputsInner) GetSpanIdOk

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

func (o *TestRunOutputsInner) GetValue() string

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

func (*TestRunOutputsInner) GetValueOk

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

func (o *TestRunOutputsInner) HasError() bool

HasError returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasName

func (o *TestRunOutputsInner) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasSpanId

func (o *TestRunOutputsInner) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (*TestRunOutputsInner) HasValue

func (o *TestRunOutputsInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TestRunOutputsInner) MarshalJSON

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

func (*TestRunOutputsInner) SetError

func (o *TestRunOutputsInner) SetError(v string)

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

func (*TestRunOutputsInner) SetName

func (o *TestRunOutputsInner) SetName(v string)

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

func (*TestRunOutputsInner) SetSpanId

func (o *TestRunOutputsInner) SetSpanId(v string)

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

func (*TestRunOutputsInner) SetValue

func (o *TestRunOutputsInner) SetValue(v string)

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

func (TestRunOutputsInner) ToMap

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

type TestSpec

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

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

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

func (o *TestSpec) GetAssertions() []string

GetAssertions returns the Assertions field value if set, zero value otherwise.

func (*TestSpec) GetAssertionsOk

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

func (o *TestSpec) GetName() string

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

func (*TestSpec) GetNameOk

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

func (o *TestSpec) GetSelector() string

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

func (*TestSpec) GetSelectorOk

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

func (o *TestSpec) GetSelectorParsed() Selector

GetSelectorParsed returns the SelectorParsed field value if set, zero value otherwise.

func (*TestSpec) GetSelectorParsedOk

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

func (o *TestSpec) HasAssertions() bool

HasAssertions returns a boolean if a field has been set.

func (*TestSpec) HasName

func (o *TestSpec) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestSpec) HasSelector

func (o *TestSpec) HasSelector() bool

HasSelector returns a boolean if a field has been set.

func (*TestSpec) HasSelectorParsed

func (o *TestSpec) HasSelectorParsed() bool

HasSelectorParsed returns a boolean if a field has been set.

func (TestSpec) MarshalJSON

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

func (*TestSpec) SetAssertions

func (o *TestSpec) SetAssertions(v []string)

SetAssertions gets a reference to the given []string and assigns it to the Assertions field.

func (*TestSpec) SetName

func (o *TestSpec) SetName(v string)

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

func (*TestSpec) SetSelector

func (o *TestSpec) SetSelector(v string)

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

func (*TestSpec) SetSelectorParsed

func (o *TestSpec) SetSelectorParsed(v Selector)

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

func (TestSpec) ToMap

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

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

type TestSuite

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

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

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

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

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

func (*TestSuite) GetCreatedAtOk

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

func (o *TestSuite) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TestSuite) GetDescriptionOk

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

func (o *TestSuite) GetFullSteps() []Test

GetFullSteps returns the FullSteps field value if set, zero value otherwise.

func (*TestSuite) GetFullStepsOk

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

func (o *TestSuite) GetId() string

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

func (*TestSuite) GetIdOk

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

func (o *TestSuite) GetName() string

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

func (*TestSuite) GetNameOk

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

func (o *TestSuite) GetSteps() []string

GetSteps returns the Steps field value if set, zero value otherwise.

func (*TestSuite) GetStepsOk

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

func (o *TestSuite) GetSummary() TestSummary

GetSummary returns the Summary field value if set, zero value otherwise.

func (*TestSuite) GetSummaryOk

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

func (o *TestSuite) GetVersion() int32

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

func (*TestSuite) GetVersionOk

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

func (o *TestSuite) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestSuite) HasDescription

func (o *TestSuite) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TestSuite) HasFullSteps

func (o *TestSuite) HasFullSteps() bool

HasFullSteps returns a boolean if a field has been set.

func (*TestSuite) HasId

func (o *TestSuite) HasId() bool

HasId returns a boolean if a field has been set.

func (*TestSuite) HasName

func (o *TestSuite) HasName() bool

HasName returns a boolean if a field has been set.

func (*TestSuite) HasSteps

func (o *TestSuite) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*TestSuite) HasSummary

func (o *TestSuite) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (*TestSuite) HasVersion

func (o *TestSuite) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (TestSuite) MarshalJSON

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

func (*TestSuite) SetCreatedAt

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

func (o *TestSuite) SetDescription(v string)

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

func (*TestSuite) SetFullSteps

func (o *TestSuite) SetFullSteps(v []Test)

SetFullSteps gets a reference to the given []Test and assigns it to the FullSteps field.

func (*TestSuite) SetId

func (o *TestSuite) SetId(v string)

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

func (*TestSuite) SetName

func (o *TestSuite) SetName(v string)

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

func (*TestSuite) SetSteps

func (o *TestSuite) SetSteps(v []string)

SetSteps gets a reference to the given []string and assigns it to the Steps field.

func (*TestSuite) SetSummary

func (o *TestSuite) SetSummary(v TestSummary)

SetSummary gets a reference to the given TestSummary and assigns it to the Summary field.

func (*TestSuite) SetVersion

func (o *TestSuite) SetVersion(v int32)

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

func (TestSuite) ToMap

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

type TestSuiteResource

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

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

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

func (o *TestSuiteResource) GetSpec() TestSuite

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

func (*TestSuiteResource) GetSpecOk

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

func (o *TestSuiteResource) GetType() string

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

func (*TestSuiteResource) GetTypeOk

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

func (o *TestSuiteResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*TestSuiteResource) HasType

func (o *TestSuiteResource) HasType() bool

HasType returns a boolean if a field has been set.

func (TestSuiteResource) MarshalJSON

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

func (*TestSuiteResource) SetSpec

func (o *TestSuiteResource) SetSpec(v TestSuite)

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

func (*TestSuiteResource) SetType

func (o *TestSuiteResource) SetType(v string)

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

func (TestSuiteResource) ToMap

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

type TestSuiteResourceList

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

TestSuiteResourceList struct for TestSuiteResourceList

func NewTestSuiteResourceList

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

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

func (o *TestSuiteResourceList) GetCount() int32

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

func (*TestSuiteResourceList) GetCountOk

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

func (o *TestSuiteResourceList) GetItems() []TestSuiteResource

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

func (*TestSuiteResourceList) GetItemsOk

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

func (o *TestSuiteResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TestSuiteResourceList) HasItems

func (o *TestSuiteResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (TestSuiteResourceList) MarshalJSON

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

func (*TestSuiteResourceList) SetCount

func (o *TestSuiteResourceList) SetCount(v int32)

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

func (*TestSuiteResourceList) SetItems

func (o *TestSuiteResourceList) SetItems(v []TestSuiteResource)

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

func (TestSuiteResourceList) ToMap

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

type TestSuiteRun

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

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

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

func (o *TestSuiteRun) GetAllStepsRequiredGatesPassed() bool

GetAllStepsRequiredGatesPassed returns the AllStepsRequiredGatesPassed field value if set, zero value otherwise.

func (*TestSuiteRun) GetAllStepsRequiredGatesPassedOk

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

func (o *TestSuiteRun) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*TestSuiteRun) GetCompletedAtOk

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

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

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

func (*TestSuiteRun) GetCreatedAtOk

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

func (o *TestSuiteRun) GetFail() int32

GetFail returns the Fail field value if set, zero value otherwise.

func (*TestSuiteRun) GetFailOk

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

func (o *TestSuiteRun) GetId() int32

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

func (*TestSuiteRun) GetIdOk

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

func (o *TestSuiteRun) GetMetadata() map[string]string

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

func (*TestSuiteRun) GetMetadataOk

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

func (o *TestSuiteRun) GetPass() int32

GetPass returns the Pass field value if set, zero value otherwise.

func (*TestSuiteRun) GetPassOk

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

func (o *TestSuiteRun) GetState() string

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

func (*TestSuiteRun) GetStateOk

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

func (o *TestSuiteRun) GetSteps() []TestRun

GetSteps returns the Steps field value if set, zero value otherwise.

func (*TestSuiteRun) GetStepsOk

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

func (o *TestSuiteRun) GetVariableSet() VariableSet

GetVariableSet returns the VariableSet field value if set, zero value otherwise.

func (*TestSuiteRun) GetVariableSetOk

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

func (o *TestSuiteRun) GetVersion() int32

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

func (*TestSuiteRun) GetVersionOk

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

func (o *TestSuiteRun) HasAllStepsRequiredGatesPassed() bool

HasAllStepsRequiredGatesPassed returns a boolean if a field has been set.

func (*TestSuiteRun) HasCompletedAt

func (o *TestSuiteRun) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*TestSuiteRun) HasCreatedAt

func (o *TestSuiteRun) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TestSuiteRun) HasFail

func (o *TestSuiteRun) HasFail() bool

HasFail returns a boolean if a field has been set.

func (*TestSuiteRun) HasId

func (o *TestSuiteRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*TestSuiteRun) HasMetadata

func (o *TestSuiteRun) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*TestSuiteRun) HasPass

func (o *TestSuiteRun) HasPass() bool

HasPass returns a boolean if a field has been set.

func (*TestSuiteRun) HasState

func (o *TestSuiteRun) HasState() bool

HasState returns a boolean if a field has been set.

func (*TestSuiteRun) HasSteps

func (o *TestSuiteRun) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*TestSuiteRun) HasVariableSet

func (o *TestSuiteRun) HasVariableSet() bool

HasVariableSet returns a boolean if a field has been set.

func (*TestSuiteRun) HasVersion

func (o *TestSuiteRun) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (TestSuiteRun) MarshalJSON

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

func (*TestSuiteRun) SetAllStepsRequiredGatesPassed

func (o *TestSuiteRun) SetAllStepsRequiredGatesPassed(v bool)

SetAllStepsRequiredGatesPassed gets a reference to the given bool and assigns it to the AllStepsRequiredGatesPassed field.

func (*TestSuiteRun) SetCompletedAt

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

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

func (o *TestSuiteRun) SetFail(v int32)

SetFail gets a reference to the given int32 and assigns it to the Fail field.

func (*TestSuiteRun) SetId

func (o *TestSuiteRun) SetId(v int32)

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

func (*TestSuiteRun) SetMetadata

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

func (o *TestSuiteRun) SetPass(v int32)

SetPass gets a reference to the given int32 and assigns it to the Pass field.

func (*TestSuiteRun) SetState

func (o *TestSuiteRun) SetState(v string)

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

func (*TestSuiteRun) SetSteps

func (o *TestSuiteRun) SetSteps(v []TestRun)

SetSteps gets a reference to the given []TestRun and assigns it to the Steps field.

func (*TestSuiteRun) SetVariableSet

func (o *TestSuiteRun) SetVariableSet(v VariableSet)

SetVariableSet gets a reference to the given VariableSet and assigns it to the VariableSet field.

func (*TestSuiteRun) SetVersion

func (o *TestSuiteRun) SetVersion(v int32)

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

func (TestSuiteRun) ToMap

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

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

func (o *TestSummaryLastRun) GetAnalyzerScore() int32

GetAnalyzerScore returns the AnalyzerScore field value if set, zero value otherwise.

func (*TestSummaryLastRun) GetAnalyzerScoreOk

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

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

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

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

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

func (o *Trigger) GetGrpc() GRPCRequest

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

func (*Trigger) GetGrpcOk

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

func (o *Trigger) GetHttpRequest() HTTPRequest

GetHttpRequest returns the HttpRequest field value if set, zero value otherwise.

func (*Trigger) GetHttpRequestOk

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

func (o *Trigger) GetKafka() KafkaRequest

GetKafka returns the Kafka field value if set, zero value otherwise.

func (*Trigger) GetKafkaOk

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

func (o *Trigger) GetTraceid() TRACEIDRequest

GetTraceid returns the Traceid field value if set, zero value otherwise.

func (*Trigger) GetTraceidOk

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

func (o *Trigger) GetType() string

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

func (*Trigger) GetTypeOk

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

func (o *Trigger) HasGrpc() bool

HasGrpc returns a boolean if a field has been set.

func (*Trigger) HasHttpRequest

func (o *Trigger) HasHttpRequest() bool

HasHttpRequest returns a boolean if a field has been set.

func (*Trigger) HasKafka

func (o *Trigger) HasKafka() bool

HasKafka returns a boolean if a field has been set.

func (*Trigger) HasTraceid

func (o *Trigger) HasTraceid() bool

HasTraceid returns a boolean if a field has been set.

func (*Trigger) HasType

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

func (o *Trigger) SetGrpc(v GRPCRequest)

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

func (*Trigger) SetHttpRequest

func (o *Trigger) SetHttpRequest(v HTTPRequest)

SetHttpRequest gets a reference to the given HTTPRequest and assigns it to the HttpRequest field.

func (*Trigger) SetKafka

func (o *Trigger) SetKafka(v KafkaRequest)

SetKafka gets a reference to the given KafkaRequest and assigns it to the Kafka field.

func (*Trigger) SetTraceid

func (o *Trigger) SetTraceid(v TRACEIDRequest)

SetTraceid gets a reference to the given TRACEIDRequest and assigns it to the Traceid field.

func (*Trigger) SetType

func (o *Trigger) SetType(v string)

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

func (Trigger) ToMap

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

func (o *TriggerResult) GetType() string

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

func (*TriggerResult) GetTypeOk

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

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

func (o *TriggerResult) SetType(v string)

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

func (TriggerResult) ToMap

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

GetKafka returns the Kafka field value if set, zero value otherwise.

func (*TriggerResultTriggerResult) GetKafkaOk

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

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

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

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

type Variable

type Variable struct {
	Key          *string `json:"key,omitempty"`
	DefaultValue *string `json:"defaultValue,omitempty"`
}

Variable struct for Variable

func NewVariable

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

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

func (o *Variable) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*Variable) GetDefaultValueOk

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

func (o *Variable) GetKey() string

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

func (*Variable) GetKeyOk

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

func (o *Variable) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*Variable) HasKey

func (o *Variable) HasKey() bool

HasKey returns a boolean if a field has been set.

func (Variable) MarshalJSON

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

func (*Variable) SetDefaultValue

func (o *Variable) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*Variable) SetKey

func (o *Variable) SetKey(v string)

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

func (Variable) ToMap

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

type VariableSet

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

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

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

func (o *VariableSet) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*VariableSet) GetDescriptionOk

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

func (o *VariableSet) GetId() string

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

func (*VariableSet) GetIdOk

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

func (o *VariableSet) GetName() string

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

func (*VariableSet) GetNameOk

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

func (o *VariableSet) GetValues() []VariableSetValue

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

func (*VariableSet) GetValuesOk

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

func (o *VariableSet) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*VariableSet) HasId

func (o *VariableSet) HasId() bool

HasId returns a boolean if a field has been set.

func (*VariableSet) HasName

func (o *VariableSet) HasName() bool

HasName returns a boolean if a field has been set.

func (*VariableSet) HasValues

func (o *VariableSet) HasValues() bool

HasValues returns a boolean if a field has been set.

func (VariableSet) MarshalJSON

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

func (*VariableSet) SetDescription

func (o *VariableSet) SetDescription(v string)

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

func (*VariableSet) SetId

func (o *VariableSet) SetId(v string)

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

func (*VariableSet) SetName

func (o *VariableSet) SetName(v string)

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

func (*VariableSet) SetValues

func (o *VariableSet) SetValues(v []VariableSetValue)

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

func (VariableSet) ToMap

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

type VariableSetResource

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

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

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

func (o *VariableSetResource) GetSpec() VariableSet

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

func (*VariableSetResource) GetSpecOk

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

func (o *VariableSetResource) GetType() string

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

func (*VariableSetResource) GetTypeOk

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

func (o *VariableSetResource) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*VariableSetResource) HasType

func (o *VariableSetResource) HasType() bool

HasType returns a boolean if a field has been set.

func (VariableSetResource) MarshalJSON

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

func (*VariableSetResource) SetSpec

func (o *VariableSetResource) SetSpec(v VariableSet)

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

func (*VariableSetResource) SetType

func (o *VariableSetResource) SetType(v string)

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

func (VariableSetResource) ToMap

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

type VariableSetResourceList

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

VariableSetResourceList struct for VariableSetResourceList

func NewVariableSetResourceList

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

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

func (o *VariableSetResourceList) GetCount() int32

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

func (*VariableSetResourceList) GetCountOk

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

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

func (*VariableSetResourceList) GetItemsOk

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

func (o *VariableSetResourceList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*VariableSetResourceList) HasItems

func (o *VariableSetResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (VariableSetResourceList) MarshalJSON

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

func (*VariableSetResourceList) SetCount

func (o *VariableSetResourceList) SetCount(v int32)

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

func (*VariableSetResourceList) SetItems

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

func (VariableSetResourceList) ToMap

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

type VariableSetValue

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

VariableSetValue struct for VariableSetValue

func NewVariableSetValue

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

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

func (o *VariableSetValue) GetKey() string

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

func (*VariableSetValue) GetKeyOk

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

func (o *VariableSetValue) GetValue() string

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

func (*VariableSetValue) GetValueOk

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

func (o *VariableSetValue) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*VariableSetValue) HasValue

func (o *VariableSetValue) HasValue() bool

HasValue returns a boolean if a field has been set.

func (VariableSetValue) MarshalJSON

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

func (*VariableSetValue) SetKey

func (o *VariableSetValue) SetKey(v string)

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

func (*VariableSetValue) SetValue

func (o *VariableSetValue) SetValue(v string)

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

func (VariableSetValue) ToMap

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

type Version

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

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

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

func (o *Version) GetAgentEndpoint() string

GetAgentEndpoint returns the AgentEndpoint field value if set, zero value otherwise.

func (*Version) GetAgentEndpointOk

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

func (o *Version) GetApiEndpoint() string

GetApiEndpoint returns the ApiEndpoint field value if set, zero value otherwise.

func (*Version) GetApiEndpointOk

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

func (o *Version) GetType() string

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

func (*Version) GetTypeOk

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

func (o *Version) GetUiEndpoint() string

GetUiEndpoint returns the UiEndpoint field value if set, zero value otherwise.

func (*Version) GetUiEndpointOk

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

func (o *Version) GetVersion() string

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

func (*Version) GetVersionOk

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

func (o *Version) HasAgentEndpoint() bool

HasAgentEndpoint returns a boolean if a field has been set.

func (*Version) HasApiEndpoint

func (o *Version) HasApiEndpoint() bool

HasApiEndpoint returns a boolean if a field has been set.

func (*Version) HasType

func (o *Version) HasType() bool

HasType returns a boolean if a field has been set.

func (*Version) HasUiEndpoint

func (o *Version) HasUiEndpoint() bool

HasUiEndpoint returns a boolean if a field has been set.

func (*Version) HasVersion

func (o *Version) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Version) MarshalJSON

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

func (*Version) SetAgentEndpoint

func (o *Version) SetAgentEndpoint(v string)

SetAgentEndpoint gets a reference to the given string and assigns it to the AgentEndpoint field.

func (*Version) SetApiEndpoint

func (o *Version) SetApiEndpoint(v string)

SetApiEndpoint gets a reference to the given string and assigns it to the ApiEndpoint field.

func (*Version) SetType

func (o *Version) SetType(v string)

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

func (*Version) SetUiEndpoint

func (o *Version) SetUiEndpoint(v string)

SetUiEndpoint gets a reference to the given string and assigns it to the UiEndpoint field.

func (*Version) SetVersion

func (o *Version) SetVersion(v string)

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

func (Version) ToMap

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