synthetics

package
v0.0.0-...-92e41f0 Latest Latest
Warning

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

Go to latest
Published: Jul 27, 2021 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	SyntheticsAdminServiceApi *SyntheticsAdminServiceApiService

	SyntheticsDataServiceApi *SyntheticsDataServiceApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Synthetics Monitoring API API v202101beta1 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 ApiAgentDeleteRequest

type ApiAgentDeleteRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiAgentDeleteRequest) Execute

func (r ApiAgentDeleteRequest) Execute() (map[string]interface{}, *_nethttp.Response, error)

type ApiAgentGetRequest

type ApiAgentGetRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiAgentGetRequest) Execute

type ApiAgentPatchRequest

type ApiAgentPatchRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiAgentPatchRequest) Body

func (ApiAgentPatchRequest) Execute

type ApiAgentsListRequest

type ApiAgentsListRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiAgentsListRequest) Execute

type ApiGetHealthForTestsRequest

type ApiGetHealthForTestsRequest struct {
	ApiService *SyntheticsDataServiceApiService
	// contains filtered or unexported fields
}

func (ApiGetHealthForTestsRequest) Execute

type ApiGetTraceForTestRequest

type ApiGetTraceForTestRequest struct {
	ApiService *SyntheticsDataServiceApiService
	// contains filtered or unexported fields
}

func (ApiGetTraceForTestRequest) Execute

type ApiTestCreateRequest

type ApiTestCreateRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestCreateRequest) Body

func (ApiTestCreateRequest) Execute

type ApiTestDeleteRequest

type ApiTestDeleteRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestDeleteRequest) Execute

func (r ApiTestDeleteRequest) Execute() (map[string]interface{}, *_nethttp.Response, error)

type ApiTestGetRequest

type ApiTestGetRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestGetRequest) Execute

type ApiTestPatchRequest

type ApiTestPatchRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestPatchRequest) Body

func (ApiTestPatchRequest) Execute

type ApiTestStatusUpdateRequest

type ApiTestStatusUpdateRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestStatusUpdateRequest) Body

func (ApiTestStatusUpdateRequest) Execute

func (r ApiTestStatusUpdateRequest) Execute() (map[string]interface{}, *_nethttp.Response, error)

type ApiTestsListRequest

type ApiTestsListRequest struct {
	ApiService *SyntheticsAdminServiceApiService
	// contains filtered or unexported fields
}

func (ApiTestsListRequest) Execute

func (ApiTestsListRequest) Preset

func (r ApiTestsListRequest) Preset(preset bool) ApiTestsListRequest

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 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 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 NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableProtobufAny

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

func NewNullableProtobufAny

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get

func (NullableProtobufAny) IsSet

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON

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

func (*NullableProtobufAny) Set

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON

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

func (*NullableProtobufAny) Unset

func (v *NullableProtobufAny) Unset()

type NullableRpcStatus

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

func NewNullableRpcStatus

func NewNullableRpcStatus(val *RpcStatus) *NullableRpcStatus

func (NullableRpcStatus) Get

func (v NullableRpcStatus) Get() *RpcStatus

func (NullableRpcStatus) IsSet

func (v NullableRpcStatus) IsSet() bool

func (NullableRpcStatus) MarshalJSON

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

func (*NullableRpcStatus) Set

func (v *NullableRpcStatus) Set(val *RpcStatus)

func (*NullableRpcStatus) UnmarshalJSON

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

func (*NullableRpcStatus) Unset

func (v *NullableRpcStatus) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableV202101beta1ASN

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

func NewNullableV202101beta1ASN

func NewNullableV202101beta1ASN(val *V202101beta1ASN) *NullableV202101beta1ASN

func (NullableV202101beta1ASN) Get

func (NullableV202101beta1ASN) IsSet

func (v NullableV202101beta1ASN) IsSet() bool

func (NullableV202101beta1ASN) MarshalJSON

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

func (*NullableV202101beta1ASN) Set

func (*NullableV202101beta1ASN) UnmarshalJSON

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

func (*NullableV202101beta1ASN) Unset

func (v *NullableV202101beta1ASN) Unset()

type NullableV202101beta1Agent

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

func NewNullableV202101beta1Agent

func NewNullableV202101beta1Agent(val *V202101beta1Agent) *NullableV202101beta1Agent

func (NullableV202101beta1Agent) Get

func (NullableV202101beta1Agent) IsSet

func (v NullableV202101beta1Agent) IsSet() bool

func (NullableV202101beta1Agent) MarshalJSON

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

func (*NullableV202101beta1Agent) Set

func (*NullableV202101beta1Agent) UnmarshalJSON

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

func (*NullableV202101beta1Agent) Unset

func (v *NullableV202101beta1Agent) Unset()

type NullableV202101beta1AgentHealth

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

func (NullableV202101beta1AgentHealth) Get

func (NullableV202101beta1AgentHealth) IsSet

func (NullableV202101beta1AgentHealth) MarshalJSON

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

func (*NullableV202101beta1AgentHealth) Set

func (*NullableV202101beta1AgentHealth) UnmarshalJSON

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

func (*NullableV202101beta1AgentHealth) Unset

type NullableV202101beta1AgentStatus

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

func (NullableV202101beta1AgentStatus) Get

func (NullableV202101beta1AgentStatus) IsSet

func (NullableV202101beta1AgentStatus) MarshalJSON

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

func (*NullableV202101beta1AgentStatus) Set

func (*NullableV202101beta1AgentStatus) UnmarshalJSON

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

func (*NullableV202101beta1AgentStatus) Unset

type NullableV202101beta1AgentTaskConfig

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

func (NullableV202101beta1AgentTaskConfig) Get

func (NullableV202101beta1AgentTaskConfig) IsSet

func (NullableV202101beta1AgentTaskConfig) MarshalJSON

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

func (*NullableV202101beta1AgentTaskConfig) Set

func (*NullableV202101beta1AgentTaskConfig) UnmarshalJSON

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

func (*NullableV202101beta1AgentTaskConfig) Unset

type NullableV202101beta1AgentTest

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

func (NullableV202101beta1AgentTest) Get

func (NullableV202101beta1AgentTest) IsSet

func (NullableV202101beta1AgentTest) MarshalJSON

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

func (*NullableV202101beta1AgentTest) Set

func (*NullableV202101beta1AgentTest) UnmarshalJSON

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

func (*NullableV202101beta1AgentTest) Unset

func (v *NullableV202101beta1AgentTest) Unset()

type NullableV202101beta1City

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

func NewNullableV202101beta1City

func NewNullableV202101beta1City(val *V202101beta1City) *NullableV202101beta1City

func (NullableV202101beta1City) Get

func (NullableV202101beta1City) IsSet

func (v NullableV202101beta1City) IsSet() bool

func (NullableV202101beta1City) MarshalJSON

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

func (*NullableV202101beta1City) Set

func (*NullableV202101beta1City) UnmarshalJSON

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

func (*NullableV202101beta1City) Unset

func (v *NullableV202101beta1City) Unset()

type NullableV202101beta1Country

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

func NewNullableV202101beta1Country

func NewNullableV202101beta1Country(val *V202101beta1Country) *NullableV202101beta1Country

func (NullableV202101beta1Country) Get

func (NullableV202101beta1Country) IsSet

func (NullableV202101beta1Country) MarshalJSON

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

func (*NullableV202101beta1Country) Set

func (*NullableV202101beta1Country) UnmarshalJSON

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

func (*NullableV202101beta1Country) Unset

func (v *NullableV202101beta1Country) Unset()

type NullableV202101beta1CreateTestRequest

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

func (NullableV202101beta1CreateTestRequest) Get

func (NullableV202101beta1CreateTestRequest) IsSet

func (NullableV202101beta1CreateTestRequest) MarshalJSON

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

func (*NullableV202101beta1CreateTestRequest) Set

func (*NullableV202101beta1CreateTestRequest) UnmarshalJSON

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

func (*NullableV202101beta1CreateTestRequest) Unset

type NullableV202101beta1CreateTestResponse

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

func (NullableV202101beta1CreateTestResponse) Get

func (NullableV202101beta1CreateTestResponse) IsSet

func (NullableV202101beta1CreateTestResponse) MarshalJSON

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

func (*NullableV202101beta1CreateTestResponse) Set

func (*NullableV202101beta1CreateTestResponse) UnmarshalJSON

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

func (*NullableV202101beta1CreateTestResponse) Unset

type NullableV202101beta1DNS

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

func NewNullableV202101beta1DNS

func NewNullableV202101beta1DNS(val *V202101beta1DNS) *NullableV202101beta1DNS

func (NullableV202101beta1DNS) Get

func (NullableV202101beta1DNS) IsSet

func (v NullableV202101beta1DNS) IsSet() bool

func (NullableV202101beta1DNS) MarshalJSON

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

func (*NullableV202101beta1DNS) Set

func (*NullableV202101beta1DNS) UnmarshalJSON

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

func (*NullableV202101beta1DNS) Unset

func (v *NullableV202101beta1DNS) Unset()

type NullableV202101beta1DNSTaskDefinition

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

func (NullableV202101beta1DNSTaskDefinition) Get

func (NullableV202101beta1DNSTaskDefinition) IsSet

func (NullableV202101beta1DNSTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1DNSTaskDefinition) Set

func (*NullableV202101beta1DNSTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1DNSTaskDefinition) Unset

type NullableV202101beta1DnsTest

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

func NewNullableV202101beta1DnsTest

func NewNullableV202101beta1DnsTest(val *V202101beta1DnsTest) *NullableV202101beta1DnsTest

func (NullableV202101beta1DnsTest) Get

func (NullableV202101beta1DnsTest) IsSet

func (NullableV202101beta1DnsTest) MarshalJSON

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

func (*NullableV202101beta1DnsTest) Set

func (*NullableV202101beta1DnsTest) UnmarshalJSON

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

func (*NullableV202101beta1DnsTest) Unset

func (v *NullableV202101beta1DnsTest) Unset()

type NullableV202101beta1FlowTest

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

func NewNullableV202101beta1FlowTest

func NewNullableV202101beta1FlowTest(val *V202101beta1FlowTest) *NullableV202101beta1FlowTest

func (NullableV202101beta1FlowTest) Get

func (NullableV202101beta1FlowTest) IsSet

func (NullableV202101beta1FlowTest) MarshalJSON

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

func (*NullableV202101beta1FlowTest) Set

func (*NullableV202101beta1FlowTest) UnmarshalJSON

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

func (*NullableV202101beta1FlowTest) Unset

func (v *NullableV202101beta1FlowTest) Unset()

type NullableV202101beta1Geo

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

func NewNullableV202101beta1Geo

func NewNullableV202101beta1Geo(val *V202101beta1Geo) *NullableV202101beta1Geo

func (NullableV202101beta1Geo) Get

func (NullableV202101beta1Geo) IsSet

func (v NullableV202101beta1Geo) IsSet() bool

func (NullableV202101beta1Geo) MarshalJSON

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

func (*NullableV202101beta1Geo) Set

func (*NullableV202101beta1Geo) UnmarshalJSON

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

func (*NullableV202101beta1Geo) Unset

func (v *NullableV202101beta1Geo) Unset()

type NullableV202101beta1GetAgentResponse

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

func (NullableV202101beta1GetAgentResponse) Get

func (NullableV202101beta1GetAgentResponse) IsSet

func (NullableV202101beta1GetAgentResponse) MarshalJSON

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

func (*NullableV202101beta1GetAgentResponse) Set

func (*NullableV202101beta1GetAgentResponse) UnmarshalJSON

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

func (*NullableV202101beta1GetAgentResponse) Unset

type NullableV202101beta1GetHealthForTestsRequest

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

func (NullableV202101beta1GetHealthForTestsRequest) Get

func (NullableV202101beta1GetHealthForTestsRequest) IsSet

func (NullableV202101beta1GetHealthForTestsRequest) MarshalJSON

func (*NullableV202101beta1GetHealthForTestsRequest) Set

func (*NullableV202101beta1GetHealthForTestsRequest) UnmarshalJSON

func (*NullableV202101beta1GetHealthForTestsRequest) Unset

type NullableV202101beta1GetHealthForTestsResponse

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

func (NullableV202101beta1GetHealthForTestsResponse) Get

func (NullableV202101beta1GetHealthForTestsResponse) IsSet

func (NullableV202101beta1GetHealthForTestsResponse) MarshalJSON

func (*NullableV202101beta1GetHealthForTestsResponse) Set

func (*NullableV202101beta1GetHealthForTestsResponse) UnmarshalJSON

func (*NullableV202101beta1GetHealthForTestsResponse) Unset

type NullableV202101beta1GetTestResponse

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

func (NullableV202101beta1GetTestResponse) Get

func (NullableV202101beta1GetTestResponse) IsSet

func (NullableV202101beta1GetTestResponse) MarshalJSON

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

func (*NullableV202101beta1GetTestResponse) Set

func (*NullableV202101beta1GetTestResponse) UnmarshalJSON

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

func (*NullableV202101beta1GetTestResponse) Unset

type NullableV202101beta1GetTraceForTestRequest

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

func (NullableV202101beta1GetTraceForTestRequest) Get

func (NullableV202101beta1GetTraceForTestRequest) IsSet

func (NullableV202101beta1GetTraceForTestRequest) MarshalJSON

func (*NullableV202101beta1GetTraceForTestRequest) Set

func (*NullableV202101beta1GetTraceForTestRequest) UnmarshalJSON

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

func (*NullableV202101beta1GetTraceForTestRequest) Unset

type NullableV202101beta1GetTraceForTestResponse

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

func (NullableV202101beta1GetTraceForTestResponse) Get

func (NullableV202101beta1GetTraceForTestResponse) IsSet

func (NullableV202101beta1GetTraceForTestResponse) MarshalJSON

func (*NullableV202101beta1GetTraceForTestResponse) Set

func (*NullableV202101beta1GetTraceForTestResponse) UnmarshalJSON

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

func (*NullableV202101beta1GetTraceForTestResponse) Unset

type NullableV202101beta1GridTest

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

func NewNullableV202101beta1GridTest

func NewNullableV202101beta1GridTest(val *V202101beta1GridTest) *NullableV202101beta1GridTest

func (NullableV202101beta1GridTest) Get

func (NullableV202101beta1GridTest) IsSet

func (NullableV202101beta1GridTest) MarshalJSON

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

func (*NullableV202101beta1GridTest) Set

func (*NullableV202101beta1GridTest) UnmarshalJSON

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

func (*NullableV202101beta1GridTest) Unset

func (v *NullableV202101beta1GridTest) Unset()

type NullableV202101beta1HTTPConfig

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

func (NullableV202101beta1HTTPConfig) Get

func (NullableV202101beta1HTTPConfig) IsSet

func (NullableV202101beta1HTTPConfig) MarshalJSON

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

func (*NullableV202101beta1HTTPConfig) Set

func (*NullableV202101beta1HTTPConfig) UnmarshalJSON

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

func (*NullableV202101beta1HTTPConfig) Unset

func (v *NullableV202101beta1HTTPConfig) Unset()

type NullableV202101beta1HTTPTaskDefinition

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

func (NullableV202101beta1HTTPTaskDefinition) Get

func (NullableV202101beta1HTTPTaskDefinition) IsSet

func (NullableV202101beta1HTTPTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1HTTPTaskDefinition) Set

func (*NullableV202101beta1HTTPTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1HTTPTaskDefinition) Unset

type NullableV202101beta1Health

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

func NewNullableV202101beta1Health

func NewNullableV202101beta1Health(val *V202101beta1Health) *NullableV202101beta1Health

func (NullableV202101beta1Health) Get

func (NullableV202101beta1Health) IsSet

func (v NullableV202101beta1Health) IsSet() bool

func (NullableV202101beta1Health) MarshalJSON

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

func (*NullableV202101beta1Health) Set

func (*NullableV202101beta1Health) UnmarshalJSON

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

func (*NullableV202101beta1Health) Unset

func (v *NullableV202101beta1Health) Unset()

type NullableV202101beta1HealthMoment

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

func (NullableV202101beta1HealthMoment) Get

func (NullableV202101beta1HealthMoment) IsSet

func (NullableV202101beta1HealthMoment) MarshalJSON

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

func (*NullableV202101beta1HealthMoment) Set

func (*NullableV202101beta1HealthMoment) UnmarshalJSON

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

func (*NullableV202101beta1HealthMoment) Unset

type NullableV202101beta1HealthSettings

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

func (NullableV202101beta1HealthSettings) Get

func (NullableV202101beta1HealthSettings) IsSet

func (NullableV202101beta1HealthSettings) MarshalJSON

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

func (*NullableV202101beta1HealthSettings) Set

func (*NullableV202101beta1HealthSettings) UnmarshalJSON

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

func (*NullableV202101beta1HealthSettings) Unset

type NullableV202101beta1HostnameTest

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

func (NullableV202101beta1HostnameTest) Get

func (NullableV202101beta1HostnameTest) IsSet

func (NullableV202101beta1HostnameTest) MarshalJSON

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

func (*NullableV202101beta1HostnameTest) Set

func (*NullableV202101beta1HostnameTest) UnmarshalJSON

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

func (*NullableV202101beta1HostnameTest) Unset

type NullableV202101beta1IPFamily

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

func NewNullableV202101beta1IPFamily

func NewNullableV202101beta1IPFamily(val *V202101beta1IPFamily) *NullableV202101beta1IPFamily

func (NullableV202101beta1IPFamily) Get

func (NullableV202101beta1IPFamily) IsSet

func (NullableV202101beta1IPFamily) MarshalJSON

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

func (*NullableV202101beta1IPFamily) Set

func (*NullableV202101beta1IPFamily) UnmarshalJSON

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

func (*NullableV202101beta1IPFamily) Unset

func (v *NullableV202101beta1IPFamily) Unset()

type NullableV202101beta1IPInfo

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

func NewNullableV202101beta1IPInfo

func NewNullableV202101beta1IPInfo(val *V202101beta1IPInfo) *NullableV202101beta1IPInfo

func (NullableV202101beta1IPInfo) Get

func (NullableV202101beta1IPInfo) IsSet

func (v NullableV202101beta1IPInfo) IsSet() bool

func (NullableV202101beta1IPInfo) MarshalJSON

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

func (*NullableV202101beta1IPInfo) Set

func (*NullableV202101beta1IPInfo) UnmarshalJSON

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

func (*NullableV202101beta1IPInfo) Unset

func (v *NullableV202101beta1IPInfo) Unset()

type NullableV202101beta1IpTest

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

func NewNullableV202101beta1IpTest

func NewNullableV202101beta1IpTest(val *V202101beta1IpTest) *NullableV202101beta1IpTest

func (NullableV202101beta1IpTest) Get

func (NullableV202101beta1IpTest) IsSet

func (v NullableV202101beta1IpTest) IsSet() bool

func (NullableV202101beta1IpTest) MarshalJSON

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

func (*NullableV202101beta1IpTest) Set

func (*NullableV202101beta1IpTest) UnmarshalJSON

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

func (*NullableV202101beta1IpTest) Unset

func (v *NullableV202101beta1IpTest) Unset()

type NullableV202101beta1KnockTaskDefinition

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

func (NullableV202101beta1KnockTaskDefinition) Get

func (NullableV202101beta1KnockTaskDefinition) IsSet

func (NullableV202101beta1KnockTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1KnockTaskDefinition) Set

func (*NullableV202101beta1KnockTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1KnockTaskDefinition) Unset

type NullableV202101beta1ListAgentsResponse

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

func (NullableV202101beta1ListAgentsResponse) Get

func (NullableV202101beta1ListAgentsResponse) IsSet

func (NullableV202101beta1ListAgentsResponse) MarshalJSON

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

func (*NullableV202101beta1ListAgentsResponse) Set

func (*NullableV202101beta1ListAgentsResponse) UnmarshalJSON

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

func (*NullableV202101beta1ListAgentsResponse) Unset

type NullableV202101beta1ListTestsResponse

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

func (NullableV202101beta1ListTestsResponse) Get

func (NullableV202101beta1ListTestsResponse) IsSet

func (NullableV202101beta1ListTestsResponse) MarshalJSON

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

func (*NullableV202101beta1ListTestsResponse) Set

func (*NullableV202101beta1ListTestsResponse) UnmarshalJSON

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

func (*NullableV202101beta1ListTestsResponse) Unset

type NullableV202101beta1MeshColumn

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

func (NullableV202101beta1MeshColumn) Get

func (NullableV202101beta1MeshColumn) IsSet

func (NullableV202101beta1MeshColumn) MarshalJSON

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

func (*NullableV202101beta1MeshColumn) Set

func (*NullableV202101beta1MeshColumn) UnmarshalJSON

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

func (*NullableV202101beta1MeshColumn) Unset

func (v *NullableV202101beta1MeshColumn) Unset()

type NullableV202101beta1MeshMetric

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

func (NullableV202101beta1MeshMetric) Get

func (NullableV202101beta1MeshMetric) IsSet

func (NullableV202101beta1MeshMetric) MarshalJSON

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

func (*NullableV202101beta1MeshMetric) Set

func (*NullableV202101beta1MeshMetric) UnmarshalJSON

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

func (*NullableV202101beta1MeshMetric) Unset

func (v *NullableV202101beta1MeshMetric) Unset()

type NullableV202101beta1MeshMetrics

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

func (NullableV202101beta1MeshMetrics) Get

func (NullableV202101beta1MeshMetrics) IsSet

func (NullableV202101beta1MeshMetrics) MarshalJSON

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

func (*NullableV202101beta1MeshMetrics) Set

func (*NullableV202101beta1MeshMetrics) UnmarshalJSON

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

func (*NullableV202101beta1MeshMetrics) Unset

type NullableV202101beta1MeshResponse

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

func (NullableV202101beta1MeshResponse) Get

func (NullableV202101beta1MeshResponse) IsSet

func (NullableV202101beta1MeshResponse) MarshalJSON

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

func (*NullableV202101beta1MeshResponse) Set

func (*NullableV202101beta1MeshResponse) UnmarshalJSON

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

func (*NullableV202101beta1MeshResponse) Unset

type NullableV202101beta1PatchAgentRequest

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

func (NullableV202101beta1PatchAgentRequest) Get

func (NullableV202101beta1PatchAgentRequest) IsSet

func (NullableV202101beta1PatchAgentRequest) MarshalJSON

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

func (*NullableV202101beta1PatchAgentRequest) Set

func (*NullableV202101beta1PatchAgentRequest) UnmarshalJSON

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

func (*NullableV202101beta1PatchAgentRequest) Unset

type NullableV202101beta1PatchAgentResponse

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

func (NullableV202101beta1PatchAgentResponse) Get

func (NullableV202101beta1PatchAgentResponse) IsSet

func (NullableV202101beta1PatchAgentResponse) MarshalJSON

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

func (*NullableV202101beta1PatchAgentResponse) Set

func (*NullableV202101beta1PatchAgentResponse) UnmarshalJSON

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

func (*NullableV202101beta1PatchAgentResponse) Unset

type NullableV202101beta1PatchTestRequest

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

func (NullableV202101beta1PatchTestRequest) Get

func (NullableV202101beta1PatchTestRequest) IsSet

func (NullableV202101beta1PatchTestRequest) MarshalJSON

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

func (*NullableV202101beta1PatchTestRequest) Set

func (*NullableV202101beta1PatchTestRequest) UnmarshalJSON

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

func (*NullableV202101beta1PatchTestRequest) Unset

type NullableV202101beta1PatchTestResponse

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

func (NullableV202101beta1PatchTestResponse) Get

func (NullableV202101beta1PatchTestResponse) IsSet

func (NullableV202101beta1PatchTestResponse) MarshalJSON

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

func (*NullableV202101beta1PatchTestResponse) Set

func (*NullableV202101beta1PatchTestResponse) UnmarshalJSON

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

func (*NullableV202101beta1PatchTestResponse) Unset

type NullableV202101beta1PingTaskDefinition

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

func (NullableV202101beta1PingTaskDefinition) Get

func (NullableV202101beta1PingTaskDefinition) IsSet

func (NullableV202101beta1PingTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1PingTaskDefinition) Set

func (*NullableV202101beta1PingTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1PingTaskDefinition) Unset

type NullableV202101beta1Region

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

func NewNullableV202101beta1Region

func NewNullableV202101beta1Region(val *V202101beta1Region) *NullableV202101beta1Region

func (NullableV202101beta1Region) Get

func (NullableV202101beta1Region) IsSet

func (v NullableV202101beta1Region) IsSet() bool

func (NullableV202101beta1Region) MarshalJSON

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

func (*NullableV202101beta1Region) Set

func (*NullableV202101beta1Region) UnmarshalJSON

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

func (*NullableV202101beta1Region) Unset

func (v *NullableV202101beta1Region) Unset()

type NullableV202101beta1SetTestStatusRequest

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

func (NullableV202101beta1SetTestStatusRequest) Get

func (NullableV202101beta1SetTestStatusRequest) IsSet

func (NullableV202101beta1SetTestStatusRequest) MarshalJSON

func (*NullableV202101beta1SetTestStatusRequest) Set

func (*NullableV202101beta1SetTestStatusRequest) UnmarshalJSON

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

func (*NullableV202101beta1SetTestStatusRequest) Unset

type NullableV202101beta1ShakeTaskDefinition

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

func (NullableV202101beta1ShakeTaskDefinition) Get

func (NullableV202101beta1ShakeTaskDefinition) IsSet

func (NullableV202101beta1ShakeTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1ShakeTaskDefinition) Set

func (*NullableV202101beta1ShakeTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1ShakeTaskDefinition) Unset

type NullableV202101beta1SiteTest

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

func NewNullableV202101beta1SiteTest

func NewNullableV202101beta1SiteTest(val *V202101beta1SiteTest) *NullableV202101beta1SiteTest

func (NullableV202101beta1SiteTest) Get

func (NullableV202101beta1SiteTest) IsSet

func (NullableV202101beta1SiteTest) MarshalJSON

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

func (*NullableV202101beta1SiteTest) Set

func (*NullableV202101beta1SiteTest) UnmarshalJSON

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

func (*NullableV202101beta1SiteTest) Unset

func (v *NullableV202101beta1SiteTest) Unset()

type NullableV202101beta1TagTest

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

func NewNullableV202101beta1TagTest

func NewNullableV202101beta1TagTest(val *V202101beta1TagTest) *NullableV202101beta1TagTest

func (NullableV202101beta1TagTest) Get

func (NullableV202101beta1TagTest) IsSet

func (NullableV202101beta1TagTest) MarshalJSON

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

func (*NullableV202101beta1TagTest) Set

func (*NullableV202101beta1TagTest) UnmarshalJSON

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

func (*NullableV202101beta1TagTest) Unset

func (v *NullableV202101beta1TagTest) Unset()

type NullableV202101beta1Task

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

func NewNullableV202101beta1Task

func NewNullableV202101beta1Task(val *V202101beta1Task) *NullableV202101beta1Task

func (NullableV202101beta1Task) Get

func (NullableV202101beta1Task) IsSet

func (v NullableV202101beta1Task) IsSet() bool

func (NullableV202101beta1Task) MarshalJSON

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

func (*NullableV202101beta1Task) Set

func (*NullableV202101beta1Task) UnmarshalJSON

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

func (*NullableV202101beta1Task) Unset

func (v *NullableV202101beta1Task) Unset()

type NullableV202101beta1TaskHealth

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

func (NullableV202101beta1TaskHealth) Get

func (NullableV202101beta1TaskHealth) IsSet

func (NullableV202101beta1TaskHealth) MarshalJSON

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

func (*NullableV202101beta1TaskHealth) Set

func (*NullableV202101beta1TaskHealth) UnmarshalJSON

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

func (*NullableV202101beta1TaskHealth) Unset

func (v *NullableV202101beta1TaskHealth) Unset()

type NullableV202101beta1TaskState

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

func (NullableV202101beta1TaskState) Get

func (NullableV202101beta1TaskState) IsSet

func (NullableV202101beta1TaskState) MarshalJSON

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

func (*NullableV202101beta1TaskState) Set

func (*NullableV202101beta1TaskState) UnmarshalJSON

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

func (*NullableV202101beta1TaskState) Unset

func (v *NullableV202101beta1TaskState) Unset()

type NullableV202101beta1Test

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

func NewNullableV202101beta1Test

func NewNullableV202101beta1Test(val *V202101beta1Test) *NullableV202101beta1Test

func (NullableV202101beta1Test) Get

func (NullableV202101beta1Test) IsSet

func (v NullableV202101beta1Test) IsSet() bool

func (NullableV202101beta1Test) MarshalJSON

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

func (*NullableV202101beta1Test) Set

func (*NullableV202101beta1Test) UnmarshalJSON

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

func (*NullableV202101beta1Test) Unset

func (v *NullableV202101beta1Test) Unset()

type NullableV202101beta1TestHealth

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

func (NullableV202101beta1TestHealth) Get

func (NullableV202101beta1TestHealth) IsSet

func (NullableV202101beta1TestHealth) MarshalJSON

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

func (*NullableV202101beta1TestHealth) Set

func (*NullableV202101beta1TestHealth) UnmarshalJSON

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

func (*NullableV202101beta1TestHealth) Unset

func (v *NullableV202101beta1TestHealth) Unset()

type NullableV202101beta1TestMonitoringSettings

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

func (NullableV202101beta1TestMonitoringSettings) Get

func (NullableV202101beta1TestMonitoringSettings) IsSet

func (NullableV202101beta1TestMonitoringSettings) MarshalJSON

func (*NullableV202101beta1TestMonitoringSettings) Set

func (*NullableV202101beta1TestMonitoringSettings) UnmarshalJSON

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

func (*NullableV202101beta1TestMonitoringSettings) Unset

type NullableV202101beta1TestPingSettings

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

func (NullableV202101beta1TestPingSettings) Get

func (NullableV202101beta1TestPingSettings) IsSet

func (NullableV202101beta1TestPingSettings) MarshalJSON

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

func (*NullableV202101beta1TestPingSettings) Set

func (*NullableV202101beta1TestPingSettings) UnmarshalJSON

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

func (*NullableV202101beta1TestPingSettings) Unset

type NullableV202101beta1TestSettings

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

func (NullableV202101beta1TestSettings) Get

func (NullableV202101beta1TestSettings) IsSet

func (NullableV202101beta1TestSettings) MarshalJSON

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

func (*NullableV202101beta1TestSettings) Set

func (*NullableV202101beta1TestSettings) UnmarshalJSON

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

func (*NullableV202101beta1TestSettings) Unset

type NullableV202101beta1TestStatus

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

func (NullableV202101beta1TestStatus) Get

func (NullableV202101beta1TestStatus) IsSet

func (NullableV202101beta1TestStatus) MarshalJSON

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

func (*NullableV202101beta1TestStatus) Set

func (*NullableV202101beta1TestStatus) UnmarshalJSON

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

func (*NullableV202101beta1TestStatus) Unset

func (v *NullableV202101beta1TestStatus) Unset()

type NullableV202101beta1TestTraceSettings

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

func (NullableV202101beta1TestTraceSettings) Get

func (NullableV202101beta1TestTraceSettings) IsSet

func (NullableV202101beta1TestTraceSettings) MarshalJSON

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

func (*NullableV202101beta1TestTraceSettings) Set

func (*NullableV202101beta1TestTraceSettings) UnmarshalJSON

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

func (*NullableV202101beta1TestTraceSettings) Unset

type NullableV202101beta1Trace

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

func NewNullableV202101beta1Trace

func NewNullableV202101beta1Trace(val *V202101beta1Trace) *NullableV202101beta1Trace

func (NullableV202101beta1Trace) Get

func (NullableV202101beta1Trace) IsSet

func (v NullableV202101beta1Trace) IsSet() bool

func (NullableV202101beta1Trace) MarshalJSON

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

func (*NullableV202101beta1Trace) Set

func (*NullableV202101beta1Trace) UnmarshalJSON

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

func (*NullableV202101beta1Trace) Unset

func (v *NullableV202101beta1Trace) Unset()

type NullableV202101beta1TraceHop

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

func NewNullableV202101beta1TraceHop

func NewNullableV202101beta1TraceHop(val *V202101beta1TraceHop) *NullableV202101beta1TraceHop

func (NullableV202101beta1TraceHop) Get

func (NullableV202101beta1TraceHop) IsSet

func (NullableV202101beta1TraceHop) MarshalJSON

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

func (*NullableV202101beta1TraceHop) Set

func (*NullableV202101beta1TraceHop) UnmarshalJSON

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

func (*NullableV202101beta1TraceHop) Unset

func (v *NullableV202101beta1TraceHop) Unset()

type NullableV202101beta1TraceTaskDefinition

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

func (NullableV202101beta1TraceTaskDefinition) Get

func (NullableV202101beta1TraceTaskDefinition) IsSet

func (NullableV202101beta1TraceTaskDefinition) MarshalJSON

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

func (*NullableV202101beta1TraceTaskDefinition) Set

func (*NullableV202101beta1TraceTaskDefinition) UnmarshalJSON

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

func (*NullableV202101beta1TraceTaskDefinition) Unset

type NullableV202101beta1TracerouteResult

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

func (NullableV202101beta1TracerouteResult) Get

func (NullableV202101beta1TracerouteResult) IsSet

func (NullableV202101beta1TracerouteResult) MarshalJSON

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

func (*NullableV202101beta1TracerouteResult) Set

func (*NullableV202101beta1TracerouteResult) UnmarshalJSON

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

func (*NullableV202101beta1TracerouteResult) Unset

type NullableV202101beta1UrlTest

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

func NewNullableV202101beta1UrlTest

func NewNullableV202101beta1UrlTest(val *V202101beta1UrlTest) *NullableV202101beta1UrlTest

func (NullableV202101beta1UrlTest) Get

func (NullableV202101beta1UrlTest) IsSet

func (NullableV202101beta1UrlTest) MarshalJSON

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

func (*NullableV202101beta1UrlTest) Set

func (*NullableV202101beta1UrlTest) UnmarshalJSON

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

func (*NullableV202101beta1UrlTest) Unset

func (v *NullableV202101beta1UrlTest) Unset()

type NullableV202101beta1UserInfo

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

func NewNullableV202101beta1UserInfo

func NewNullableV202101beta1UserInfo(val *V202101beta1UserInfo) *NullableV202101beta1UserInfo

func (NullableV202101beta1UserInfo) Get

func (NullableV202101beta1UserInfo) IsSet

func (NullableV202101beta1UserInfo) MarshalJSON

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

func (*NullableV202101beta1UserInfo) Set

func (*NullableV202101beta1UserInfo) UnmarshalJSON

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

func (*NullableV202101beta1UserInfo) Unset

func (v *NullableV202101beta1UserInfo) Unset()

type ProtobufAny

type ProtobufAny struct {
	TypeUrl *string `json:"typeUrl,omitempty"`
	Value   *string `json:"value,omitempty"`
}

ProtobufAny struct for ProtobufAny

func NewProtobufAny

func NewProtobufAny() *ProtobufAny

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

func NewProtobufAnyWithDefaults

func NewProtobufAnyWithDefaults() *ProtobufAny

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

func (*ProtobufAny) GetTypeUrl

func (o *ProtobufAny) GetTypeUrl() string

GetTypeUrl returns the TypeUrl field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeUrlOk

func (o *ProtobufAny) GetTypeUrlOk() (*string, bool)

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

func (*ProtobufAny) GetValue

func (o *ProtobufAny) GetValue() string

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

func (*ProtobufAny) GetValueOk

func (o *ProtobufAny) 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 (*ProtobufAny) HasTypeUrl

func (o *ProtobufAny) HasTypeUrl() bool

HasTypeUrl returns a boolean if a field has been set.

func (*ProtobufAny) HasValue

func (o *ProtobufAny) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON

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

func (*ProtobufAny) SetTypeUrl

func (o *ProtobufAny) SetTypeUrl(v string)

SetTypeUrl gets a reference to the given string and assigns it to the TypeUrl field.

func (*ProtobufAny) SetValue

func (o *ProtobufAny) SetValue(v string)

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

type RpcStatus

type RpcStatus struct {
	Code    *int32         `json:"code,omitempty"`
	Message *string        `json:"message,omitempty"`
	Details *[]ProtobufAny `json:"details,omitempty"`
}

RpcStatus struct for RpcStatus

func NewRpcStatus

func NewRpcStatus() *RpcStatus

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

func NewRpcStatusWithDefaults

func NewRpcStatusWithDefaults() *RpcStatus

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

func (*RpcStatus) GetCode

func (o *RpcStatus) GetCode() int32

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

func (*RpcStatus) GetCodeOk

func (o *RpcStatus) GetCodeOk() (*int32, bool)

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

func (*RpcStatus) GetDetails

func (o *RpcStatus) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*RpcStatus) GetDetailsOk

func (o *RpcStatus) GetDetailsOk() (*[]ProtobufAny, bool)

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

func (*RpcStatus) GetMessage

func (o *RpcStatus) GetMessage() string

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

func (*RpcStatus) GetMessageOk

func (o *RpcStatus) 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 (*RpcStatus) HasCode

func (o *RpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*RpcStatus) HasDetails

func (o *RpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RpcStatus) HasMessage

func (o *RpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RpcStatus) MarshalJSON

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

func (*RpcStatus) SetCode

func (o *RpcStatus) SetCode(v int32)

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

func (*RpcStatus) SetDetails

func (o *RpcStatus) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*RpcStatus) SetMessage

func (o *RpcStatus) SetMessage(v string)

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SyntheticsAdminServiceApiService

type SyntheticsAdminServiceApiService service

SyntheticsAdminServiceApiService SyntheticsAdminServiceApi service

func (*SyntheticsAdminServiceApiService) AgentDelete

* AgentDelete Delete an agent. * Deletes the agent specified with id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param agentId * @return ApiAgentDeleteRequest

func (*SyntheticsAdminServiceApiService) AgentDeleteExecute

func (a *SyntheticsAdminServiceApiService) AgentDeleteExecute(r ApiAgentDeleteRequest) (map[string]interface{}, *_nethttp.Response, error)

* Execute executes the request * @return map[string]interface{}

func (*SyntheticsAdminServiceApiService) AgentGet

* AgentGet Get information about an agent. * Returns information about the agent specified with id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param agentId * @return ApiAgentGetRequest

func (*SyntheticsAdminServiceApiService) AgentGetExecute

* Execute executes the request * @return V202101beta1GetAgentResponse

func (*SyntheticsAdminServiceApiService) AgentPatch

* AgentPatch Patch an agent. * Partially Updates the attributes of agent specified with id and update_mask fields. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param agentId * @return ApiAgentPatchRequest

func (*SyntheticsAdminServiceApiService) AgentPatchExecute

* Execute executes the request * @return V202101beta1PatchAgentResponse

func (*SyntheticsAdminServiceApiService) AgentsList

* AgentsList List Agents. * Returns a list of agents. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiAgentsListRequest

func (*SyntheticsAdminServiceApiService) AgentsListExecute

* Execute executes the request * @return V202101beta1ListAgentsResponse

func (*SyntheticsAdminServiceApiService) TestCreate

* TestCreate Create Synthetics Test. * Create synthetics test from request. Returns created test. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiTestCreateRequest

func (*SyntheticsAdminServiceApiService) TestCreateExecute

* Execute executes the request * @return V202101beta1CreateTestResponse

func (*SyntheticsAdminServiceApiService) TestDelete

* TestDelete Delete an Synthetics Test. * Deletes the synthetics test specified with id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiTestDeleteRequest

func (*SyntheticsAdminServiceApiService) TestDeleteExecute

func (a *SyntheticsAdminServiceApiService) TestDeleteExecute(r ApiTestDeleteRequest) (map[string]interface{}, *_nethttp.Response, error)

* Execute executes the request * @return map[string]interface{}

func (*SyntheticsAdminServiceApiService) TestGet

* TestGet Get information about Synthetics Test. * Returns information about synthetics test specified with test ID. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiTestGetRequest

func (*SyntheticsAdminServiceApiService) TestGetExecute

* Execute executes the request * @return V202101beta1GetTestResponse

func (*SyntheticsAdminServiceApiService) TestPatch

* TestPatch Patch a Synthetics Test. * Partially Updates the attributes of synthetics test specified with id and update_mask fields. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiTestPatchRequest

func (*SyntheticsAdminServiceApiService) TestPatchExecute

* Execute executes the request * @return V202101beta1PatchTestResponse

func (*SyntheticsAdminServiceApiService) TestStatusUpdate

* TestStatusUpdate Update a test status. * Update the status of a test. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiTestStatusUpdateRequest

func (*SyntheticsAdminServiceApiService) TestStatusUpdateExecute

func (a *SyntheticsAdminServiceApiService) TestStatusUpdateExecute(r ApiTestStatusUpdateRequest) (map[string]interface{}, *_nethttp.Response, error)

* Execute executes the request * @return map[string]interface{}

func (*SyntheticsAdminServiceApiService) TestsList

* TestsList List Synthetics Tests. * Returns a list of syntehtics tests. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiTestsListRequest

func (*SyntheticsAdminServiceApiService) TestsListExecute

* Execute executes the request * @return V202101beta1ListTestsResponse

type SyntheticsDataServiceApiService

type SyntheticsDataServiceApiService service

SyntheticsDataServiceApiService SyntheticsDataServiceApi service

func (*SyntheticsDataServiceApiService) GetHealthForTests

* GetHealthForTests Get health status for synthetics test. * Get synthetics health test for login user. Also returns mesh data on request. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetHealthForTestsRequest

func (*SyntheticsDataServiceApiService) GetHealthForTestsExecute

* Execute executes the request * @return V202101beta1GetHealthForTestsResponse

func (*SyntheticsDataServiceApiService) GetTraceForTest

* GetTraceForTest Get trace route data. * Get trace route data for the specific test id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id Test id * @return ApiGetTraceForTestRequest

func (*SyntheticsDataServiceApiService) GetTraceForTestExecute

* Execute executes the request * @return V202101beta1GetTraceForTestResponse

type V202101beta1ASN

type V202101beta1ASN struct {
	Id   *int64  `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

V202101beta1ASN struct for V202101beta1ASN

func NewV202101beta1ASN

func NewV202101beta1ASN() *V202101beta1ASN

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

func NewV202101beta1ASNWithDefaults

func NewV202101beta1ASNWithDefaults() *V202101beta1ASN

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

func (*V202101beta1ASN) GetId

func (o *V202101beta1ASN) GetId() int64

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

func (*V202101beta1ASN) GetIdOk

func (o *V202101beta1ASN) GetIdOk() (*int64, 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 (*V202101beta1ASN) GetName

func (o *V202101beta1ASN) GetName() string

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

func (*V202101beta1ASN) GetNameOk

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

func (o *V202101beta1ASN) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1ASN) HasName

func (o *V202101beta1ASN) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1ASN) MarshalJSON

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

func (*V202101beta1ASN) SetId

func (o *V202101beta1ASN) SetId(v int64)

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

func (*V202101beta1ASN) SetName

func (o *V202101beta1ASN) SetName(v string)

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

type V202101beta1Agent

type V202101beta1Agent struct {
	Id         *string                  `json:"id,omitempty"`
	Name       *string                  `json:"name,omitempty"`
	Status     *V202101beta1AgentStatus `json:"status,omitempty"`
	Alias      *string                  `json:"alias,omitempty"`
	Type       *string                  `json:"type,omitempty"`
	Os         *string                  `json:"os,omitempty"`
	Ip         *string                  `json:"ip,omitempty"`
	Lat        *float64                 `json:"lat,omitempty"`
	Long       *float64                 `json:"long,omitempty"`
	LastAuthed *time.Time               `json:"lastAuthed,omitempty"`
	Family     *V202101beta1IPFamily    `json:"family,omitempty"`
	Asn        *int64                   `json:"asn,omitempty"`
	SiteId     *string                  `json:"siteId,omitempty"`
	Version    *string                  `json:"version,omitempty"`
	Challenge  *string                  `json:"challenge,omitempty"`
	City       *string                  `json:"city,omitempty"`
	Region     *string                  `json:"region,omitempty"`
	Country    *string                  `json:"country,omitempty"`
	TestIds    *[]string                `json:"testIds,omitempty"`
	LocalIp    *string                  `json:"localIp,omitempty"`
}

V202101beta1Agent struct for V202101beta1Agent

func NewV202101beta1Agent

func NewV202101beta1Agent() *V202101beta1Agent

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

func NewV202101beta1AgentWithDefaults

func NewV202101beta1AgentWithDefaults() *V202101beta1Agent

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

func (*V202101beta1Agent) GetAlias

func (o *V202101beta1Agent) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*V202101beta1Agent) GetAliasOk

func (o *V202101beta1Agent) GetAliasOk() (*string, bool)

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

func (*V202101beta1Agent) GetAsn

func (o *V202101beta1Agent) GetAsn() int64

GetAsn returns the Asn field value if set, zero value otherwise.

func (*V202101beta1Agent) GetAsnOk

func (o *V202101beta1Agent) GetAsnOk() (*int64, bool)

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

func (*V202101beta1Agent) GetChallenge

func (o *V202101beta1Agent) GetChallenge() string

GetChallenge returns the Challenge field value if set, zero value otherwise.

func (*V202101beta1Agent) GetChallengeOk

func (o *V202101beta1Agent) GetChallengeOk() (*string, bool)

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

func (*V202101beta1Agent) GetCity

func (o *V202101beta1Agent) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*V202101beta1Agent) GetCityOk

func (o *V202101beta1Agent) GetCityOk() (*string, bool)

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

func (*V202101beta1Agent) GetCountry

func (o *V202101beta1Agent) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*V202101beta1Agent) GetCountryOk

func (o *V202101beta1Agent) GetCountryOk() (*string, bool)

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

func (*V202101beta1Agent) GetFamily

func (o *V202101beta1Agent) GetFamily() V202101beta1IPFamily

GetFamily returns the Family field value if set, zero value otherwise.

func (*V202101beta1Agent) GetFamilyOk

func (o *V202101beta1Agent) GetFamilyOk() (*V202101beta1IPFamily, bool)

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

func (*V202101beta1Agent) GetId

func (o *V202101beta1Agent) GetId() string

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

func (*V202101beta1Agent) GetIdOk

func (o *V202101beta1Agent) 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 (*V202101beta1Agent) GetIp

func (o *V202101beta1Agent) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*V202101beta1Agent) GetIpOk

func (o *V202101beta1Agent) GetIpOk() (*string, bool)

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

func (*V202101beta1Agent) GetLastAuthed

func (o *V202101beta1Agent) GetLastAuthed() time.Time

GetLastAuthed returns the LastAuthed field value if set, zero value otherwise.

func (*V202101beta1Agent) GetLastAuthedOk

func (o *V202101beta1Agent) GetLastAuthedOk() (*time.Time, bool)

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

func (*V202101beta1Agent) GetLat

func (o *V202101beta1Agent) GetLat() float64

GetLat returns the Lat field value if set, zero value otherwise.

func (*V202101beta1Agent) GetLatOk

func (o *V202101beta1Agent) GetLatOk() (*float64, bool)

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

func (*V202101beta1Agent) GetLocalIp

func (o *V202101beta1Agent) GetLocalIp() string

GetLocalIp returns the LocalIp field value if set, zero value otherwise.

func (*V202101beta1Agent) GetLocalIpOk

func (o *V202101beta1Agent) GetLocalIpOk() (*string, bool)

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

func (*V202101beta1Agent) GetLong

func (o *V202101beta1Agent) GetLong() float64

GetLong returns the Long field value if set, zero value otherwise.

func (*V202101beta1Agent) GetLongOk

func (o *V202101beta1Agent) GetLongOk() (*float64, bool)

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

func (*V202101beta1Agent) GetName

func (o *V202101beta1Agent) GetName() string

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

func (*V202101beta1Agent) GetNameOk

func (o *V202101beta1Agent) 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 (*V202101beta1Agent) GetOs

func (o *V202101beta1Agent) GetOs() string

GetOs returns the Os field value if set, zero value otherwise.

func (*V202101beta1Agent) GetOsOk

func (o *V202101beta1Agent) GetOsOk() (*string, bool)

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

func (*V202101beta1Agent) GetRegion

func (o *V202101beta1Agent) GetRegion() string

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

func (*V202101beta1Agent) GetRegionOk

func (o *V202101beta1Agent) 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 (*V202101beta1Agent) GetSiteId

func (o *V202101beta1Agent) GetSiteId() string

GetSiteId returns the SiteId field value if set, zero value otherwise.

func (*V202101beta1Agent) GetSiteIdOk

func (o *V202101beta1Agent) GetSiteIdOk() (*string, bool)

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

func (*V202101beta1Agent) GetStatus

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

func (*V202101beta1Agent) GetStatusOk

func (o *V202101beta1Agent) GetStatusOk() (*V202101beta1AgentStatus, 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 (*V202101beta1Agent) GetTestIds

func (o *V202101beta1Agent) GetTestIds() []string

GetTestIds returns the TestIds field value if set, zero value otherwise.

func (*V202101beta1Agent) GetTestIdsOk

func (o *V202101beta1Agent) GetTestIdsOk() (*[]string, bool)

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

func (*V202101beta1Agent) GetType

func (o *V202101beta1Agent) GetType() string

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

func (*V202101beta1Agent) GetTypeOk

func (o *V202101beta1Agent) 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 (*V202101beta1Agent) GetVersion

func (o *V202101beta1Agent) GetVersion() string

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

func (*V202101beta1Agent) GetVersionOk

func (o *V202101beta1Agent) 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 (*V202101beta1Agent) HasAlias

func (o *V202101beta1Agent) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*V202101beta1Agent) HasAsn

func (o *V202101beta1Agent) HasAsn() bool

HasAsn returns a boolean if a field has been set.

func (*V202101beta1Agent) HasChallenge

func (o *V202101beta1Agent) HasChallenge() bool

HasChallenge returns a boolean if a field has been set.

func (*V202101beta1Agent) HasCity

func (o *V202101beta1Agent) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*V202101beta1Agent) HasCountry

func (o *V202101beta1Agent) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*V202101beta1Agent) HasFamily

func (o *V202101beta1Agent) HasFamily() bool

HasFamily returns a boolean if a field has been set.

func (*V202101beta1Agent) HasId

func (o *V202101beta1Agent) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1Agent) HasIp

func (o *V202101beta1Agent) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*V202101beta1Agent) HasLastAuthed

func (o *V202101beta1Agent) HasLastAuthed() bool

HasLastAuthed returns a boolean if a field has been set.

func (*V202101beta1Agent) HasLat

func (o *V202101beta1Agent) HasLat() bool

HasLat returns a boolean if a field has been set.

func (*V202101beta1Agent) HasLocalIp

func (o *V202101beta1Agent) HasLocalIp() bool

HasLocalIp returns a boolean if a field has been set.

func (*V202101beta1Agent) HasLong

func (o *V202101beta1Agent) HasLong() bool

HasLong returns a boolean if a field has been set.

func (*V202101beta1Agent) HasName

func (o *V202101beta1Agent) HasName() bool

HasName returns a boolean if a field has been set.

func (*V202101beta1Agent) HasOs

func (o *V202101beta1Agent) HasOs() bool

HasOs returns a boolean if a field has been set.

func (*V202101beta1Agent) HasRegion

func (o *V202101beta1Agent) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*V202101beta1Agent) HasSiteId

func (o *V202101beta1Agent) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

func (*V202101beta1Agent) HasStatus

func (o *V202101beta1Agent) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V202101beta1Agent) HasTestIds

func (o *V202101beta1Agent) HasTestIds() bool

HasTestIds returns a boolean if a field has been set.

func (*V202101beta1Agent) HasType

func (o *V202101beta1Agent) HasType() bool

HasType returns a boolean if a field has been set.

func (*V202101beta1Agent) HasVersion

func (o *V202101beta1Agent) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (V202101beta1Agent) MarshalJSON

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

func (*V202101beta1Agent) SetAlias

func (o *V202101beta1Agent) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*V202101beta1Agent) SetAsn

func (o *V202101beta1Agent) SetAsn(v int64)

SetAsn gets a reference to the given int64 and assigns it to the Asn field.

func (*V202101beta1Agent) SetChallenge

func (o *V202101beta1Agent) SetChallenge(v string)

SetChallenge gets a reference to the given string and assigns it to the Challenge field.

func (*V202101beta1Agent) SetCity

func (o *V202101beta1Agent) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*V202101beta1Agent) SetCountry

func (o *V202101beta1Agent) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*V202101beta1Agent) SetFamily

func (o *V202101beta1Agent) SetFamily(v V202101beta1IPFamily)

SetFamily gets a reference to the given V202101beta1IPFamily and assigns it to the Family field.

func (*V202101beta1Agent) SetId

func (o *V202101beta1Agent) SetId(v string)

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

func (*V202101beta1Agent) SetIp

func (o *V202101beta1Agent) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*V202101beta1Agent) SetLastAuthed

func (o *V202101beta1Agent) SetLastAuthed(v time.Time)

SetLastAuthed gets a reference to the given time.Time and assigns it to the LastAuthed field.

func (*V202101beta1Agent) SetLat

func (o *V202101beta1Agent) SetLat(v float64)

SetLat gets a reference to the given float64 and assigns it to the Lat field.

func (*V202101beta1Agent) SetLocalIp

func (o *V202101beta1Agent) SetLocalIp(v string)

SetLocalIp gets a reference to the given string and assigns it to the LocalIp field.

func (*V202101beta1Agent) SetLong

func (o *V202101beta1Agent) SetLong(v float64)

SetLong gets a reference to the given float64 and assigns it to the Long field.

func (*V202101beta1Agent) SetName

func (o *V202101beta1Agent) SetName(v string)

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

func (*V202101beta1Agent) SetOs

func (o *V202101beta1Agent) SetOs(v string)

SetOs gets a reference to the given string and assigns it to the Os field.

func (*V202101beta1Agent) SetRegion

func (o *V202101beta1Agent) SetRegion(v string)

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

func (*V202101beta1Agent) SetSiteId

func (o *V202101beta1Agent) SetSiteId(v string)

SetSiteId gets a reference to the given string and assigns it to the SiteId field.

func (*V202101beta1Agent) SetStatus

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

func (*V202101beta1Agent) SetTestIds

func (o *V202101beta1Agent) SetTestIds(v []string)

SetTestIds gets a reference to the given []string and assigns it to the TestIds field.

func (*V202101beta1Agent) SetType

func (o *V202101beta1Agent) SetType(v string)

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

func (*V202101beta1Agent) SetVersion

func (o *V202101beta1Agent) SetVersion(v string)

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

type V202101beta1AgentHealth

type V202101beta1AgentHealth struct {
	Agent         *V202101beta1Agent          `json:"agent,omitempty"`
	Health        *[]V202101beta1HealthMoment `json:"health,omitempty"`
	OverallHealth *V202101beta1Health         `json:"overallHealth,omitempty"`
}

V202101beta1AgentHealth struct for V202101beta1AgentHealth

func NewV202101beta1AgentHealth

func NewV202101beta1AgentHealth() *V202101beta1AgentHealth

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

func NewV202101beta1AgentHealthWithDefaults

func NewV202101beta1AgentHealthWithDefaults() *V202101beta1AgentHealth

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

func (*V202101beta1AgentHealth) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1AgentHealth) GetAgentOk

func (o *V202101beta1AgentHealth) GetAgentOk() (*V202101beta1Agent, bool)

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

func (*V202101beta1AgentHealth) GetHealth

GetHealth returns the Health field value if set, zero value otherwise.

func (*V202101beta1AgentHealth) GetHealthOk

func (o *V202101beta1AgentHealth) GetHealthOk() (*[]V202101beta1HealthMoment, bool)

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

func (*V202101beta1AgentHealth) GetOverallHealth

func (o *V202101beta1AgentHealth) GetOverallHealth() V202101beta1Health

GetOverallHealth returns the OverallHealth field value if set, zero value otherwise.

func (*V202101beta1AgentHealth) GetOverallHealthOk

func (o *V202101beta1AgentHealth) GetOverallHealthOk() (*V202101beta1Health, bool)

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

func (*V202101beta1AgentHealth) HasAgent

func (o *V202101beta1AgentHealth) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*V202101beta1AgentHealth) HasHealth

func (o *V202101beta1AgentHealth) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V202101beta1AgentHealth) HasOverallHealth

func (o *V202101beta1AgentHealth) HasOverallHealth() bool

HasOverallHealth returns a boolean if a field has been set.

func (V202101beta1AgentHealth) MarshalJSON

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

func (*V202101beta1AgentHealth) SetAgent

SetAgent gets a reference to the given V202101beta1Agent and assigns it to the Agent field.

func (*V202101beta1AgentHealth) SetHealth

SetHealth gets a reference to the given []V202101beta1HealthMoment and assigns it to the Health field.

func (*V202101beta1AgentHealth) SetOverallHealth

func (o *V202101beta1AgentHealth) SetOverallHealth(v V202101beta1Health)

SetOverallHealth gets a reference to the given V202101beta1Health and assigns it to the OverallHealth field.

type V202101beta1AgentStatus

type V202101beta1AgentStatus string

V202101beta1AgentStatus the model 'V202101beta1AgentStatus'

const (
	V202101BETA1AGENTSTATUS_UNSPECIFIED V202101beta1AgentStatus = "AGENT_STATUS_UNSPECIFIED"
	V202101BETA1AGENTSTATUS_OK          V202101beta1AgentStatus = "AGENT_STATUS_OK"
	V202101BETA1AGENTSTATUS_WAIT        V202101beta1AgentStatus = "AGENT_STATUS_WAIT"
	V202101BETA1AGENTSTATUS_DELETED     V202101beta1AgentStatus = "AGENT_STATUS_DELETED"
)

List of v202101beta1AgentStatus

func NewV202101beta1AgentStatusFromValue

func NewV202101beta1AgentStatusFromValue(v string) (*V202101beta1AgentStatus, error)

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

func (V202101beta1AgentStatus) IsValid

func (v V202101beta1AgentStatus) IsValid() bool

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

func (V202101beta1AgentStatus) Ptr

Ptr returns reference to v202101beta1AgentStatus value

func (*V202101beta1AgentStatus) UnmarshalJSON

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

type V202101beta1AgentTaskConfig

type V202101beta1AgentTaskConfig struct {
	Id      *string   `json:"id,omitempty"`
	Targets *[]string `json:"targets,omitempty"`
}

V202101beta1AgentTaskConfig struct for V202101beta1AgentTaskConfig

func NewV202101beta1AgentTaskConfig

func NewV202101beta1AgentTaskConfig() *V202101beta1AgentTaskConfig

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

func NewV202101beta1AgentTaskConfigWithDefaults

func NewV202101beta1AgentTaskConfigWithDefaults() *V202101beta1AgentTaskConfig

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

func (*V202101beta1AgentTaskConfig) GetId

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

func (*V202101beta1AgentTaskConfig) GetIdOk

func (o *V202101beta1AgentTaskConfig) 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 (*V202101beta1AgentTaskConfig) GetTargets

func (o *V202101beta1AgentTaskConfig) GetTargets() []string

GetTargets returns the Targets field value if set, zero value otherwise.

func (*V202101beta1AgentTaskConfig) GetTargetsOk

func (o *V202101beta1AgentTaskConfig) GetTargetsOk() (*[]string, bool)

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

func (*V202101beta1AgentTaskConfig) HasId

func (o *V202101beta1AgentTaskConfig) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1AgentTaskConfig) HasTargets

func (o *V202101beta1AgentTaskConfig) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (V202101beta1AgentTaskConfig) MarshalJSON

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

func (*V202101beta1AgentTaskConfig) SetId

func (o *V202101beta1AgentTaskConfig) SetId(v string)

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

func (*V202101beta1AgentTaskConfig) SetTargets

func (o *V202101beta1AgentTaskConfig) SetTargets(v []string)

SetTargets gets a reference to the given []string and assigns it to the Targets field.

type V202101beta1AgentTest

type V202101beta1AgentTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1AgentTest struct for V202101beta1AgentTest

func NewV202101beta1AgentTest

func NewV202101beta1AgentTest() *V202101beta1AgentTest

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

func NewV202101beta1AgentTestWithDefaults

func NewV202101beta1AgentTestWithDefaults() *V202101beta1AgentTest

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

func (*V202101beta1AgentTest) GetTarget

func (o *V202101beta1AgentTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1AgentTest) GetTargetOk

func (o *V202101beta1AgentTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1AgentTest) HasTarget

func (o *V202101beta1AgentTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1AgentTest) MarshalJSON

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

func (*V202101beta1AgentTest) SetTarget

func (o *V202101beta1AgentTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1City

type V202101beta1City struct {
	Id        *string  `json:"id,omitempty"`
	Name      *string  `json:"name,omitempty"`
	Latitude  *float64 `json:"latitude,omitempty"`
	Longitude *float64 `json:"longitude,omitempty"`
}

V202101beta1City struct for V202101beta1City

func NewV202101beta1City

func NewV202101beta1City() *V202101beta1City

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

func NewV202101beta1CityWithDefaults

func NewV202101beta1CityWithDefaults() *V202101beta1City

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

func (*V202101beta1City) GetId

func (o *V202101beta1City) GetId() string

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

func (*V202101beta1City) GetIdOk

func (o *V202101beta1City) 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 (*V202101beta1City) GetLatitude

func (o *V202101beta1City) GetLatitude() float64

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*V202101beta1City) GetLatitudeOk

func (o *V202101beta1City) GetLatitudeOk() (*float64, bool)

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

func (*V202101beta1City) GetLongitude

func (o *V202101beta1City) GetLongitude() float64

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*V202101beta1City) GetLongitudeOk

func (o *V202101beta1City) GetLongitudeOk() (*float64, bool)

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

func (*V202101beta1City) GetName

func (o *V202101beta1City) GetName() string

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

func (*V202101beta1City) GetNameOk

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

func (o *V202101beta1City) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1City) HasLatitude

func (o *V202101beta1City) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*V202101beta1City) HasLongitude

func (o *V202101beta1City) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*V202101beta1City) HasName

func (o *V202101beta1City) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1City) MarshalJSON

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

func (*V202101beta1City) SetId

func (o *V202101beta1City) SetId(v string)

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

func (*V202101beta1City) SetLatitude

func (o *V202101beta1City) SetLatitude(v float64)

SetLatitude gets a reference to the given float64 and assigns it to the Latitude field.

func (*V202101beta1City) SetLongitude

func (o *V202101beta1City) SetLongitude(v float64)

SetLongitude gets a reference to the given float64 and assigns it to the Longitude field.

func (*V202101beta1City) SetName

func (o *V202101beta1City) SetName(v string)

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

type V202101beta1Country

type V202101beta1Country struct {
	Code *string `json:"code,omitempty"`
	Name *string `json:"name,omitempty"`
}

V202101beta1Country struct for V202101beta1Country

func NewV202101beta1Country

func NewV202101beta1Country() *V202101beta1Country

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

func NewV202101beta1CountryWithDefaults

func NewV202101beta1CountryWithDefaults() *V202101beta1Country

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

func (*V202101beta1Country) GetCode

func (o *V202101beta1Country) GetCode() string

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

func (*V202101beta1Country) GetCodeOk

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

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

func (*V202101beta1Country) GetName

func (o *V202101beta1Country) GetName() string

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

func (*V202101beta1Country) GetNameOk

func (o *V202101beta1Country) 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 (*V202101beta1Country) HasCode

func (o *V202101beta1Country) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*V202101beta1Country) HasName

func (o *V202101beta1Country) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1Country) MarshalJSON

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

func (*V202101beta1Country) SetCode

func (o *V202101beta1Country) SetCode(v string)

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

func (*V202101beta1Country) SetName

func (o *V202101beta1Country) SetName(v string)

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

type V202101beta1CreateTestRequest

type V202101beta1CreateTestRequest struct {
	Test *V202101beta1Test `json:"test,omitempty"`
}

V202101beta1CreateTestRequest struct for V202101beta1CreateTestRequest

func NewV202101beta1CreateTestRequest

func NewV202101beta1CreateTestRequest() *V202101beta1CreateTestRequest

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

func NewV202101beta1CreateTestRequestWithDefaults

func NewV202101beta1CreateTestRequestWithDefaults() *V202101beta1CreateTestRequest

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

func (*V202101beta1CreateTestRequest) GetTest

GetTest returns the Test field value if set, zero value otherwise.

func (*V202101beta1CreateTestRequest) GetTestOk

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

func (*V202101beta1CreateTestRequest) HasTest

func (o *V202101beta1CreateTestRequest) HasTest() bool

HasTest returns a boolean if a field has been set.

func (V202101beta1CreateTestRequest) MarshalJSON

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

func (*V202101beta1CreateTestRequest) SetTest

SetTest gets a reference to the given V202101beta1Test and assigns it to the Test field.

type V202101beta1CreateTestResponse

type V202101beta1CreateTestResponse struct {
	Test *V202101beta1Test `json:"test,omitempty"`
}

V202101beta1CreateTestResponse struct for V202101beta1CreateTestResponse

func NewV202101beta1CreateTestResponse

func NewV202101beta1CreateTestResponse() *V202101beta1CreateTestResponse

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

func NewV202101beta1CreateTestResponseWithDefaults

func NewV202101beta1CreateTestResponseWithDefaults() *V202101beta1CreateTestResponse

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

func (*V202101beta1CreateTestResponse) GetTest

GetTest returns the Test field value if set, zero value otherwise.

func (*V202101beta1CreateTestResponse) GetTestOk

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

func (*V202101beta1CreateTestResponse) HasTest

func (o *V202101beta1CreateTestResponse) HasTest() bool

HasTest returns a boolean if a field has been set.

func (V202101beta1CreateTestResponse) MarshalJSON

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

func (*V202101beta1CreateTestResponse) SetTest

SetTest gets a reference to the given V202101beta1Test and assigns it to the Test field.

type V202101beta1DNS

type V202101beta1DNS struct {
	Name *string `json:"name,omitempty"`
}

V202101beta1DNS struct for V202101beta1DNS

func NewV202101beta1DNS

func NewV202101beta1DNS() *V202101beta1DNS

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

func NewV202101beta1DNSWithDefaults

func NewV202101beta1DNSWithDefaults() *V202101beta1DNS

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

func (*V202101beta1DNS) GetName

func (o *V202101beta1DNS) GetName() string

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

func (*V202101beta1DNS) GetNameOk

func (o *V202101beta1DNS) 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 (*V202101beta1DNS) HasName

func (o *V202101beta1DNS) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1DNS) MarshalJSON

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

func (*V202101beta1DNS) SetName

func (o *V202101beta1DNS) SetName(v string)

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

type V202101beta1DNSTaskDefinition

type V202101beta1DNSTaskDefinition struct {
	Target   *string `json:"target,omitempty"`
	Period   *int64  `json:"period,omitempty"`
	Expiry   *int64  `json:"expiry,omitempty"`
	Count    *int64  `json:"count,omitempty"`
	Port     *int64  `json:"port,omitempty"`
	Type     *string `json:"type,omitempty"`
	Resolver *string `json:"resolver,omitempty"`
}

V202101beta1DNSTaskDefinition struct for V202101beta1DNSTaskDefinition

func NewV202101beta1DNSTaskDefinition

func NewV202101beta1DNSTaskDefinition() *V202101beta1DNSTaskDefinition

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

func NewV202101beta1DNSTaskDefinitionWithDefaults

func NewV202101beta1DNSTaskDefinitionWithDefaults() *V202101beta1DNSTaskDefinition

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

func (*V202101beta1DNSTaskDefinition) GetCount

func (o *V202101beta1DNSTaskDefinition) GetCount() int64

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

func (*V202101beta1DNSTaskDefinition) GetCountOk

func (o *V202101beta1DNSTaskDefinition) GetCountOk() (*int64, 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 (*V202101beta1DNSTaskDefinition) GetExpiry

func (o *V202101beta1DNSTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1DNSTaskDefinition) GetExpiryOk

func (o *V202101beta1DNSTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1DNSTaskDefinition) GetPeriod

func (o *V202101beta1DNSTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1DNSTaskDefinition) GetPeriodOk

func (o *V202101beta1DNSTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1DNSTaskDefinition) GetPort

func (o *V202101beta1DNSTaskDefinition) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*V202101beta1DNSTaskDefinition) GetPortOk

func (o *V202101beta1DNSTaskDefinition) GetPortOk() (*int64, bool)

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

func (*V202101beta1DNSTaskDefinition) GetResolver

func (o *V202101beta1DNSTaskDefinition) GetResolver() string

GetResolver returns the Resolver field value if set, zero value otherwise.

func (*V202101beta1DNSTaskDefinition) GetResolverOk

func (o *V202101beta1DNSTaskDefinition) GetResolverOk() (*string, bool)

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

func (*V202101beta1DNSTaskDefinition) GetTarget

func (o *V202101beta1DNSTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1DNSTaskDefinition) GetTargetOk

func (o *V202101beta1DNSTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1DNSTaskDefinition) GetType

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

func (*V202101beta1DNSTaskDefinition) GetTypeOk

func (o *V202101beta1DNSTaskDefinition) 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 (*V202101beta1DNSTaskDefinition) HasCount

func (o *V202101beta1DNSTaskDefinition) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasExpiry

func (o *V202101beta1DNSTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasPeriod

func (o *V202101beta1DNSTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasPort

func (o *V202101beta1DNSTaskDefinition) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasResolver

func (o *V202101beta1DNSTaskDefinition) HasResolver() bool

HasResolver returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasTarget

func (o *V202101beta1DNSTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*V202101beta1DNSTaskDefinition) HasType

func (o *V202101beta1DNSTaskDefinition) HasType() bool

HasType returns a boolean if a field has been set.

func (V202101beta1DNSTaskDefinition) MarshalJSON

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

func (*V202101beta1DNSTaskDefinition) SetCount

func (o *V202101beta1DNSTaskDefinition) SetCount(v int64)

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

func (*V202101beta1DNSTaskDefinition) SetExpiry

func (o *V202101beta1DNSTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1DNSTaskDefinition) SetPeriod

func (o *V202101beta1DNSTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1DNSTaskDefinition) SetPort

func (o *V202101beta1DNSTaskDefinition) SetPort(v int64)

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

func (*V202101beta1DNSTaskDefinition) SetResolver

func (o *V202101beta1DNSTaskDefinition) SetResolver(v string)

SetResolver gets a reference to the given string and assigns it to the Resolver field.

func (*V202101beta1DNSTaskDefinition) SetTarget

func (o *V202101beta1DNSTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*V202101beta1DNSTaskDefinition) SetType

func (o *V202101beta1DNSTaskDefinition) SetType(v string)

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

type V202101beta1DnsTest

type V202101beta1DnsTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1DnsTest struct for V202101beta1DnsTest

func NewV202101beta1DnsTest

func NewV202101beta1DnsTest() *V202101beta1DnsTest

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

func NewV202101beta1DnsTestWithDefaults

func NewV202101beta1DnsTestWithDefaults() *V202101beta1DnsTest

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

func (*V202101beta1DnsTest) GetTarget

func (o *V202101beta1DnsTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1DnsTest) GetTargetOk

func (o *V202101beta1DnsTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1DnsTest) HasTarget

func (o *V202101beta1DnsTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1DnsTest) MarshalJSON

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

func (*V202101beta1DnsTest) SetTarget

func (o *V202101beta1DnsTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1FlowTest

type V202101beta1FlowTest struct {
	Target                      *string `json:"target,omitempty"`
	TargetRefreshIntervalMillis *int64  `json:"targetRefreshIntervalMillis,omitempty"`
	MaxTasks                    *int64  `json:"maxTasks,omitempty"`
	Type                        *string `json:"type,omitempty"`
	InetDirection               *string `json:"inetDirection,omitempty"`
	Direction                   *string `json:"direction,omitempty"`
}

V202101beta1FlowTest struct for V202101beta1FlowTest

func NewV202101beta1FlowTest

func NewV202101beta1FlowTest() *V202101beta1FlowTest

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

func NewV202101beta1FlowTestWithDefaults

func NewV202101beta1FlowTestWithDefaults() *V202101beta1FlowTest

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

func (*V202101beta1FlowTest) GetDirection

func (o *V202101beta1FlowTest) GetDirection() string

GetDirection returns the Direction field value if set, zero value otherwise.

func (*V202101beta1FlowTest) GetDirectionOk

func (o *V202101beta1FlowTest) GetDirectionOk() (*string, bool)

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

func (*V202101beta1FlowTest) GetInetDirection

func (o *V202101beta1FlowTest) GetInetDirection() string

GetInetDirection returns the InetDirection field value if set, zero value otherwise.

func (*V202101beta1FlowTest) GetInetDirectionOk

func (o *V202101beta1FlowTest) GetInetDirectionOk() (*string, bool)

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

func (*V202101beta1FlowTest) GetMaxTasks

func (o *V202101beta1FlowTest) GetMaxTasks() int64

GetMaxTasks returns the MaxTasks field value if set, zero value otherwise.

func (*V202101beta1FlowTest) GetMaxTasksOk

func (o *V202101beta1FlowTest) GetMaxTasksOk() (*int64, bool)

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

func (*V202101beta1FlowTest) GetTarget

func (o *V202101beta1FlowTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1FlowTest) GetTargetOk

func (o *V202101beta1FlowTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1FlowTest) GetTargetRefreshIntervalMillis

func (o *V202101beta1FlowTest) GetTargetRefreshIntervalMillis() int64

GetTargetRefreshIntervalMillis returns the TargetRefreshIntervalMillis field value if set, zero value otherwise.

func (*V202101beta1FlowTest) GetTargetRefreshIntervalMillisOk

func (o *V202101beta1FlowTest) GetTargetRefreshIntervalMillisOk() (*int64, bool)

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

func (*V202101beta1FlowTest) GetType

func (o *V202101beta1FlowTest) GetType() string

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

func (*V202101beta1FlowTest) GetTypeOk

func (o *V202101beta1FlowTest) 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 (*V202101beta1FlowTest) HasDirection

func (o *V202101beta1FlowTest) HasDirection() bool

HasDirection returns a boolean if a field has been set.

func (*V202101beta1FlowTest) HasInetDirection

func (o *V202101beta1FlowTest) HasInetDirection() bool

HasInetDirection returns a boolean if a field has been set.

func (*V202101beta1FlowTest) HasMaxTasks

func (o *V202101beta1FlowTest) HasMaxTasks() bool

HasMaxTasks returns a boolean if a field has been set.

func (*V202101beta1FlowTest) HasTarget

func (o *V202101beta1FlowTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*V202101beta1FlowTest) HasTargetRefreshIntervalMillis

func (o *V202101beta1FlowTest) HasTargetRefreshIntervalMillis() bool

HasTargetRefreshIntervalMillis returns a boolean if a field has been set.

func (*V202101beta1FlowTest) HasType

func (o *V202101beta1FlowTest) HasType() bool

HasType returns a boolean if a field has been set.

func (V202101beta1FlowTest) MarshalJSON

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

func (*V202101beta1FlowTest) SetDirection

func (o *V202101beta1FlowTest) SetDirection(v string)

SetDirection gets a reference to the given string and assigns it to the Direction field.

func (*V202101beta1FlowTest) SetInetDirection

func (o *V202101beta1FlowTest) SetInetDirection(v string)

SetInetDirection gets a reference to the given string and assigns it to the InetDirection field.

func (*V202101beta1FlowTest) SetMaxTasks

func (o *V202101beta1FlowTest) SetMaxTasks(v int64)

SetMaxTasks gets a reference to the given int64 and assigns it to the MaxTasks field.

func (*V202101beta1FlowTest) SetTarget

func (o *V202101beta1FlowTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*V202101beta1FlowTest) SetTargetRefreshIntervalMillis

func (o *V202101beta1FlowTest) SetTargetRefreshIntervalMillis(v int64)

SetTargetRefreshIntervalMillis gets a reference to the given int64 and assigns it to the TargetRefreshIntervalMillis field.

func (*V202101beta1FlowTest) SetType

func (o *V202101beta1FlowTest) SetType(v string)

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

type V202101beta1Geo

type V202101beta1Geo struct {
	Country *V202101beta1Country `json:"country,omitempty"`
	Region  *V202101beta1Region  `json:"region,omitempty"`
	City    *V202101beta1City    `json:"city,omitempty"`
}

V202101beta1Geo struct for V202101beta1Geo

func NewV202101beta1Geo

func NewV202101beta1Geo() *V202101beta1Geo

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

func NewV202101beta1GeoWithDefaults

func NewV202101beta1GeoWithDefaults() *V202101beta1Geo

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

func (*V202101beta1Geo) GetCity

func (o *V202101beta1Geo) GetCity() V202101beta1City

GetCity returns the City field value if set, zero value otherwise.

func (*V202101beta1Geo) GetCityOk

func (o *V202101beta1Geo) GetCityOk() (*V202101beta1City, bool)

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

func (*V202101beta1Geo) GetCountry

func (o *V202101beta1Geo) GetCountry() V202101beta1Country

GetCountry returns the Country field value if set, zero value otherwise.

func (*V202101beta1Geo) GetCountryOk

func (o *V202101beta1Geo) GetCountryOk() (*V202101beta1Country, bool)

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

func (*V202101beta1Geo) GetRegion

func (o *V202101beta1Geo) GetRegion() V202101beta1Region

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

func (*V202101beta1Geo) GetRegionOk

func (o *V202101beta1Geo) GetRegionOk() (*V202101beta1Region, 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 (*V202101beta1Geo) HasCity

func (o *V202101beta1Geo) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*V202101beta1Geo) HasCountry

func (o *V202101beta1Geo) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*V202101beta1Geo) HasRegion

func (o *V202101beta1Geo) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (V202101beta1Geo) MarshalJSON

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

func (*V202101beta1Geo) SetCity

func (o *V202101beta1Geo) SetCity(v V202101beta1City)

SetCity gets a reference to the given V202101beta1City and assigns it to the City field.

func (*V202101beta1Geo) SetCountry

func (o *V202101beta1Geo) SetCountry(v V202101beta1Country)

SetCountry gets a reference to the given V202101beta1Country and assigns it to the Country field.

func (*V202101beta1Geo) SetRegion

func (o *V202101beta1Geo) SetRegion(v V202101beta1Region)

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

type V202101beta1GetAgentResponse

type V202101beta1GetAgentResponse struct {
	Agent *V202101beta1Agent `json:"agent,omitempty"`
}

V202101beta1GetAgentResponse struct for V202101beta1GetAgentResponse

func NewV202101beta1GetAgentResponse

func NewV202101beta1GetAgentResponse() *V202101beta1GetAgentResponse

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

func NewV202101beta1GetAgentResponseWithDefaults

func NewV202101beta1GetAgentResponseWithDefaults() *V202101beta1GetAgentResponse

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

func (*V202101beta1GetAgentResponse) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1GetAgentResponse) GetAgentOk

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

func (*V202101beta1GetAgentResponse) HasAgent

func (o *V202101beta1GetAgentResponse) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (V202101beta1GetAgentResponse) MarshalJSON

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

func (*V202101beta1GetAgentResponse) SetAgent

SetAgent gets a reference to the given V202101beta1Agent and assigns it to the Agent field.

type V202101beta1GetHealthForTestsRequest

type V202101beta1GetHealthForTestsRequest struct {
	// List of ids of the tests to get health for.
	Ids *[]string `json:"ids,omitempty"`
	// Start of the time interval for this query.
	StartTime *time.Time `json:"startTime,omitempty"`
	// End of the time interval for this query.
	EndTime  *time.Time `json:"endTime,omitempty"`
	AgentIds *[]string  `json:"agentIds,omitempty"`
	// Optionally only look at a subset of tasks -- this lets you limit targets.
	TaskIds *[]string `json:"taskIds,omitempty"`
	Augment *bool     `json:"augment,omitempty"`
}

V202101beta1GetHealthForTestsRequest struct for V202101beta1GetHealthForTestsRequest

func NewV202101beta1GetHealthForTestsRequest

func NewV202101beta1GetHealthForTestsRequest() *V202101beta1GetHealthForTestsRequest

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

func NewV202101beta1GetHealthForTestsRequestWithDefaults

func NewV202101beta1GetHealthForTestsRequestWithDefaults() *V202101beta1GetHealthForTestsRequest

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

func (*V202101beta1GetHealthForTestsRequest) GetAgentIds

func (o *V202101beta1GetHealthForTestsRequest) GetAgentIds() []string

GetAgentIds returns the AgentIds field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetAgentIdsOk

func (o *V202101beta1GetHealthForTestsRequest) GetAgentIdsOk() (*[]string, bool)

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

func (*V202101beta1GetHealthForTestsRequest) GetAugment

GetAugment returns the Augment field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetAugmentOk

func (o *V202101beta1GetHealthForTestsRequest) GetAugmentOk() (*bool, bool)

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

func (*V202101beta1GetHealthForTestsRequest) GetEndTime

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetEndTimeOk

func (o *V202101beta1GetHealthForTestsRequest) GetEndTimeOk() (*time.Time, 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 (*V202101beta1GetHealthForTestsRequest) GetIds

GetIds returns the Ids field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetIdsOk

func (o *V202101beta1GetHealthForTestsRequest) GetIdsOk() (*[]string, bool)

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

func (*V202101beta1GetHealthForTestsRequest) GetStartTime

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetStartTimeOk

func (o *V202101beta1GetHealthForTestsRequest) GetStartTimeOk() (*time.Time, 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 (*V202101beta1GetHealthForTestsRequest) GetTaskIds

func (o *V202101beta1GetHealthForTestsRequest) GetTaskIds() []string

GetTaskIds returns the TaskIds field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsRequest) GetTaskIdsOk

func (o *V202101beta1GetHealthForTestsRequest) GetTaskIdsOk() (*[]string, bool)

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

func (*V202101beta1GetHealthForTestsRequest) HasAgentIds

func (o *V202101beta1GetHealthForTestsRequest) HasAgentIds() bool

HasAgentIds returns a boolean if a field has been set.

func (*V202101beta1GetHealthForTestsRequest) HasAugment

HasAugment returns a boolean if a field has been set.

func (*V202101beta1GetHealthForTestsRequest) HasEndTime

HasEndTime returns a boolean if a field has been set.

func (*V202101beta1GetHealthForTestsRequest) HasIds

HasIds returns a boolean if a field has been set.

func (*V202101beta1GetHealthForTestsRequest) HasStartTime

func (o *V202101beta1GetHealthForTestsRequest) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*V202101beta1GetHealthForTestsRequest) HasTaskIds

HasTaskIds returns a boolean if a field has been set.

func (V202101beta1GetHealthForTestsRequest) MarshalJSON

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

func (*V202101beta1GetHealthForTestsRequest) SetAgentIds

func (o *V202101beta1GetHealthForTestsRequest) SetAgentIds(v []string)

SetAgentIds gets a reference to the given []string and assigns it to the AgentIds field.

func (*V202101beta1GetHealthForTestsRequest) SetAugment

func (o *V202101beta1GetHealthForTestsRequest) SetAugment(v bool)

SetAugment gets a reference to the given bool and assigns it to the Augment field.

func (*V202101beta1GetHealthForTestsRequest) SetEndTime

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*V202101beta1GetHealthForTestsRequest) SetIds

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*V202101beta1GetHealthForTestsRequest) SetStartTime

func (o *V202101beta1GetHealthForTestsRequest) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*V202101beta1GetHealthForTestsRequest) SetTaskIds

func (o *V202101beta1GetHealthForTestsRequest) SetTaskIds(v []string)

SetTaskIds gets a reference to the given []string and assigns it to the TaskIds field.

type V202101beta1GetHealthForTestsResponse

type V202101beta1GetHealthForTestsResponse struct {
	Health *[]V202101beta1TestHealth `json:"health,omitempty"`
}

V202101beta1GetHealthForTestsResponse struct for V202101beta1GetHealthForTestsResponse

func NewV202101beta1GetHealthForTestsResponse

func NewV202101beta1GetHealthForTestsResponse() *V202101beta1GetHealthForTestsResponse

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

func NewV202101beta1GetHealthForTestsResponseWithDefaults

func NewV202101beta1GetHealthForTestsResponseWithDefaults() *V202101beta1GetHealthForTestsResponse

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

func (*V202101beta1GetHealthForTestsResponse) GetHealth

GetHealth returns the Health field value if set, zero value otherwise.

func (*V202101beta1GetHealthForTestsResponse) GetHealthOk

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

func (*V202101beta1GetHealthForTestsResponse) HasHealth

HasHealth returns a boolean if a field has been set.

func (V202101beta1GetHealthForTestsResponse) MarshalJSON

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

func (*V202101beta1GetHealthForTestsResponse) SetHealth

SetHealth gets a reference to the given []V202101beta1TestHealth and assigns it to the Health field.

type V202101beta1GetTestResponse

type V202101beta1GetTestResponse struct {
	Test *V202101beta1Test `json:"test,omitempty"`
}

V202101beta1GetTestResponse struct for V202101beta1GetTestResponse

func NewV202101beta1GetTestResponse

func NewV202101beta1GetTestResponse() *V202101beta1GetTestResponse

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

func NewV202101beta1GetTestResponseWithDefaults

func NewV202101beta1GetTestResponseWithDefaults() *V202101beta1GetTestResponse

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

func (*V202101beta1GetTestResponse) GetTest

GetTest returns the Test field value if set, zero value otherwise.

func (*V202101beta1GetTestResponse) GetTestOk

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

func (*V202101beta1GetTestResponse) HasTest

func (o *V202101beta1GetTestResponse) HasTest() bool

HasTest returns a boolean if a field has been set.

func (V202101beta1GetTestResponse) MarshalJSON

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

func (*V202101beta1GetTestResponse) SetTest

SetTest gets a reference to the given V202101beta1Test and assigns it to the Test field.

type V202101beta1GetTraceForTestRequest

type V202101beta1GetTraceForTestRequest struct {
	Id *string `json:"id,omitempty"`
	// Start of the time interval for this query.
	StartTime *time.Time `json:"startTime,omitempty"`
	// End of the time interval for this query.
	EndTime   *time.Time `json:"endTime,omitempty"`
	AgentIds  *[]string  `json:"agentIds,omitempty"`
	TargetIps *[]string  `json:"targetIps,omitempty"`
}

V202101beta1GetTraceForTestRequest struct for V202101beta1GetTraceForTestRequest

func NewV202101beta1GetTraceForTestRequest

func NewV202101beta1GetTraceForTestRequest() *V202101beta1GetTraceForTestRequest

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

func NewV202101beta1GetTraceForTestRequestWithDefaults

func NewV202101beta1GetTraceForTestRequestWithDefaults() *V202101beta1GetTraceForTestRequest

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

func (*V202101beta1GetTraceForTestRequest) GetAgentIds

func (o *V202101beta1GetTraceForTestRequest) GetAgentIds() []string

GetAgentIds returns the AgentIds field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestRequest) GetAgentIdsOk

func (o *V202101beta1GetTraceForTestRequest) GetAgentIdsOk() (*[]string, bool)

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

func (*V202101beta1GetTraceForTestRequest) GetEndTime

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestRequest) GetEndTimeOk

func (o *V202101beta1GetTraceForTestRequest) GetEndTimeOk() (*time.Time, 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 (*V202101beta1GetTraceForTestRequest) GetId

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

func (*V202101beta1GetTraceForTestRequest) GetIdOk

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

func (*V202101beta1GetTraceForTestRequest) GetStartTime

func (o *V202101beta1GetTraceForTestRequest) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestRequest) GetStartTimeOk

func (o *V202101beta1GetTraceForTestRequest) GetStartTimeOk() (*time.Time, 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 (*V202101beta1GetTraceForTestRequest) GetTargetIps

func (o *V202101beta1GetTraceForTestRequest) GetTargetIps() []string

GetTargetIps returns the TargetIps field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestRequest) GetTargetIpsOk

func (o *V202101beta1GetTraceForTestRequest) GetTargetIpsOk() (*[]string, bool)

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

func (*V202101beta1GetTraceForTestRequest) HasAgentIds

func (o *V202101beta1GetTraceForTestRequest) HasAgentIds() bool

HasAgentIds returns a boolean if a field has been set.

func (*V202101beta1GetTraceForTestRequest) HasEndTime

func (o *V202101beta1GetTraceForTestRequest) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*V202101beta1GetTraceForTestRequest) HasId

HasId returns a boolean if a field has been set.

func (*V202101beta1GetTraceForTestRequest) HasStartTime

func (o *V202101beta1GetTraceForTestRequest) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*V202101beta1GetTraceForTestRequest) HasTargetIps

func (o *V202101beta1GetTraceForTestRequest) HasTargetIps() bool

HasTargetIps returns a boolean if a field has been set.

func (V202101beta1GetTraceForTestRequest) MarshalJSON

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

func (*V202101beta1GetTraceForTestRequest) SetAgentIds

func (o *V202101beta1GetTraceForTestRequest) SetAgentIds(v []string)

SetAgentIds gets a reference to the given []string and assigns it to the AgentIds field.

func (*V202101beta1GetTraceForTestRequest) SetEndTime

func (o *V202101beta1GetTraceForTestRequest) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*V202101beta1GetTraceForTestRequest) SetId

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

func (*V202101beta1GetTraceForTestRequest) SetStartTime

func (o *V202101beta1GetTraceForTestRequest) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*V202101beta1GetTraceForTestRequest) SetTargetIps

func (o *V202101beta1GetTraceForTestRequest) SetTargetIps(v []string)

SetTargetIps gets a reference to the given []string and assigns it to the TargetIps field.

type V202101beta1GetTraceForTestResponse

type V202101beta1GetTraceForTestResponse struct {
	IpInfo      *[]V202101beta1IPInfo           `json:"ipInfo,omitempty"`
	TraceRoutes *[]V202101beta1TracerouteResult `json:"traceRoutes,omitempty"`
}

V202101beta1GetTraceForTestResponse struct for V202101beta1GetTraceForTestResponse

func NewV202101beta1GetTraceForTestResponse

func NewV202101beta1GetTraceForTestResponse() *V202101beta1GetTraceForTestResponse

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

func NewV202101beta1GetTraceForTestResponseWithDefaults

func NewV202101beta1GetTraceForTestResponseWithDefaults() *V202101beta1GetTraceForTestResponse

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

func (*V202101beta1GetTraceForTestResponse) GetIpInfo

GetIpInfo returns the IpInfo field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestResponse) GetIpInfoOk

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

func (*V202101beta1GetTraceForTestResponse) GetTraceRoutes

GetTraceRoutes returns the TraceRoutes field value if set, zero value otherwise.

func (*V202101beta1GetTraceForTestResponse) GetTraceRoutesOk

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

func (*V202101beta1GetTraceForTestResponse) HasIpInfo

HasIpInfo returns a boolean if a field has been set.

func (*V202101beta1GetTraceForTestResponse) HasTraceRoutes

func (o *V202101beta1GetTraceForTestResponse) HasTraceRoutes() bool

HasTraceRoutes returns a boolean if a field has been set.

func (V202101beta1GetTraceForTestResponse) MarshalJSON

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

func (*V202101beta1GetTraceForTestResponse) SetIpInfo

SetIpInfo gets a reference to the given []V202101beta1IPInfo and assigns it to the IpInfo field.

func (*V202101beta1GetTraceForTestResponse) SetTraceRoutes

SetTraceRoutes gets a reference to the given []V202101beta1TracerouteResult and assigns it to the TraceRoutes field.

type V202101beta1GridTest

type V202101beta1GridTest struct {
	Targets *[]string `json:"targets,omitempty"`
}

V202101beta1GridTest struct for V202101beta1GridTest

func NewV202101beta1GridTest

func NewV202101beta1GridTest() *V202101beta1GridTest

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

func NewV202101beta1GridTestWithDefaults

func NewV202101beta1GridTestWithDefaults() *V202101beta1GridTest

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

func (*V202101beta1GridTest) GetTargets

func (o *V202101beta1GridTest) GetTargets() []string

GetTargets returns the Targets field value if set, zero value otherwise.

func (*V202101beta1GridTest) GetTargetsOk

func (o *V202101beta1GridTest) GetTargetsOk() (*[]string, bool)

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

func (*V202101beta1GridTest) HasTargets

func (o *V202101beta1GridTest) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (V202101beta1GridTest) MarshalJSON

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

func (*V202101beta1GridTest) SetTargets

func (o *V202101beta1GridTest) SetTargets(v []string)

SetTargets gets a reference to the given []string and assigns it to the Targets field.

type V202101beta1HTTPConfig

type V202101beta1HTTPConfig struct {
	Period          *int64             `json:"period,omitempty"`
	Expiry          *int64             `json:"expiry,omitempty"`
	Method          *string            `json:"method,omitempty"`
	Headers         *map[string]string `json:"headers,omitempty"`
	Body            *string            `json:"body,omitempty"`
	IgnoreTlsErrors *bool              `json:"ignoreTlsErrors,omitempty"`
}

V202101beta1HTTPConfig struct for V202101beta1HTTPConfig

func NewV202101beta1HTTPConfig

func NewV202101beta1HTTPConfig() *V202101beta1HTTPConfig

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

func NewV202101beta1HTTPConfigWithDefaults

func NewV202101beta1HTTPConfigWithDefaults() *V202101beta1HTTPConfig

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

func (*V202101beta1HTTPConfig) GetBody

func (o *V202101beta1HTTPConfig) GetBody() string

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

func (*V202101beta1HTTPConfig) GetBodyOk

func (o *V202101beta1HTTPConfig) 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 (*V202101beta1HTTPConfig) GetExpiry

func (o *V202101beta1HTTPConfig) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1HTTPConfig) GetExpiryOk

func (o *V202101beta1HTTPConfig) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1HTTPConfig) GetHeaders

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

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

func (*V202101beta1HTTPConfig) GetHeadersOk

func (o *V202101beta1HTTPConfig) 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 (*V202101beta1HTTPConfig) GetIgnoreTlsErrors

func (o *V202101beta1HTTPConfig) GetIgnoreTlsErrors() bool

GetIgnoreTlsErrors returns the IgnoreTlsErrors field value if set, zero value otherwise.

func (*V202101beta1HTTPConfig) GetIgnoreTlsErrorsOk

func (o *V202101beta1HTTPConfig) GetIgnoreTlsErrorsOk() (*bool, bool)

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

func (*V202101beta1HTTPConfig) GetMethod

func (o *V202101beta1HTTPConfig) GetMethod() string

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

func (*V202101beta1HTTPConfig) GetMethodOk

func (o *V202101beta1HTTPConfig) 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 (*V202101beta1HTTPConfig) GetPeriod

func (o *V202101beta1HTTPConfig) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1HTTPConfig) GetPeriodOk

func (o *V202101beta1HTTPConfig) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1HTTPConfig) HasBody

func (o *V202101beta1HTTPConfig) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*V202101beta1HTTPConfig) HasExpiry

func (o *V202101beta1HTTPConfig) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1HTTPConfig) HasHeaders

func (o *V202101beta1HTTPConfig) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*V202101beta1HTTPConfig) HasIgnoreTlsErrors

func (o *V202101beta1HTTPConfig) HasIgnoreTlsErrors() bool

HasIgnoreTlsErrors returns a boolean if a field has been set.

func (*V202101beta1HTTPConfig) HasMethod

func (o *V202101beta1HTTPConfig) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*V202101beta1HTTPConfig) HasPeriod

func (o *V202101beta1HTTPConfig) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (V202101beta1HTTPConfig) MarshalJSON

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

func (*V202101beta1HTTPConfig) SetBody

func (o *V202101beta1HTTPConfig) SetBody(v string)

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

func (*V202101beta1HTTPConfig) SetExpiry

func (o *V202101beta1HTTPConfig) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1HTTPConfig) SetHeaders

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

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

func (*V202101beta1HTTPConfig) SetIgnoreTlsErrors

func (o *V202101beta1HTTPConfig) SetIgnoreTlsErrors(v bool)

SetIgnoreTlsErrors gets a reference to the given bool and assigns it to the IgnoreTlsErrors field.

func (*V202101beta1HTTPConfig) SetMethod

func (o *V202101beta1HTTPConfig) SetMethod(v string)

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

func (*V202101beta1HTTPConfig) SetPeriod

func (o *V202101beta1HTTPConfig) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

type V202101beta1HTTPTaskDefinition

type V202101beta1HTTPTaskDefinition struct {
	Target *string `json:"target,omitempty"`
	Period *int64  `json:"period,omitempty"`
	Expiry *int64  `json:"expiry,omitempty"`
}

V202101beta1HTTPTaskDefinition struct for V202101beta1HTTPTaskDefinition

func NewV202101beta1HTTPTaskDefinition

func NewV202101beta1HTTPTaskDefinition() *V202101beta1HTTPTaskDefinition

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

func NewV202101beta1HTTPTaskDefinitionWithDefaults

func NewV202101beta1HTTPTaskDefinitionWithDefaults() *V202101beta1HTTPTaskDefinition

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

func (*V202101beta1HTTPTaskDefinition) GetExpiry

func (o *V202101beta1HTTPTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1HTTPTaskDefinition) GetExpiryOk

func (o *V202101beta1HTTPTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1HTTPTaskDefinition) GetPeriod

func (o *V202101beta1HTTPTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1HTTPTaskDefinition) GetPeriodOk

func (o *V202101beta1HTTPTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1HTTPTaskDefinition) GetTarget

func (o *V202101beta1HTTPTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1HTTPTaskDefinition) GetTargetOk

func (o *V202101beta1HTTPTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1HTTPTaskDefinition) HasExpiry

func (o *V202101beta1HTTPTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1HTTPTaskDefinition) HasPeriod

func (o *V202101beta1HTTPTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1HTTPTaskDefinition) HasTarget

func (o *V202101beta1HTTPTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1HTTPTaskDefinition) MarshalJSON

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

func (*V202101beta1HTTPTaskDefinition) SetExpiry

func (o *V202101beta1HTTPTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1HTTPTaskDefinition) SetPeriod

func (o *V202101beta1HTTPTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1HTTPTaskDefinition) SetTarget

func (o *V202101beta1HTTPTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1Health

type V202101beta1Health struct {
	Health *string    `json:"health,omitempty"`
	Time   *time.Time `json:"time,omitempty"`
}

V202101beta1Health struct for V202101beta1Health

func NewV202101beta1Health

func NewV202101beta1Health() *V202101beta1Health

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

func NewV202101beta1HealthWithDefaults

func NewV202101beta1HealthWithDefaults() *V202101beta1Health

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

func (*V202101beta1Health) GetHealth

func (o *V202101beta1Health) GetHealth() string

GetHealth returns the Health field value if set, zero value otherwise.

func (*V202101beta1Health) GetHealthOk

func (o *V202101beta1Health) GetHealthOk() (*string, bool)

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

func (*V202101beta1Health) GetTime

func (o *V202101beta1Health) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*V202101beta1Health) GetTimeOk

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

func (*V202101beta1Health) HasHealth

func (o *V202101beta1Health) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V202101beta1Health) HasTime

func (o *V202101beta1Health) HasTime() bool

HasTime returns a boolean if a field has been set.

func (V202101beta1Health) MarshalJSON

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

func (*V202101beta1Health) SetHealth

func (o *V202101beta1Health) SetHealth(v string)

SetHealth gets a reference to the given string and assigns it to the Health field.

func (*V202101beta1Health) SetTime

func (o *V202101beta1Health) SetTime(v time.Time)

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

type V202101beta1HealthMoment

type V202101beta1HealthMoment struct {
	Time                      *time.Time          `json:"time,omitempty"`
	SrcIp                     *string             `json:"srcIp,omitempty"`
	DstIp                     *string             `json:"dstIp,omitempty"`
	PacketLoss                *float64            `json:"packetLoss,omitempty"`
	AvgLatency                *int64              `json:"avgLatency,omitempty"`
	AvgWeightedLatency        *int64              `json:"avgWeightedLatency,omitempty"`
	RollingAvgLatency         *int64              `json:"rollingAvgLatency,omitempty"`
	RollingStddevLatency      *int64              `json:"rollingStddevLatency,omitempty"`
	RollingAvgWeightedLatency *int64              `json:"rollingAvgWeightedLatency,omitempty"`
	LatencyHealth             *string             `json:"latencyHealth,omitempty"`
	PacketLossHealth          *string             `json:"packetLossHealth,omitempty"`
	OverallHealth             *V202101beta1Health `json:"overallHealth,omitempty"`
	AvgJitter                 *int64              `json:"avgJitter,omitempty"`
	RollingAvgJitter          *int64              `json:"rollingAvgJitter,omitempty"`
	RollingStdJitter          *int64              `json:"rollingStdJitter,omitempty"`
	JitterHealth              *string             `json:"jitterHealth,omitempty"`
	Data                      *string             `json:"data,omitempty"`
	Size                      *int64              `json:"size,omitempty"`
	Status                    *int64              `json:"status,omitempty"`
	TaskType                  *string             `json:"taskType,omitempty"`
}

V202101beta1HealthMoment struct for V202101beta1HealthMoment

func NewV202101beta1HealthMoment

func NewV202101beta1HealthMoment() *V202101beta1HealthMoment

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

func NewV202101beta1HealthMomentWithDefaults

func NewV202101beta1HealthMomentWithDefaults() *V202101beta1HealthMoment

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

func (*V202101beta1HealthMoment) GetAvgJitter

func (o *V202101beta1HealthMoment) GetAvgJitter() int64

GetAvgJitter returns the AvgJitter field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetAvgJitterOk

func (o *V202101beta1HealthMoment) GetAvgJitterOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetAvgLatency

func (o *V202101beta1HealthMoment) GetAvgLatency() int64

GetAvgLatency returns the AvgLatency field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetAvgLatencyOk

func (o *V202101beta1HealthMoment) GetAvgLatencyOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetAvgWeightedLatency

func (o *V202101beta1HealthMoment) GetAvgWeightedLatency() int64

GetAvgWeightedLatency returns the AvgWeightedLatency field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetAvgWeightedLatencyOk

func (o *V202101beta1HealthMoment) GetAvgWeightedLatencyOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetData

func (o *V202101beta1HealthMoment) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetDataOk

func (o *V202101beta1HealthMoment) GetDataOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetDstIp

func (o *V202101beta1HealthMoment) GetDstIp() string

GetDstIp returns the DstIp field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetDstIpOk

func (o *V202101beta1HealthMoment) GetDstIpOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetJitterHealth

func (o *V202101beta1HealthMoment) GetJitterHealth() string

GetJitterHealth returns the JitterHealth field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetJitterHealthOk

func (o *V202101beta1HealthMoment) GetJitterHealthOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetLatencyHealth

func (o *V202101beta1HealthMoment) GetLatencyHealth() string

GetLatencyHealth returns the LatencyHealth field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetLatencyHealthOk

func (o *V202101beta1HealthMoment) GetLatencyHealthOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetOverallHealth

func (o *V202101beta1HealthMoment) GetOverallHealth() V202101beta1Health

GetOverallHealth returns the OverallHealth field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetOverallHealthOk

func (o *V202101beta1HealthMoment) GetOverallHealthOk() (*V202101beta1Health, bool)

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

func (*V202101beta1HealthMoment) GetPacketLoss

func (o *V202101beta1HealthMoment) GetPacketLoss() float64

GetPacketLoss returns the PacketLoss field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetPacketLossHealth

func (o *V202101beta1HealthMoment) GetPacketLossHealth() string

GetPacketLossHealth returns the PacketLossHealth field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetPacketLossHealthOk

func (o *V202101beta1HealthMoment) GetPacketLossHealthOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetPacketLossOk

func (o *V202101beta1HealthMoment) GetPacketLossOk() (*float64, bool)

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

func (*V202101beta1HealthMoment) GetRollingAvgJitter

func (o *V202101beta1HealthMoment) GetRollingAvgJitter() int64

GetRollingAvgJitter returns the RollingAvgJitter field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetRollingAvgJitterOk

func (o *V202101beta1HealthMoment) GetRollingAvgJitterOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetRollingAvgLatency

func (o *V202101beta1HealthMoment) GetRollingAvgLatency() int64

GetRollingAvgLatency returns the RollingAvgLatency field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetRollingAvgLatencyOk

func (o *V202101beta1HealthMoment) GetRollingAvgLatencyOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetRollingAvgWeightedLatency

func (o *V202101beta1HealthMoment) GetRollingAvgWeightedLatency() int64

GetRollingAvgWeightedLatency returns the RollingAvgWeightedLatency field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetRollingAvgWeightedLatencyOk

func (o *V202101beta1HealthMoment) GetRollingAvgWeightedLatencyOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetRollingStdJitter

func (o *V202101beta1HealthMoment) GetRollingStdJitter() int64

GetRollingStdJitter returns the RollingStdJitter field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetRollingStdJitterOk

func (o *V202101beta1HealthMoment) GetRollingStdJitterOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetRollingStddevLatency

func (o *V202101beta1HealthMoment) GetRollingStddevLatency() int64

GetRollingStddevLatency returns the RollingStddevLatency field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetRollingStddevLatencyOk

func (o *V202101beta1HealthMoment) GetRollingStddevLatencyOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetSize

func (o *V202101beta1HealthMoment) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetSizeOk

func (o *V202101beta1HealthMoment) GetSizeOk() (*int64, bool)

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

func (*V202101beta1HealthMoment) GetSrcIp

func (o *V202101beta1HealthMoment) GetSrcIp() string

GetSrcIp returns the SrcIp field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetSrcIpOk

func (o *V202101beta1HealthMoment) GetSrcIpOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetStatus

func (o *V202101beta1HealthMoment) GetStatus() int64

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

func (*V202101beta1HealthMoment) GetStatusOk

func (o *V202101beta1HealthMoment) GetStatusOk() (*int64, 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 (*V202101beta1HealthMoment) GetTaskType

func (o *V202101beta1HealthMoment) GetTaskType() string

GetTaskType returns the TaskType field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetTaskTypeOk

func (o *V202101beta1HealthMoment) GetTaskTypeOk() (*string, bool)

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

func (*V202101beta1HealthMoment) GetTime

func (o *V202101beta1HealthMoment) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*V202101beta1HealthMoment) GetTimeOk

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

func (*V202101beta1HealthMoment) HasAvgJitter

func (o *V202101beta1HealthMoment) HasAvgJitter() bool

HasAvgJitter returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasAvgLatency

func (o *V202101beta1HealthMoment) HasAvgLatency() bool

HasAvgLatency returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasAvgWeightedLatency

func (o *V202101beta1HealthMoment) HasAvgWeightedLatency() bool

HasAvgWeightedLatency returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasData

func (o *V202101beta1HealthMoment) HasData() bool

HasData returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasDstIp

func (o *V202101beta1HealthMoment) HasDstIp() bool

HasDstIp returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasJitterHealth

func (o *V202101beta1HealthMoment) HasJitterHealth() bool

HasJitterHealth returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasLatencyHealth

func (o *V202101beta1HealthMoment) HasLatencyHealth() bool

HasLatencyHealth returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasOverallHealth

func (o *V202101beta1HealthMoment) HasOverallHealth() bool

HasOverallHealth returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasPacketLoss

func (o *V202101beta1HealthMoment) HasPacketLoss() bool

HasPacketLoss returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasPacketLossHealth

func (o *V202101beta1HealthMoment) HasPacketLossHealth() bool

HasPacketLossHealth returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasRollingAvgJitter

func (o *V202101beta1HealthMoment) HasRollingAvgJitter() bool

HasRollingAvgJitter returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasRollingAvgLatency

func (o *V202101beta1HealthMoment) HasRollingAvgLatency() bool

HasRollingAvgLatency returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasRollingAvgWeightedLatency

func (o *V202101beta1HealthMoment) HasRollingAvgWeightedLatency() bool

HasRollingAvgWeightedLatency returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasRollingStdJitter

func (o *V202101beta1HealthMoment) HasRollingStdJitter() bool

HasRollingStdJitter returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasRollingStddevLatency

func (o *V202101beta1HealthMoment) HasRollingStddevLatency() bool

HasRollingStddevLatency returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasSize

func (o *V202101beta1HealthMoment) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasSrcIp

func (o *V202101beta1HealthMoment) HasSrcIp() bool

HasSrcIp returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasStatus

func (o *V202101beta1HealthMoment) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasTaskType

func (o *V202101beta1HealthMoment) HasTaskType() bool

HasTaskType returns a boolean if a field has been set.

func (*V202101beta1HealthMoment) HasTime

func (o *V202101beta1HealthMoment) HasTime() bool

HasTime returns a boolean if a field has been set.

func (V202101beta1HealthMoment) MarshalJSON

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

func (*V202101beta1HealthMoment) SetAvgJitter

func (o *V202101beta1HealthMoment) SetAvgJitter(v int64)

SetAvgJitter gets a reference to the given int64 and assigns it to the AvgJitter field.

func (*V202101beta1HealthMoment) SetAvgLatency

func (o *V202101beta1HealthMoment) SetAvgLatency(v int64)

SetAvgLatency gets a reference to the given int64 and assigns it to the AvgLatency field.

func (*V202101beta1HealthMoment) SetAvgWeightedLatency

func (o *V202101beta1HealthMoment) SetAvgWeightedLatency(v int64)

SetAvgWeightedLatency gets a reference to the given int64 and assigns it to the AvgWeightedLatency field.

func (*V202101beta1HealthMoment) SetData

func (o *V202101beta1HealthMoment) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*V202101beta1HealthMoment) SetDstIp

func (o *V202101beta1HealthMoment) SetDstIp(v string)

SetDstIp gets a reference to the given string and assigns it to the DstIp field.

func (*V202101beta1HealthMoment) SetJitterHealth

func (o *V202101beta1HealthMoment) SetJitterHealth(v string)

SetJitterHealth gets a reference to the given string and assigns it to the JitterHealth field.

func (*V202101beta1HealthMoment) SetLatencyHealth

func (o *V202101beta1HealthMoment) SetLatencyHealth(v string)

SetLatencyHealth gets a reference to the given string and assigns it to the LatencyHealth field.

func (*V202101beta1HealthMoment) SetOverallHealth

func (o *V202101beta1HealthMoment) SetOverallHealth(v V202101beta1Health)

SetOverallHealth gets a reference to the given V202101beta1Health and assigns it to the OverallHealth field.

func (*V202101beta1HealthMoment) SetPacketLoss

func (o *V202101beta1HealthMoment) SetPacketLoss(v float64)

SetPacketLoss gets a reference to the given float64 and assigns it to the PacketLoss field.

func (*V202101beta1HealthMoment) SetPacketLossHealth

func (o *V202101beta1HealthMoment) SetPacketLossHealth(v string)

SetPacketLossHealth gets a reference to the given string and assigns it to the PacketLossHealth field.

func (*V202101beta1HealthMoment) SetRollingAvgJitter

func (o *V202101beta1HealthMoment) SetRollingAvgJitter(v int64)

SetRollingAvgJitter gets a reference to the given int64 and assigns it to the RollingAvgJitter field.

func (*V202101beta1HealthMoment) SetRollingAvgLatency

func (o *V202101beta1HealthMoment) SetRollingAvgLatency(v int64)

SetRollingAvgLatency gets a reference to the given int64 and assigns it to the RollingAvgLatency field.

func (*V202101beta1HealthMoment) SetRollingAvgWeightedLatency

func (o *V202101beta1HealthMoment) SetRollingAvgWeightedLatency(v int64)

SetRollingAvgWeightedLatency gets a reference to the given int64 and assigns it to the RollingAvgWeightedLatency field.

func (*V202101beta1HealthMoment) SetRollingStdJitter

func (o *V202101beta1HealthMoment) SetRollingStdJitter(v int64)

SetRollingStdJitter gets a reference to the given int64 and assigns it to the RollingStdJitter field.

func (*V202101beta1HealthMoment) SetRollingStddevLatency

func (o *V202101beta1HealthMoment) SetRollingStddevLatency(v int64)

SetRollingStddevLatency gets a reference to the given int64 and assigns it to the RollingStddevLatency field.

func (*V202101beta1HealthMoment) SetSize

func (o *V202101beta1HealthMoment) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*V202101beta1HealthMoment) SetSrcIp

func (o *V202101beta1HealthMoment) SetSrcIp(v string)

SetSrcIp gets a reference to the given string and assigns it to the SrcIp field.

func (*V202101beta1HealthMoment) SetStatus

func (o *V202101beta1HealthMoment) SetStatus(v int64)

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

func (*V202101beta1HealthMoment) SetTaskType

func (o *V202101beta1HealthMoment) SetTaskType(v string)

SetTaskType gets a reference to the given string and assigns it to the TaskType field.

func (*V202101beta1HealthMoment) SetTime

func (o *V202101beta1HealthMoment) SetTime(v time.Time)

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

type V202101beta1HealthSettings

type V202101beta1HealthSettings struct {
	LatencyCritical     *float32 `json:"latencyCritical,omitempty"`
	LatencyWarning      *float32 `json:"latencyWarning,omitempty"`
	PacketLossCritical  *float32 `json:"packetLossCritical,omitempty"`
	PacketLossWarning   *float32 `json:"packetLossWarning,omitempty"`
	JitterCritical      *float32 `json:"jitterCritical,omitempty"`
	JitterWarning       *float32 `json:"jitterWarning,omitempty"`
	HttpLatencyCritical *float32 `json:"httpLatencyCritical,omitempty"`
	HttpLatencyWarning  *float32 `json:"httpLatencyWarning,omitempty"`
	HttpValidCodes      *[]int64 `json:"httpValidCodes,omitempty"`
	DnsValidCodes       *[]int64 `json:"dnsValidCodes,omitempty"`
}

V202101beta1HealthSettings struct for V202101beta1HealthSettings

func NewV202101beta1HealthSettings

func NewV202101beta1HealthSettings() *V202101beta1HealthSettings

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

func NewV202101beta1HealthSettingsWithDefaults

func NewV202101beta1HealthSettingsWithDefaults() *V202101beta1HealthSettings

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

func (*V202101beta1HealthSettings) GetDnsValidCodes

func (o *V202101beta1HealthSettings) GetDnsValidCodes() []int64

GetDnsValidCodes returns the DnsValidCodes field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetDnsValidCodesOk

func (o *V202101beta1HealthSettings) GetDnsValidCodesOk() (*[]int64, bool)

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

func (*V202101beta1HealthSettings) GetHttpLatencyCritical

func (o *V202101beta1HealthSettings) GetHttpLatencyCritical() float32

GetHttpLatencyCritical returns the HttpLatencyCritical field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetHttpLatencyCriticalOk

func (o *V202101beta1HealthSettings) GetHttpLatencyCriticalOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetHttpLatencyWarning

func (o *V202101beta1HealthSettings) GetHttpLatencyWarning() float32

GetHttpLatencyWarning returns the HttpLatencyWarning field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetHttpLatencyWarningOk

func (o *V202101beta1HealthSettings) GetHttpLatencyWarningOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetHttpValidCodes

func (o *V202101beta1HealthSettings) GetHttpValidCodes() []int64

GetHttpValidCodes returns the HttpValidCodes field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetHttpValidCodesOk

func (o *V202101beta1HealthSettings) GetHttpValidCodesOk() (*[]int64, bool)

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

func (*V202101beta1HealthSettings) GetJitterCritical

func (o *V202101beta1HealthSettings) GetJitterCritical() float32

GetJitterCritical returns the JitterCritical field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetJitterCriticalOk

func (o *V202101beta1HealthSettings) GetJitterCriticalOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetJitterWarning

func (o *V202101beta1HealthSettings) GetJitterWarning() float32

GetJitterWarning returns the JitterWarning field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetJitterWarningOk

func (o *V202101beta1HealthSettings) GetJitterWarningOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetLatencyCritical

func (o *V202101beta1HealthSettings) GetLatencyCritical() float32

GetLatencyCritical returns the LatencyCritical field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetLatencyCriticalOk

func (o *V202101beta1HealthSettings) GetLatencyCriticalOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetLatencyWarning

func (o *V202101beta1HealthSettings) GetLatencyWarning() float32

GetLatencyWarning returns the LatencyWarning field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetLatencyWarningOk

func (o *V202101beta1HealthSettings) GetLatencyWarningOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetPacketLossCritical

func (o *V202101beta1HealthSettings) GetPacketLossCritical() float32

GetPacketLossCritical returns the PacketLossCritical field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetPacketLossCriticalOk

func (o *V202101beta1HealthSettings) GetPacketLossCriticalOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) GetPacketLossWarning

func (o *V202101beta1HealthSettings) GetPacketLossWarning() float32

GetPacketLossWarning returns the PacketLossWarning field value if set, zero value otherwise.

func (*V202101beta1HealthSettings) GetPacketLossWarningOk

func (o *V202101beta1HealthSettings) GetPacketLossWarningOk() (*float32, bool)

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

func (*V202101beta1HealthSettings) HasDnsValidCodes

func (o *V202101beta1HealthSettings) HasDnsValidCodes() bool

HasDnsValidCodes returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasHttpLatencyCritical

func (o *V202101beta1HealthSettings) HasHttpLatencyCritical() bool

HasHttpLatencyCritical returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasHttpLatencyWarning

func (o *V202101beta1HealthSettings) HasHttpLatencyWarning() bool

HasHttpLatencyWarning returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasHttpValidCodes

func (o *V202101beta1HealthSettings) HasHttpValidCodes() bool

HasHttpValidCodes returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasJitterCritical

func (o *V202101beta1HealthSettings) HasJitterCritical() bool

HasJitterCritical returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasJitterWarning

func (o *V202101beta1HealthSettings) HasJitterWarning() bool

HasJitterWarning returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasLatencyCritical

func (o *V202101beta1HealthSettings) HasLatencyCritical() bool

HasLatencyCritical returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasLatencyWarning

func (o *V202101beta1HealthSettings) HasLatencyWarning() bool

HasLatencyWarning returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasPacketLossCritical

func (o *V202101beta1HealthSettings) HasPacketLossCritical() bool

HasPacketLossCritical returns a boolean if a field has been set.

func (*V202101beta1HealthSettings) HasPacketLossWarning

func (o *V202101beta1HealthSettings) HasPacketLossWarning() bool

HasPacketLossWarning returns a boolean if a field has been set.

func (V202101beta1HealthSettings) MarshalJSON

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

func (*V202101beta1HealthSettings) SetDnsValidCodes

func (o *V202101beta1HealthSettings) SetDnsValidCodes(v []int64)

SetDnsValidCodes gets a reference to the given []int64 and assigns it to the DnsValidCodes field.

func (*V202101beta1HealthSettings) SetHttpLatencyCritical

func (o *V202101beta1HealthSettings) SetHttpLatencyCritical(v float32)

SetHttpLatencyCritical gets a reference to the given float32 and assigns it to the HttpLatencyCritical field.

func (*V202101beta1HealthSettings) SetHttpLatencyWarning

func (o *V202101beta1HealthSettings) SetHttpLatencyWarning(v float32)

SetHttpLatencyWarning gets a reference to the given float32 and assigns it to the HttpLatencyWarning field.

func (*V202101beta1HealthSettings) SetHttpValidCodes

func (o *V202101beta1HealthSettings) SetHttpValidCodes(v []int64)

SetHttpValidCodes gets a reference to the given []int64 and assigns it to the HttpValidCodes field.

func (*V202101beta1HealthSettings) SetJitterCritical

func (o *V202101beta1HealthSettings) SetJitterCritical(v float32)

SetJitterCritical gets a reference to the given float32 and assigns it to the JitterCritical field.

func (*V202101beta1HealthSettings) SetJitterWarning

func (o *V202101beta1HealthSettings) SetJitterWarning(v float32)

SetJitterWarning gets a reference to the given float32 and assigns it to the JitterWarning field.

func (*V202101beta1HealthSettings) SetLatencyCritical

func (o *V202101beta1HealthSettings) SetLatencyCritical(v float32)

SetLatencyCritical gets a reference to the given float32 and assigns it to the LatencyCritical field.

func (*V202101beta1HealthSettings) SetLatencyWarning

func (o *V202101beta1HealthSettings) SetLatencyWarning(v float32)

SetLatencyWarning gets a reference to the given float32 and assigns it to the LatencyWarning field.

func (*V202101beta1HealthSettings) SetPacketLossCritical

func (o *V202101beta1HealthSettings) SetPacketLossCritical(v float32)

SetPacketLossCritical gets a reference to the given float32 and assigns it to the PacketLossCritical field.

func (*V202101beta1HealthSettings) SetPacketLossWarning

func (o *V202101beta1HealthSettings) SetPacketLossWarning(v float32)

SetPacketLossWarning gets a reference to the given float32 and assigns it to the PacketLossWarning field.

type V202101beta1HostnameTest

type V202101beta1HostnameTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1HostnameTest struct for V202101beta1HostnameTest

func NewV202101beta1HostnameTest

func NewV202101beta1HostnameTest() *V202101beta1HostnameTest

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

func NewV202101beta1HostnameTestWithDefaults

func NewV202101beta1HostnameTestWithDefaults() *V202101beta1HostnameTest

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

func (*V202101beta1HostnameTest) GetTarget

func (o *V202101beta1HostnameTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1HostnameTest) GetTargetOk

func (o *V202101beta1HostnameTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1HostnameTest) HasTarget

func (o *V202101beta1HostnameTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1HostnameTest) MarshalJSON

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

func (*V202101beta1HostnameTest) SetTarget

func (o *V202101beta1HostnameTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1IPFamily

type V202101beta1IPFamily string

V202101beta1IPFamily the model 'V202101beta1IPFamily'

const (
	V202101BETA1IPFAMILY_UNSPECIFIED V202101beta1IPFamily = "IP_FAMILY_UNSPECIFIED"
	V202101BETA1IPFAMILY_V4          V202101beta1IPFamily = "IP_FAMILY_V4"
	V202101BETA1IPFAMILY_V6          V202101beta1IPFamily = "IP_FAMILY_V6"
	V202101BETA1IPFAMILY_DUAL        V202101beta1IPFamily = "IP_FAMILY_DUAL"
)

List of v202101beta1IPFamily

func NewV202101beta1IPFamilyFromValue

func NewV202101beta1IPFamilyFromValue(v string) (*V202101beta1IPFamily, error)

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

func (V202101beta1IPFamily) IsValid

func (v V202101beta1IPFamily) IsValid() bool

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

func (V202101beta1IPFamily) Ptr

Ptr returns reference to v202101beta1IPFamily value

func (*V202101beta1IPFamily) UnmarshalJSON

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

type V202101beta1IPInfo

type V202101beta1IPInfo struct {
	Ip  *string          `json:"ip,omitempty"`
	Asn *V202101beta1ASN `json:"asn,omitempty"`
	Geo *V202101beta1Geo `json:"geo,omitempty"`
	Dns *V202101beta1DNS `json:"dns,omitempty"`
}

V202101beta1IPInfo struct for V202101beta1IPInfo

func NewV202101beta1IPInfo

func NewV202101beta1IPInfo() *V202101beta1IPInfo

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

func NewV202101beta1IPInfoWithDefaults

func NewV202101beta1IPInfoWithDefaults() *V202101beta1IPInfo

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

func (*V202101beta1IPInfo) GetAsn

func (o *V202101beta1IPInfo) GetAsn() V202101beta1ASN

GetAsn returns the Asn field value if set, zero value otherwise.

func (*V202101beta1IPInfo) GetAsnOk

func (o *V202101beta1IPInfo) GetAsnOk() (*V202101beta1ASN, bool)

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

func (*V202101beta1IPInfo) GetDns

func (o *V202101beta1IPInfo) GetDns() V202101beta1DNS

GetDns returns the Dns field value if set, zero value otherwise.

func (*V202101beta1IPInfo) GetDnsOk

func (o *V202101beta1IPInfo) GetDnsOk() (*V202101beta1DNS, bool)

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

func (*V202101beta1IPInfo) GetGeo

func (o *V202101beta1IPInfo) GetGeo() V202101beta1Geo

GetGeo returns the Geo field value if set, zero value otherwise.

func (*V202101beta1IPInfo) GetGeoOk

func (o *V202101beta1IPInfo) GetGeoOk() (*V202101beta1Geo, bool)

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

func (*V202101beta1IPInfo) GetIp

func (o *V202101beta1IPInfo) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*V202101beta1IPInfo) GetIpOk

func (o *V202101beta1IPInfo) GetIpOk() (*string, bool)

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

func (*V202101beta1IPInfo) HasAsn

func (o *V202101beta1IPInfo) HasAsn() bool

HasAsn returns a boolean if a field has been set.

func (*V202101beta1IPInfo) HasDns

func (o *V202101beta1IPInfo) HasDns() bool

HasDns returns a boolean if a field has been set.

func (*V202101beta1IPInfo) HasGeo

func (o *V202101beta1IPInfo) HasGeo() bool

HasGeo returns a boolean if a field has been set.

func (*V202101beta1IPInfo) HasIp

func (o *V202101beta1IPInfo) HasIp() bool

HasIp returns a boolean if a field has been set.

func (V202101beta1IPInfo) MarshalJSON

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

func (*V202101beta1IPInfo) SetAsn

func (o *V202101beta1IPInfo) SetAsn(v V202101beta1ASN)

SetAsn gets a reference to the given V202101beta1ASN and assigns it to the Asn field.

func (*V202101beta1IPInfo) SetDns

func (o *V202101beta1IPInfo) SetDns(v V202101beta1DNS)

SetDns gets a reference to the given V202101beta1DNS and assigns it to the Dns field.

func (*V202101beta1IPInfo) SetGeo

func (o *V202101beta1IPInfo) SetGeo(v V202101beta1Geo)

SetGeo gets a reference to the given V202101beta1Geo and assigns it to the Geo field.

func (*V202101beta1IPInfo) SetIp

func (o *V202101beta1IPInfo) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

type V202101beta1IpTest

type V202101beta1IpTest struct {
	Targets *[]string `json:"targets,omitempty"`
}

V202101beta1IpTest struct for V202101beta1IpTest

func NewV202101beta1IpTest

func NewV202101beta1IpTest() *V202101beta1IpTest

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

func NewV202101beta1IpTestWithDefaults

func NewV202101beta1IpTestWithDefaults() *V202101beta1IpTest

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

func (*V202101beta1IpTest) GetTargets

func (o *V202101beta1IpTest) GetTargets() []string

GetTargets returns the Targets field value if set, zero value otherwise.

func (*V202101beta1IpTest) GetTargetsOk

func (o *V202101beta1IpTest) GetTargetsOk() (*[]string, bool)

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

func (*V202101beta1IpTest) HasTargets

func (o *V202101beta1IpTest) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (V202101beta1IpTest) MarshalJSON

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

func (*V202101beta1IpTest) SetTargets

func (o *V202101beta1IpTest) SetTargets(v []string)

SetTargets gets a reference to the given []string and assigns it to the Targets field.

type V202101beta1KnockTaskDefinition

type V202101beta1KnockTaskDefinition struct {
	Target *string `json:"target,omitempty"`
	Period *int64  `json:"period,omitempty"`
	Expiry *int64  `json:"expiry,omitempty"`
	Count  *int64  `json:"count,omitempty"`
	Port   *int64  `json:"port,omitempty"`
}

V202101beta1KnockTaskDefinition struct for V202101beta1KnockTaskDefinition

func NewV202101beta1KnockTaskDefinition

func NewV202101beta1KnockTaskDefinition() *V202101beta1KnockTaskDefinition

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

func NewV202101beta1KnockTaskDefinitionWithDefaults

func NewV202101beta1KnockTaskDefinitionWithDefaults() *V202101beta1KnockTaskDefinition

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

func (*V202101beta1KnockTaskDefinition) GetCount

func (o *V202101beta1KnockTaskDefinition) GetCount() int64

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

func (*V202101beta1KnockTaskDefinition) GetCountOk

func (o *V202101beta1KnockTaskDefinition) GetCountOk() (*int64, 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 (*V202101beta1KnockTaskDefinition) GetExpiry

func (o *V202101beta1KnockTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1KnockTaskDefinition) GetExpiryOk

func (o *V202101beta1KnockTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1KnockTaskDefinition) GetPeriod

func (o *V202101beta1KnockTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1KnockTaskDefinition) GetPeriodOk

func (o *V202101beta1KnockTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1KnockTaskDefinition) GetPort

GetPort returns the Port field value if set, zero value otherwise.

func (*V202101beta1KnockTaskDefinition) GetPortOk

func (o *V202101beta1KnockTaskDefinition) GetPortOk() (*int64, bool)

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

func (*V202101beta1KnockTaskDefinition) GetTarget

func (o *V202101beta1KnockTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1KnockTaskDefinition) GetTargetOk

func (o *V202101beta1KnockTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1KnockTaskDefinition) HasCount

func (o *V202101beta1KnockTaskDefinition) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1KnockTaskDefinition) HasExpiry

func (o *V202101beta1KnockTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1KnockTaskDefinition) HasPeriod

func (o *V202101beta1KnockTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1KnockTaskDefinition) HasPort

HasPort returns a boolean if a field has been set.

func (*V202101beta1KnockTaskDefinition) HasTarget

func (o *V202101beta1KnockTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1KnockTaskDefinition) MarshalJSON

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

func (*V202101beta1KnockTaskDefinition) SetCount

func (o *V202101beta1KnockTaskDefinition) SetCount(v int64)

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

func (*V202101beta1KnockTaskDefinition) SetExpiry

func (o *V202101beta1KnockTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1KnockTaskDefinition) SetPeriod

func (o *V202101beta1KnockTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1KnockTaskDefinition) SetPort

func (o *V202101beta1KnockTaskDefinition) SetPort(v int64)

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

func (*V202101beta1KnockTaskDefinition) SetTarget

func (o *V202101beta1KnockTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1ListAgentsResponse

type V202101beta1ListAgentsResponse struct {
	Agents             *[]V202101beta1Agent `json:"agents,omitempty"`
	InvalidAgentsCount *int64               `json:"invalidAgentsCount,omitempty"`
}

V202101beta1ListAgentsResponse struct for V202101beta1ListAgentsResponse

func NewV202101beta1ListAgentsResponse

func NewV202101beta1ListAgentsResponse() *V202101beta1ListAgentsResponse

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

func NewV202101beta1ListAgentsResponseWithDefaults

func NewV202101beta1ListAgentsResponseWithDefaults() *V202101beta1ListAgentsResponse

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

func (*V202101beta1ListAgentsResponse) GetAgents

GetAgents returns the Agents field value if set, zero value otherwise.

func (*V202101beta1ListAgentsResponse) GetAgentsOk

func (o *V202101beta1ListAgentsResponse) GetAgentsOk() (*[]V202101beta1Agent, bool)

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

func (*V202101beta1ListAgentsResponse) GetInvalidAgentsCount

func (o *V202101beta1ListAgentsResponse) GetInvalidAgentsCount() int64

GetInvalidAgentsCount returns the InvalidAgentsCount field value if set, zero value otherwise.

func (*V202101beta1ListAgentsResponse) GetInvalidAgentsCountOk

func (o *V202101beta1ListAgentsResponse) GetInvalidAgentsCountOk() (*int64, bool)

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

func (*V202101beta1ListAgentsResponse) HasAgents

func (o *V202101beta1ListAgentsResponse) HasAgents() bool

HasAgents returns a boolean if a field has been set.

func (*V202101beta1ListAgentsResponse) HasInvalidAgentsCount

func (o *V202101beta1ListAgentsResponse) HasInvalidAgentsCount() bool

HasInvalidAgentsCount returns a boolean if a field has been set.

func (V202101beta1ListAgentsResponse) MarshalJSON

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

func (*V202101beta1ListAgentsResponse) SetAgents

SetAgents gets a reference to the given []V202101beta1Agent and assigns it to the Agents field.

func (*V202101beta1ListAgentsResponse) SetInvalidAgentsCount

func (o *V202101beta1ListAgentsResponse) SetInvalidAgentsCount(v int64)

SetInvalidAgentsCount gets a reference to the given int64 and assigns it to the InvalidAgentsCount field.

type V202101beta1ListTestsResponse

type V202101beta1ListTestsResponse struct {
	Tests             *[]V202101beta1Test `json:"tests,omitempty"`
	InvalidTestsCount *int64              `json:"invalidTestsCount,omitempty"`
}

V202101beta1ListTestsResponse struct for V202101beta1ListTestsResponse

func NewV202101beta1ListTestsResponse

func NewV202101beta1ListTestsResponse() *V202101beta1ListTestsResponse

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

func NewV202101beta1ListTestsResponseWithDefaults

func NewV202101beta1ListTestsResponseWithDefaults() *V202101beta1ListTestsResponse

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

func (*V202101beta1ListTestsResponse) GetInvalidTestsCount

func (o *V202101beta1ListTestsResponse) GetInvalidTestsCount() int64

GetInvalidTestsCount returns the InvalidTestsCount field value if set, zero value otherwise.

func (*V202101beta1ListTestsResponse) GetInvalidTestsCountOk

func (o *V202101beta1ListTestsResponse) GetInvalidTestsCountOk() (*int64, bool)

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

func (*V202101beta1ListTestsResponse) GetTests

GetTests returns the Tests field value if set, zero value otherwise.

func (*V202101beta1ListTestsResponse) GetTestsOk

func (o *V202101beta1ListTestsResponse) GetTestsOk() (*[]V202101beta1Test, bool)

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

func (*V202101beta1ListTestsResponse) HasInvalidTestsCount

func (o *V202101beta1ListTestsResponse) HasInvalidTestsCount() bool

HasInvalidTestsCount returns a boolean if a field has been set.

func (*V202101beta1ListTestsResponse) HasTests

func (o *V202101beta1ListTestsResponse) HasTests() bool

HasTests returns a boolean if a field has been set.

func (V202101beta1ListTestsResponse) MarshalJSON

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

func (*V202101beta1ListTestsResponse) SetInvalidTestsCount

func (o *V202101beta1ListTestsResponse) SetInvalidTestsCount(v int64)

SetInvalidTestsCount gets a reference to the given int64 and assigns it to the InvalidTestsCount field.

func (*V202101beta1ListTestsResponse) SetTests

SetTests gets a reference to the given []V202101beta1Test and assigns it to the Tests field.

type V202101beta1MeshColumn

type V202101beta1MeshColumn struct {
	Id      *string                    `json:"id,omitempty"`
	Name    *string                    `json:"name,omitempty"`
	Alias   *string                    `json:"alias,omitempty"`
	Target  *string                    `json:"target,omitempty"`
	Metrics *V202101beta1MeshMetrics   `json:"metrics,omitempty"`
	Health  *[]V202101beta1MeshMetrics `json:"health,omitempty"`
}

V202101beta1MeshColumn struct for V202101beta1MeshColumn

func NewV202101beta1MeshColumn

func NewV202101beta1MeshColumn() *V202101beta1MeshColumn

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

func NewV202101beta1MeshColumnWithDefaults

func NewV202101beta1MeshColumnWithDefaults() *V202101beta1MeshColumn

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

func (*V202101beta1MeshColumn) GetAlias

func (o *V202101beta1MeshColumn) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*V202101beta1MeshColumn) GetAliasOk

func (o *V202101beta1MeshColumn) GetAliasOk() (*string, bool)

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

func (*V202101beta1MeshColumn) GetHealth

GetHealth returns the Health field value if set, zero value otherwise.

func (*V202101beta1MeshColumn) GetHealthOk

func (o *V202101beta1MeshColumn) GetHealthOk() (*[]V202101beta1MeshMetrics, bool)

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

func (*V202101beta1MeshColumn) GetId

func (o *V202101beta1MeshColumn) GetId() string

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

func (*V202101beta1MeshColumn) GetIdOk

func (o *V202101beta1MeshColumn) 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 (*V202101beta1MeshColumn) GetMetrics

GetMetrics returns the Metrics field value if set, zero value otherwise.

func (*V202101beta1MeshColumn) GetMetricsOk

func (o *V202101beta1MeshColumn) GetMetricsOk() (*V202101beta1MeshMetrics, bool)

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

func (*V202101beta1MeshColumn) GetName

func (o *V202101beta1MeshColumn) GetName() string

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

func (*V202101beta1MeshColumn) GetNameOk

func (o *V202101beta1MeshColumn) 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 (*V202101beta1MeshColumn) GetTarget

func (o *V202101beta1MeshColumn) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1MeshColumn) GetTargetOk

func (o *V202101beta1MeshColumn) GetTargetOk() (*string, bool)

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

func (*V202101beta1MeshColumn) HasAlias

func (o *V202101beta1MeshColumn) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*V202101beta1MeshColumn) HasHealth

func (o *V202101beta1MeshColumn) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V202101beta1MeshColumn) HasId

func (o *V202101beta1MeshColumn) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1MeshColumn) HasMetrics

func (o *V202101beta1MeshColumn) HasMetrics() bool

HasMetrics returns a boolean if a field has been set.

func (*V202101beta1MeshColumn) HasName

func (o *V202101beta1MeshColumn) HasName() bool

HasName returns a boolean if a field has been set.

func (*V202101beta1MeshColumn) HasTarget

func (o *V202101beta1MeshColumn) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1MeshColumn) MarshalJSON

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

func (*V202101beta1MeshColumn) SetAlias

func (o *V202101beta1MeshColumn) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*V202101beta1MeshColumn) SetHealth

SetHealth gets a reference to the given []V202101beta1MeshMetrics and assigns it to the Health field.

func (*V202101beta1MeshColumn) SetId

func (o *V202101beta1MeshColumn) SetId(v string)

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

func (*V202101beta1MeshColumn) SetMetrics

SetMetrics gets a reference to the given V202101beta1MeshMetrics and assigns it to the Metrics field.

func (*V202101beta1MeshColumn) SetName

func (o *V202101beta1MeshColumn) SetName(v string)

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

func (*V202101beta1MeshColumn) SetTarget

func (o *V202101beta1MeshColumn) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1MeshMetric

type V202101beta1MeshMetric struct {
	Name   *string `json:"name,omitempty"`
	Health *string `json:"health,omitempty"`
	Value  *string `json:"value,omitempty"`
}

V202101beta1MeshMetric struct for V202101beta1MeshMetric

func NewV202101beta1MeshMetric

func NewV202101beta1MeshMetric() *V202101beta1MeshMetric

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

func NewV202101beta1MeshMetricWithDefaults

func NewV202101beta1MeshMetricWithDefaults() *V202101beta1MeshMetric

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

func (*V202101beta1MeshMetric) GetHealth

func (o *V202101beta1MeshMetric) GetHealth() string

GetHealth returns the Health field value if set, zero value otherwise.

func (*V202101beta1MeshMetric) GetHealthOk

func (o *V202101beta1MeshMetric) GetHealthOk() (*string, bool)

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

func (*V202101beta1MeshMetric) GetName

func (o *V202101beta1MeshMetric) GetName() string

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

func (*V202101beta1MeshMetric) GetNameOk

func (o *V202101beta1MeshMetric) 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 (*V202101beta1MeshMetric) GetValue

func (o *V202101beta1MeshMetric) GetValue() string

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

func (*V202101beta1MeshMetric) GetValueOk

func (o *V202101beta1MeshMetric) 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 (*V202101beta1MeshMetric) HasHealth

func (o *V202101beta1MeshMetric) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*V202101beta1MeshMetric) HasName

func (o *V202101beta1MeshMetric) HasName() bool

HasName returns a boolean if a field has been set.

func (*V202101beta1MeshMetric) HasValue

func (o *V202101beta1MeshMetric) HasValue() bool

HasValue returns a boolean if a field has been set.

func (V202101beta1MeshMetric) MarshalJSON

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

func (*V202101beta1MeshMetric) SetHealth

func (o *V202101beta1MeshMetric) SetHealth(v string)

SetHealth gets a reference to the given string and assigns it to the Health field.

func (*V202101beta1MeshMetric) SetName

func (o *V202101beta1MeshMetric) SetName(v string)

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

func (*V202101beta1MeshMetric) SetValue

func (o *V202101beta1MeshMetric) SetValue(v string)

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

type V202101beta1MeshMetrics

type V202101beta1MeshMetrics struct {
	Time       *time.Time              `json:"time,omitempty"`
	Latency    *V202101beta1MeshMetric `json:"latency,omitempty"`
	PacketLoss *V202101beta1MeshMetric `json:"packetLoss,omitempty"`
	Jitter     *V202101beta1MeshMetric `json:"jitter,omitempty"`
}

V202101beta1MeshMetrics struct for V202101beta1MeshMetrics

func NewV202101beta1MeshMetrics

func NewV202101beta1MeshMetrics() *V202101beta1MeshMetrics

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

func NewV202101beta1MeshMetricsWithDefaults

func NewV202101beta1MeshMetricsWithDefaults() *V202101beta1MeshMetrics

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

func (*V202101beta1MeshMetrics) GetJitter

GetJitter returns the Jitter field value if set, zero value otherwise.

func (*V202101beta1MeshMetrics) GetJitterOk

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

func (*V202101beta1MeshMetrics) GetLatency

GetLatency returns the Latency field value if set, zero value otherwise.

func (*V202101beta1MeshMetrics) GetLatencyOk

func (o *V202101beta1MeshMetrics) GetLatencyOk() (*V202101beta1MeshMetric, bool)

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

func (*V202101beta1MeshMetrics) GetPacketLoss

GetPacketLoss returns the PacketLoss field value if set, zero value otherwise.

func (*V202101beta1MeshMetrics) GetPacketLossOk

func (o *V202101beta1MeshMetrics) GetPacketLossOk() (*V202101beta1MeshMetric, bool)

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

func (*V202101beta1MeshMetrics) GetTime

func (o *V202101beta1MeshMetrics) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*V202101beta1MeshMetrics) GetTimeOk

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

func (*V202101beta1MeshMetrics) HasJitter

func (o *V202101beta1MeshMetrics) HasJitter() bool

HasJitter returns a boolean if a field has been set.

func (*V202101beta1MeshMetrics) HasLatency

func (o *V202101beta1MeshMetrics) HasLatency() bool

HasLatency returns a boolean if a field has been set.

func (*V202101beta1MeshMetrics) HasPacketLoss

func (o *V202101beta1MeshMetrics) HasPacketLoss() bool

HasPacketLoss returns a boolean if a field has been set.

func (*V202101beta1MeshMetrics) HasTime

func (o *V202101beta1MeshMetrics) HasTime() bool

HasTime returns a boolean if a field has been set.

func (V202101beta1MeshMetrics) MarshalJSON

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

func (*V202101beta1MeshMetrics) SetJitter

SetJitter gets a reference to the given V202101beta1MeshMetric and assigns it to the Jitter field.

func (*V202101beta1MeshMetrics) SetLatency

SetLatency gets a reference to the given V202101beta1MeshMetric and assigns it to the Latency field.

func (*V202101beta1MeshMetrics) SetPacketLoss

func (o *V202101beta1MeshMetrics) SetPacketLoss(v V202101beta1MeshMetric)

SetPacketLoss gets a reference to the given V202101beta1MeshMetric and assigns it to the PacketLoss field.

func (*V202101beta1MeshMetrics) SetTime

func (o *V202101beta1MeshMetrics) SetTime(v time.Time)

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

type V202101beta1MeshResponse

type V202101beta1MeshResponse struct {
	Id      *string                   `json:"id,omitempty"`
	Name    *string                   `json:"name,omitempty"`
	LocalIp *string                   `json:"localIp,omitempty"`
	Ip      *string                   `json:"ip,omitempty"`
	Alias   *string                   `json:"alias,omitempty"`
	Columns *[]V202101beta1MeshColumn `json:"columns,omitempty"`
}

V202101beta1MeshResponse struct for V202101beta1MeshResponse

func NewV202101beta1MeshResponse

func NewV202101beta1MeshResponse() *V202101beta1MeshResponse

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

func NewV202101beta1MeshResponseWithDefaults

func NewV202101beta1MeshResponseWithDefaults() *V202101beta1MeshResponse

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

func (*V202101beta1MeshResponse) GetAlias

func (o *V202101beta1MeshResponse) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*V202101beta1MeshResponse) GetAliasOk

func (o *V202101beta1MeshResponse) GetAliasOk() (*string, bool)

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

func (*V202101beta1MeshResponse) GetColumns

GetColumns returns the Columns field value if set, zero value otherwise.

func (*V202101beta1MeshResponse) GetColumnsOk

func (o *V202101beta1MeshResponse) GetColumnsOk() (*[]V202101beta1MeshColumn, bool)

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

func (*V202101beta1MeshResponse) GetId

func (o *V202101beta1MeshResponse) GetId() string

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

func (*V202101beta1MeshResponse) GetIdOk

func (o *V202101beta1MeshResponse) 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 (*V202101beta1MeshResponse) GetIp

func (o *V202101beta1MeshResponse) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*V202101beta1MeshResponse) GetIpOk

func (o *V202101beta1MeshResponse) GetIpOk() (*string, bool)

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

func (*V202101beta1MeshResponse) GetLocalIp

func (o *V202101beta1MeshResponse) GetLocalIp() string

GetLocalIp returns the LocalIp field value if set, zero value otherwise.

func (*V202101beta1MeshResponse) GetLocalIpOk

func (o *V202101beta1MeshResponse) GetLocalIpOk() (*string, bool)

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

func (*V202101beta1MeshResponse) GetName

func (o *V202101beta1MeshResponse) GetName() string

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

func (*V202101beta1MeshResponse) GetNameOk

func (o *V202101beta1MeshResponse) 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 (*V202101beta1MeshResponse) HasAlias

func (o *V202101beta1MeshResponse) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*V202101beta1MeshResponse) HasColumns

func (o *V202101beta1MeshResponse) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*V202101beta1MeshResponse) HasId

func (o *V202101beta1MeshResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1MeshResponse) HasIp

func (o *V202101beta1MeshResponse) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*V202101beta1MeshResponse) HasLocalIp

func (o *V202101beta1MeshResponse) HasLocalIp() bool

HasLocalIp returns a boolean if a field has been set.

func (*V202101beta1MeshResponse) HasName

func (o *V202101beta1MeshResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1MeshResponse) MarshalJSON

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

func (*V202101beta1MeshResponse) SetAlias

func (o *V202101beta1MeshResponse) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*V202101beta1MeshResponse) SetColumns

SetColumns gets a reference to the given []V202101beta1MeshColumn and assigns it to the Columns field.

func (*V202101beta1MeshResponse) SetId

func (o *V202101beta1MeshResponse) SetId(v string)

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

func (*V202101beta1MeshResponse) SetIp

func (o *V202101beta1MeshResponse) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*V202101beta1MeshResponse) SetLocalIp

func (o *V202101beta1MeshResponse) SetLocalIp(v string)

SetLocalIp gets a reference to the given string and assigns it to the LocalIp field.

func (*V202101beta1MeshResponse) SetName

func (o *V202101beta1MeshResponse) SetName(v string)

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

type V202101beta1PatchAgentRequest

type V202101beta1PatchAgentRequest struct {
	Agent *V202101beta1Agent `json:"agent,omitempty"`
	Mask  *string            `json:"mask,omitempty"`
}

V202101beta1PatchAgentRequest struct for V202101beta1PatchAgentRequest

func NewV202101beta1PatchAgentRequest

func NewV202101beta1PatchAgentRequest() *V202101beta1PatchAgentRequest

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

func NewV202101beta1PatchAgentRequestWithDefaults

func NewV202101beta1PatchAgentRequestWithDefaults() *V202101beta1PatchAgentRequest

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

func (*V202101beta1PatchAgentRequest) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1PatchAgentRequest) GetAgentOk

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

func (*V202101beta1PatchAgentRequest) GetMask

GetMask returns the Mask field value if set, zero value otherwise.

func (*V202101beta1PatchAgentRequest) GetMaskOk

func (o *V202101beta1PatchAgentRequest) GetMaskOk() (*string, bool)

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

func (*V202101beta1PatchAgentRequest) HasAgent

func (o *V202101beta1PatchAgentRequest) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*V202101beta1PatchAgentRequest) HasMask

func (o *V202101beta1PatchAgentRequest) HasMask() bool

HasMask returns a boolean if a field has been set.

func (V202101beta1PatchAgentRequest) MarshalJSON

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

func (*V202101beta1PatchAgentRequest) SetAgent

SetAgent gets a reference to the given V202101beta1Agent and assigns it to the Agent field.

func (*V202101beta1PatchAgentRequest) SetMask

func (o *V202101beta1PatchAgentRequest) SetMask(v string)

SetMask gets a reference to the given string and assigns it to the Mask field.

type V202101beta1PatchAgentResponse

type V202101beta1PatchAgentResponse struct {
	Agent *V202101beta1Agent `json:"agent,omitempty"`
}

V202101beta1PatchAgentResponse struct for V202101beta1PatchAgentResponse

func NewV202101beta1PatchAgentResponse

func NewV202101beta1PatchAgentResponse() *V202101beta1PatchAgentResponse

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

func NewV202101beta1PatchAgentResponseWithDefaults

func NewV202101beta1PatchAgentResponseWithDefaults() *V202101beta1PatchAgentResponse

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

func (*V202101beta1PatchAgentResponse) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1PatchAgentResponse) GetAgentOk

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

func (*V202101beta1PatchAgentResponse) HasAgent

func (o *V202101beta1PatchAgentResponse) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (V202101beta1PatchAgentResponse) MarshalJSON

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

func (*V202101beta1PatchAgentResponse) SetAgent

SetAgent gets a reference to the given V202101beta1Agent and assigns it to the Agent field.

type V202101beta1PatchTestRequest

type V202101beta1PatchTestRequest struct {
	Test *V202101beta1Test `json:"test,omitempty"`
	Mask *string           `json:"mask,omitempty"`
}

V202101beta1PatchTestRequest struct for V202101beta1PatchTestRequest

func NewV202101beta1PatchTestRequest

func NewV202101beta1PatchTestRequest() *V202101beta1PatchTestRequest

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

func NewV202101beta1PatchTestRequestWithDefaults

func NewV202101beta1PatchTestRequestWithDefaults() *V202101beta1PatchTestRequest

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

func (*V202101beta1PatchTestRequest) GetMask

func (o *V202101beta1PatchTestRequest) GetMask() string

GetMask returns the Mask field value if set, zero value otherwise.

func (*V202101beta1PatchTestRequest) GetMaskOk

func (o *V202101beta1PatchTestRequest) GetMaskOk() (*string, bool)

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

func (*V202101beta1PatchTestRequest) GetTest

GetTest returns the Test field value if set, zero value otherwise.

func (*V202101beta1PatchTestRequest) GetTestOk

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

func (*V202101beta1PatchTestRequest) HasMask

func (o *V202101beta1PatchTestRequest) HasMask() bool

HasMask returns a boolean if a field has been set.

func (*V202101beta1PatchTestRequest) HasTest

func (o *V202101beta1PatchTestRequest) HasTest() bool

HasTest returns a boolean if a field has been set.

func (V202101beta1PatchTestRequest) MarshalJSON

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

func (*V202101beta1PatchTestRequest) SetMask

func (o *V202101beta1PatchTestRequest) SetMask(v string)

SetMask gets a reference to the given string and assigns it to the Mask field.

func (*V202101beta1PatchTestRequest) SetTest

SetTest gets a reference to the given V202101beta1Test and assigns it to the Test field.

type V202101beta1PatchTestResponse

type V202101beta1PatchTestResponse struct {
	Test *V202101beta1Test `json:"test,omitempty"`
}

V202101beta1PatchTestResponse struct for V202101beta1PatchTestResponse

func NewV202101beta1PatchTestResponse

func NewV202101beta1PatchTestResponse() *V202101beta1PatchTestResponse

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

func NewV202101beta1PatchTestResponseWithDefaults

func NewV202101beta1PatchTestResponseWithDefaults() *V202101beta1PatchTestResponse

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

func (*V202101beta1PatchTestResponse) GetTest

GetTest returns the Test field value if set, zero value otherwise.

func (*V202101beta1PatchTestResponse) GetTestOk

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

func (*V202101beta1PatchTestResponse) HasTest

func (o *V202101beta1PatchTestResponse) HasTest() bool

HasTest returns a boolean if a field has been set.

func (V202101beta1PatchTestResponse) MarshalJSON

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

func (*V202101beta1PatchTestResponse) SetTest

SetTest gets a reference to the given V202101beta1Test and assigns it to the Test field.

type V202101beta1PingTaskDefinition

type V202101beta1PingTaskDefinition struct {
	Target *string `json:"target,omitempty"`
	Period *int64  `json:"period,omitempty"`
	Expiry *int64  `json:"expiry,omitempty"`
	Count  *int64  `json:"count,omitempty"`
}

V202101beta1PingTaskDefinition struct for V202101beta1PingTaskDefinition

func NewV202101beta1PingTaskDefinition

func NewV202101beta1PingTaskDefinition() *V202101beta1PingTaskDefinition

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

func NewV202101beta1PingTaskDefinitionWithDefaults

func NewV202101beta1PingTaskDefinitionWithDefaults() *V202101beta1PingTaskDefinition

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

func (*V202101beta1PingTaskDefinition) GetCount

func (o *V202101beta1PingTaskDefinition) GetCount() int64

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

func (*V202101beta1PingTaskDefinition) GetCountOk

func (o *V202101beta1PingTaskDefinition) GetCountOk() (*int64, 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 (*V202101beta1PingTaskDefinition) GetExpiry

func (o *V202101beta1PingTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1PingTaskDefinition) GetExpiryOk

func (o *V202101beta1PingTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1PingTaskDefinition) GetPeriod

func (o *V202101beta1PingTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1PingTaskDefinition) GetPeriodOk

func (o *V202101beta1PingTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1PingTaskDefinition) GetTarget

func (o *V202101beta1PingTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1PingTaskDefinition) GetTargetOk

func (o *V202101beta1PingTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1PingTaskDefinition) HasCount

func (o *V202101beta1PingTaskDefinition) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1PingTaskDefinition) HasExpiry

func (o *V202101beta1PingTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1PingTaskDefinition) HasPeriod

func (o *V202101beta1PingTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1PingTaskDefinition) HasTarget

func (o *V202101beta1PingTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1PingTaskDefinition) MarshalJSON

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

func (*V202101beta1PingTaskDefinition) SetCount

func (o *V202101beta1PingTaskDefinition) SetCount(v int64)

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

func (*V202101beta1PingTaskDefinition) SetExpiry

func (o *V202101beta1PingTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1PingTaskDefinition) SetPeriod

func (o *V202101beta1PingTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1PingTaskDefinition) SetTarget

func (o *V202101beta1PingTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1Region

type V202101beta1Region struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

V202101beta1Region struct for V202101beta1Region

func NewV202101beta1Region

func NewV202101beta1Region() *V202101beta1Region

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

func NewV202101beta1RegionWithDefaults

func NewV202101beta1RegionWithDefaults() *V202101beta1Region

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

func (*V202101beta1Region) GetId

func (o *V202101beta1Region) GetId() string

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

func (*V202101beta1Region) GetIdOk

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

func (o *V202101beta1Region) GetName() string

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

func (*V202101beta1Region) GetNameOk

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

func (o *V202101beta1Region) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1Region) HasName

func (o *V202101beta1Region) HasName() bool

HasName returns a boolean if a field has been set.

func (V202101beta1Region) MarshalJSON

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

func (*V202101beta1Region) SetId

func (o *V202101beta1Region) SetId(v string)

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

func (*V202101beta1Region) SetName

func (o *V202101beta1Region) SetName(v string)

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

type V202101beta1SetTestStatusRequest

type V202101beta1SetTestStatusRequest struct {
	Id     *string                 `json:"id,omitempty"`
	Status *V202101beta1TestStatus `json:"status,omitempty"`
}

V202101beta1SetTestStatusRequest struct for V202101beta1SetTestStatusRequest

func NewV202101beta1SetTestStatusRequest

func NewV202101beta1SetTestStatusRequest() *V202101beta1SetTestStatusRequest

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

func NewV202101beta1SetTestStatusRequestWithDefaults

func NewV202101beta1SetTestStatusRequestWithDefaults() *V202101beta1SetTestStatusRequest

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

func (*V202101beta1SetTestStatusRequest) GetId

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

func (*V202101beta1SetTestStatusRequest) GetIdOk

func (o *V202101beta1SetTestStatusRequest) 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 (*V202101beta1SetTestStatusRequest) GetStatus

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

func (*V202101beta1SetTestStatusRequest) GetStatusOk

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

func (*V202101beta1SetTestStatusRequest) HasId

HasId returns a boolean if a field has been set.

func (*V202101beta1SetTestStatusRequest) HasStatus

func (o *V202101beta1SetTestStatusRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (V202101beta1SetTestStatusRequest) MarshalJSON

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

func (*V202101beta1SetTestStatusRequest) SetId

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

func (*V202101beta1SetTestStatusRequest) SetStatus

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

type V202101beta1ShakeTaskDefinition

type V202101beta1ShakeTaskDefinition struct {
	Target *string `json:"target,omitempty"`
	Port   *int64  `json:"port,omitempty"`
	Period *int64  `json:"period,omitempty"`
	Expiry *int64  `json:"expiry,omitempty"`
}

V202101beta1ShakeTaskDefinition struct for V202101beta1ShakeTaskDefinition

func NewV202101beta1ShakeTaskDefinition

func NewV202101beta1ShakeTaskDefinition() *V202101beta1ShakeTaskDefinition

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

func NewV202101beta1ShakeTaskDefinitionWithDefaults

func NewV202101beta1ShakeTaskDefinitionWithDefaults() *V202101beta1ShakeTaskDefinition

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

func (*V202101beta1ShakeTaskDefinition) GetExpiry

func (o *V202101beta1ShakeTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1ShakeTaskDefinition) GetExpiryOk

func (o *V202101beta1ShakeTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1ShakeTaskDefinition) GetPeriod

func (o *V202101beta1ShakeTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1ShakeTaskDefinition) GetPeriodOk

func (o *V202101beta1ShakeTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1ShakeTaskDefinition) GetPort

GetPort returns the Port field value if set, zero value otherwise.

func (*V202101beta1ShakeTaskDefinition) GetPortOk

func (o *V202101beta1ShakeTaskDefinition) GetPortOk() (*int64, bool)

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

func (*V202101beta1ShakeTaskDefinition) GetTarget

func (o *V202101beta1ShakeTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1ShakeTaskDefinition) GetTargetOk

func (o *V202101beta1ShakeTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1ShakeTaskDefinition) HasExpiry

func (o *V202101beta1ShakeTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1ShakeTaskDefinition) HasPeriod

func (o *V202101beta1ShakeTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1ShakeTaskDefinition) HasPort

HasPort returns a boolean if a field has been set.

func (*V202101beta1ShakeTaskDefinition) HasTarget

func (o *V202101beta1ShakeTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1ShakeTaskDefinition) MarshalJSON

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

func (*V202101beta1ShakeTaskDefinition) SetExpiry

func (o *V202101beta1ShakeTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1ShakeTaskDefinition) SetPeriod

func (o *V202101beta1ShakeTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1ShakeTaskDefinition) SetPort

func (o *V202101beta1ShakeTaskDefinition) SetPort(v int64)

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

func (*V202101beta1ShakeTaskDefinition) SetTarget

func (o *V202101beta1ShakeTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1SiteTest

type V202101beta1SiteTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1SiteTest struct for V202101beta1SiteTest

func NewV202101beta1SiteTest

func NewV202101beta1SiteTest() *V202101beta1SiteTest

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

func NewV202101beta1SiteTestWithDefaults

func NewV202101beta1SiteTestWithDefaults() *V202101beta1SiteTest

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

func (*V202101beta1SiteTest) GetTarget

func (o *V202101beta1SiteTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1SiteTest) GetTargetOk

func (o *V202101beta1SiteTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1SiteTest) HasTarget

func (o *V202101beta1SiteTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1SiteTest) MarshalJSON

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

func (*V202101beta1SiteTest) SetTarget

func (o *V202101beta1SiteTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1TagTest

type V202101beta1TagTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1TagTest struct for V202101beta1TagTest

func NewV202101beta1TagTest

func NewV202101beta1TagTest() *V202101beta1TagTest

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

func NewV202101beta1TagTestWithDefaults

func NewV202101beta1TagTestWithDefaults() *V202101beta1TagTest

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

func (*V202101beta1TagTest) GetTarget

func (o *V202101beta1TagTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1TagTest) GetTargetOk

func (o *V202101beta1TagTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1TagTest) HasTarget

func (o *V202101beta1TagTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1TagTest) MarshalJSON

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

func (*V202101beta1TagTest) SetTarget

func (o *V202101beta1TagTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1Task

type V202101beta1Task struct {
	Id         *string                          `json:"id,omitempty"`
	TestId     *string                          `json:"testId,omitempty"`
	DeviceId   *string                          `json:"deviceId,omitempty"`
	State      *V202101beta1TaskState           `json:"state,omitempty"`
	Status     *string                          `json:"status,omitempty"`
	Family     *V202101beta1IPFamily            `json:"family,omitempty"`
	Ping       *V202101beta1PingTaskDefinition  `json:"ping,omitempty"`
	Traceroute *V202101beta1TraceTaskDefinition `json:"traceroute,omitempty"`
	Http       *V202101beta1HTTPTaskDefinition  `json:"http,omitempty"`
	Knock      *V202101beta1KnockTaskDefinition `json:"knock,omitempty"`
	Dns        *V202101beta1DNSTaskDefinition   `json:"dns,omitempty"`
	Shake      *V202101beta1ShakeTaskDefinition `json:"shake,omitempty"`
}

V202101beta1Task struct for V202101beta1Task

func NewV202101beta1Task

func NewV202101beta1Task() *V202101beta1Task

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

func NewV202101beta1TaskWithDefaults

func NewV202101beta1TaskWithDefaults() *V202101beta1Task

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

func (*V202101beta1Task) GetDeviceId

func (o *V202101beta1Task) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*V202101beta1Task) GetDeviceIdOk

func (o *V202101beta1Task) GetDeviceIdOk() (*string, bool)

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

func (*V202101beta1Task) GetDns

GetDns returns the Dns field value if set, zero value otherwise.

func (*V202101beta1Task) GetDnsOk

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

func (*V202101beta1Task) GetFamily

func (o *V202101beta1Task) GetFamily() V202101beta1IPFamily

GetFamily returns the Family field value if set, zero value otherwise.

func (*V202101beta1Task) GetFamilyOk

func (o *V202101beta1Task) GetFamilyOk() (*V202101beta1IPFamily, bool)

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

func (*V202101beta1Task) GetHttp

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

func (*V202101beta1Task) GetHttpOk

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 (*V202101beta1Task) GetId

func (o *V202101beta1Task) GetId() string

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

func (*V202101beta1Task) GetIdOk

func (o *V202101beta1Task) 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 (*V202101beta1Task) GetKnock

GetKnock returns the Knock field value if set, zero value otherwise.

func (*V202101beta1Task) GetKnockOk

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

func (*V202101beta1Task) GetPing

GetPing returns the Ping field value if set, zero value otherwise.

func (*V202101beta1Task) GetPingOk

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

func (*V202101beta1Task) GetShake

GetShake returns the Shake field value if set, zero value otherwise.

func (*V202101beta1Task) GetShakeOk

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

func (*V202101beta1Task) GetState

GetState returns the State field value if set, zero value otherwise.

func (*V202101beta1Task) GetStateOk

func (o *V202101beta1Task) GetStateOk() (*V202101beta1TaskState, 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 (*V202101beta1Task) GetStatus

func (o *V202101beta1Task) GetStatus() string

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

func (*V202101beta1Task) GetStatusOk

func (o *V202101beta1Task) 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 (*V202101beta1Task) GetTestId

func (o *V202101beta1Task) GetTestId() string

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

func (*V202101beta1Task) GetTestIdOk

func (o *V202101beta1Task) 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 (*V202101beta1Task) GetTraceroute

GetTraceroute returns the Traceroute field value if set, zero value otherwise.

func (*V202101beta1Task) GetTracerouteOk

func (o *V202101beta1Task) GetTracerouteOk() (*V202101beta1TraceTaskDefinition, bool)

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

func (*V202101beta1Task) HasDeviceId

func (o *V202101beta1Task) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*V202101beta1Task) HasDns

func (o *V202101beta1Task) HasDns() bool

HasDns returns a boolean if a field has been set.

func (*V202101beta1Task) HasFamily

func (o *V202101beta1Task) HasFamily() bool

HasFamily returns a boolean if a field has been set.

func (*V202101beta1Task) HasHttp

func (o *V202101beta1Task) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*V202101beta1Task) HasId

func (o *V202101beta1Task) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1Task) HasKnock

func (o *V202101beta1Task) HasKnock() bool

HasKnock returns a boolean if a field has been set.

func (*V202101beta1Task) HasPing

func (o *V202101beta1Task) HasPing() bool

HasPing returns a boolean if a field has been set.

func (*V202101beta1Task) HasShake

func (o *V202101beta1Task) HasShake() bool

HasShake returns a boolean if a field has been set.

func (*V202101beta1Task) HasState

func (o *V202101beta1Task) HasState() bool

HasState returns a boolean if a field has been set.

func (*V202101beta1Task) HasStatus

func (o *V202101beta1Task) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V202101beta1Task) HasTestId

func (o *V202101beta1Task) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (*V202101beta1Task) HasTraceroute

func (o *V202101beta1Task) HasTraceroute() bool

HasTraceroute returns a boolean if a field has been set.

func (V202101beta1Task) MarshalJSON

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

func (*V202101beta1Task) SetDeviceId

func (o *V202101beta1Task) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*V202101beta1Task) SetDns

SetDns gets a reference to the given V202101beta1DNSTaskDefinition and assigns it to the Dns field.

func (*V202101beta1Task) SetFamily

func (o *V202101beta1Task) SetFamily(v V202101beta1IPFamily)

SetFamily gets a reference to the given V202101beta1IPFamily and assigns it to the Family field.

func (*V202101beta1Task) SetHttp

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

func (*V202101beta1Task) SetId

func (o *V202101beta1Task) SetId(v string)

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

func (*V202101beta1Task) SetKnock

SetKnock gets a reference to the given V202101beta1KnockTaskDefinition and assigns it to the Knock field.

func (*V202101beta1Task) SetPing

SetPing gets a reference to the given V202101beta1PingTaskDefinition and assigns it to the Ping field.

func (*V202101beta1Task) SetShake

SetShake gets a reference to the given V202101beta1ShakeTaskDefinition and assigns it to the Shake field.

func (*V202101beta1Task) SetState

func (o *V202101beta1Task) SetState(v V202101beta1TaskState)

SetState gets a reference to the given V202101beta1TaskState and assigns it to the State field.

func (*V202101beta1Task) SetStatus

func (o *V202101beta1Task) SetStatus(v string)

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

func (*V202101beta1Task) SetTestId

func (o *V202101beta1Task) SetTestId(v string)

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

func (*V202101beta1Task) SetTraceroute

SetTraceroute gets a reference to the given V202101beta1TraceTaskDefinition and assigns it to the Traceroute field.

type V202101beta1TaskHealth

type V202101beta1TaskHealth struct {
	Task          *V202101beta1Task          `json:"task,omitempty"`
	Agents        *[]V202101beta1AgentHealth `json:"agents,omitempty"`
	OverallHealth *V202101beta1Health        `json:"overallHealth,omitempty"`
	TargetAgent   *V202101beta1Agent         `json:"targetAgent,omitempty"`
}

V202101beta1TaskHealth struct for V202101beta1TaskHealth

func NewV202101beta1TaskHealth

func NewV202101beta1TaskHealth() *V202101beta1TaskHealth

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

func NewV202101beta1TaskHealthWithDefaults

func NewV202101beta1TaskHealthWithDefaults() *V202101beta1TaskHealth

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

func (*V202101beta1TaskHealth) GetAgents

GetAgents returns the Agents field value if set, zero value otherwise.

func (*V202101beta1TaskHealth) GetAgentsOk

func (o *V202101beta1TaskHealth) GetAgentsOk() (*[]V202101beta1AgentHealth, bool)

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

func (*V202101beta1TaskHealth) GetOverallHealth

func (o *V202101beta1TaskHealth) GetOverallHealth() V202101beta1Health

GetOverallHealth returns the OverallHealth field value if set, zero value otherwise.

func (*V202101beta1TaskHealth) GetOverallHealthOk

func (o *V202101beta1TaskHealth) GetOverallHealthOk() (*V202101beta1Health, bool)

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

func (*V202101beta1TaskHealth) GetTargetAgent

func (o *V202101beta1TaskHealth) GetTargetAgent() V202101beta1Agent

GetTargetAgent returns the TargetAgent field value if set, zero value otherwise.

func (*V202101beta1TaskHealth) GetTargetAgentOk

func (o *V202101beta1TaskHealth) GetTargetAgentOk() (*V202101beta1Agent, bool)

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

func (*V202101beta1TaskHealth) GetTask

GetTask returns the Task field value if set, zero value otherwise.

func (*V202101beta1TaskHealth) GetTaskOk

func (o *V202101beta1TaskHealth) GetTaskOk() (*V202101beta1Task, bool)

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

func (*V202101beta1TaskHealth) HasAgents

func (o *V202101beta1TaskHealth) HasAgents() bool

HasAgents returns a boolean if a field has been set.

func (*V202101beta1TaskHealth) HasOverallHealth

func (o *V202101beta1TaskHealth) HasOverallHealth() bool

HasOverallHealth returns a boolean if a field has been set.

func (*V202101beta1TaskHealth) HasTargetAgent

func (o *V202101beta1TaskHealth) HasTargetAgent() bool

HasTargetAgent returns a boolean if a field has been set.

func (*V202101beta1TaskHealth) HasTask

func (o *V202101beta1TaskHealth) HasTask() bool

HasTask returns a boolean if a field has been set.

func (V202101beta1TaskHealth) MarshalJSON

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

func (*V202101beta1TaskHealth) SetAgents

SetAgents gets a reference to the given []V202101beta1AgentHealth and assigns it to the Agents field.

func (*V202101beta1TaskHealth) SetOverallHealth

func (o *V202101beta1TaskHealth) SetOverallHealth(v V202101beta1Health)

SetOverallHealth gets a reference to the given V202101beta1Health and assigns it to the OverallHealth field.

func (*V202101beta1TaskHealth) SetTargetAgent

func (o *V202101beta1TaskHealth) SetTargetAgent(v V202101beta1Agent)

SetTargetAgent gets a reference to the given V202101beta1Agent and assigns it to the TargetAgent field.

func (*V202101beta1TaskHealth) SetTask

SetTask gets a reference to the given V202101beta1Task and assigns it to the Task field.

type V202101beta1TaskState

type V202101beta1TaskState string

V202101beta1TaskState the model 'V202101beta1TaskState'

const (
	V202101BETA1TASKSTATE_UNSPECIFIED V202101beta1TaskState = "TASK_STATE_UNSPECIFIED"
	V202101BETA1TASKSTATE_CREATED     V202101beta1TaskState = "TASK_STATE_CREATED"
	V202101BETA1TASKSTATE_UPDATED     V202101beta1TaskState = "TASK_STATE_UPDATED"
	V202101BETA1TASKSTATE_DELETED     V202101beta1TaskState = "TASK_STATE_DELETED"
)

List of v202101beta1TaskState

func NewV202101beta1TaskStateFromValue

func NewV202101beta1TaskStateFromValue(v string) (*V202101beta1TaskState, error)

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

func (V202101beta1TaskState) IsValid

func (v V202101beta1TaskState) IsValid() bool

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

func (V202101beta1TaskState) Ptr

Ptr returns reference to v202101beta1TaskState value

func (*V202101beta1TaskState) UnmarshalJSON

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

type V202101beta1Test

type V202101beta1Test struct {
	Id            *string                   `json:"id,omitempty"`
	Name          *string                   `json:"name,omitempty"`
	Type          *string                   `json:"type,omitempty"`
	DeviceId      *string                   `json:"deviceId,omitempty"`
	Status        *V202101beta1TestStatus   `json:"status,omitempty"`
	Settings      *V202101beta1TestSettings `json:"settings,omitempty"`
	ExpiresOn     *time.Time                `json:"expiresOn,omitempty"`
	Cdate         *time.Time                `json:"cdate,omitempty"`
	Edate         *time.Time                `json:"edate,omitempty"`
	CreatedBy     *V202101beta1UserInfo     `json:"createdBy,omitempty"`
	LastUpdatedBy *V202101beta1UserInfo     `json:"lastUpdatedBy,omitempty"`
}

V202101beta1Test struct for V202101beta1Test

func NewV202101beta1Test

func NewV202101beta1Test() *V202101beta1Test

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

func NewV202101beta1TestWithDefaults

func NewV202101beta1TestWithDefaults() *V202101beta1Test

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

func (*V202101beta1Test) GetCdate

func (o *V202101beta1Test) GetCdate() time.Time

GetCdate returns the Cdate field value if set, zero value otherwise.

func (*V202101beta1Test) GetCdateOk

func (o *V202101beta1Test) GetCdateOk() (*time.Time, bool)

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

func (*V202101beta1Test) GetCreatedBy

func (o *V202101beta1Test) GetCreatedBy() V202101beta1UserInfo

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*V202101beta1Test) GetCreatedByOk

func (o *V202101beta1Test) GetCreatedByOk() (*V202101beta1UserInfo, bool)

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

func (*V202101beta1Test) GetDeviceId

func (o *V202101beta1Test) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*V202101beta1Test) GetDeviceIdOk

func (o *V202101beta1Test) GetDeviceIdOk() (*string, bool)

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

func (*V202101beta1Test) GetEdate

func (o *V202101beta1Test) GetEdate() time.Time

GetEdate returns the Edate field value if set, zero value otherwise.

func (*V202101beta1Test) GetEdateOk

func (o *V202101beta1Test) GetEdateOk() (*time.Time, bool)

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

func (*V202101beta1Test) GetExpiresOn

func (o *V202101beta1Test) GetExpiresOn() time.Time

GetExpiresOn returns the ExpiresOn field value if set, zero value otherwise.

func (*V202101beta1Test) GetExpiresOnOk

func (o *V202101beta1Test) GetExpiresOnOk() (*time.Time, bool)

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

func (*V202101beta1Test) GetId

func (o *V202101beta1Test) GetId() string

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

func (*V202101beta1Test) GetIdOk

func (o *V202101beta1Test) 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 (*V202101beta1Test) GetLastUpdatedBy

func (o *V202101beta1Test) GetLastUpdatedBy() V202101beta1UserInfo

GetLastUpdatedBy returns the LastUpdatedBy field value if set, zero value otherwise.

func (*V202101beta1Test) GetLastUpdatedByOk

func (o *V202101beta1Test) GetLastUpdatedByOk() (*V202101beta1UserInfo, bool)

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

func (*V202101beta1Test) GetName

func (o *V202101beta1Test) GetName() string

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

func (*V202101beta1Test) GetNameOk

func (o *V202101beta1Test) 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 (*V202101beta1Test) GetSettings

func (o *V202101beta1Test) GetSettings() V202101beta1TestSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*V202101beta1Test) GetSettingsOk

func (o *V202101beta1Test) GetSettingsOk() (*V202101beta1TestSettings, 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 (*V202101beta1Test) GetStatus

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

func (*V202101beta1Test) GetStatusOk

func (o *V202101beta1Test) GetStatusOk() (*V202101beta1TestStatus, 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 (*V202101beta1Test) GetType

func (o *V202101beta1Test) GetType() string

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

func (*V202101beta1Test) GetTypeOk

func (o *V202101beta1Test) 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 (*V202101beta1Test) HasCdate

func (o *V202101beta1Test) HasCdate() bool

HasCdate returns a boolean if a field has been set.

func (*V202101beta1Test) HasCreatedBy

func (o *V202101beta1Test) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*V202101beta1Test) HasDeviceId

func (o *V202101beta1Test) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*V202101beta1Test) HasEdate

func (o *V202101beta1Test) HasEdate() bool

HasEdate returns a boolean if a field has been set.

func (*V202101beta1Test) HasExpiresOn

func (o *V202101beta1Test) HasExpiresOn() bool

HasExpiresOn returns a boolean if a field has been set.

func (*V202101beta1Test) HasId

func (o *V202101beta1Test) HasId() bool

HasId returns a boolean if a field has been set.

func (*V202101beta1Test) HasLastUpdatedBy

func (o *V202101beta1Test) HasLastUpdatedBy() bool

HasLastUpdatedBy returns a boolean if a field has been set.

func (*V202101beta1Test) HasName

func (o *V202101beta1Test) HasName() bool

HasName returns a boolean if a field has been set.

func (*V202101beta1Test) HasSettings

func (o *V202101beta1Test) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*V202101beta1Test) HasStatus

func (o *V202101beta1Test) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*V202101beta1Test) HasType

func (o *V202101beta1Test) HasType() bool

HasType returns a boolean if a field has been set.

func (V202101beta1Test) MarshalJSON

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

func (*V202101beta1Test) SetCdate

func (o *V202101beta1Test) SetCdate(v time.Time)

SetCdate gets a reference to the given time.Time and assigns it to the Cdate field.

func (*V202101beta1Test) SetCreatedBy

func (o *V202101beta1Test) SetCreatedBy(v V202101beta1UserInfo)

SetCreatedBy gets a reference to the given V202101beta1UserInfo and assigns it to the CreatedBy field.

func (*V202101beta1Test) SetDeviceId

func (o *V202101beta1Test) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*V202101beta1Test) SetEdate

func (o *V202101beta1Test) SetEdate(v time.Time)

SetEdate gets a reference to the given time.Time and assigns it to the Edate field.

func (*V202101beta1Test) SetExpiresOn

func (o *V202101beta1Test) SetExpiresOn(v time.Time)

SetExpiresOn gets a reference to the given time.Time and assigns it to the ExpiresOn field.

func (*V202101beta1Test) SetId

func (o *V202101beta1Test) SetId(v string)

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

func (*V202101beta1Test) SetLastUpdatedBy

func (o *V202101beta1Test) SetLastUpdatedBy(v V202101beta1UserInfo)

SetLastUpdatedBy gets a reference to the given V202101beta1UserInfo and assigns it to the LastUpdatedBy field.

func (*V202101beta1Test) SetName

func (o *V202101beta1Test) SetName(v string)

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

func (*V202101beta1Test) SetSettings

func (o *V202101beta1Test) SetSettings(v V202101beta1TestSettings)

SetSettings gets a reference to the given V202101beta1TestSettings and assigns it to the Settings field.

func (*V202101beta1Test) SetStatus

func (o *V202101beta1Test) SetStatus(v V202101beta1TestStatus)

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

func (*V202101beta1Test) SetType

func (o *V202101beta1Test) SetType(v string)

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

type V202101beta1TestHealth

type V202101beta1TestHealth struct {
	TestId          *string                        `json:"testId,omitempty"`
	Tasks           *[]V202101beta1TaskHealth      `json:"tasks,omitempty"`
	OverallHealth   *V202101beta1Health            `json:"overallHealth,omitempty"`
	HealthTs        *[]V202101beta1Health          `json:"healthTs,omitempty"`
	AgentTaskConfig *[]V202101beta1AgentTaskConfig `json:"agentTaskConfig,omitempty"`
	Mesh            *[]V202101beta1MeshResponse    `json:"mesh,omitempty"`
}

V202101beta1TestHealth struct for V202101beta1TestHealth

func NewV202101beta1TestHealth

func NewV202101beta1TestHealth() *V202101beta1TestHealth

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

func NewV202101beta1TestHealthWithDefaults

func NewV202101beta1TestHealthWithDefaults() *V202101beta1TestHealth

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

func (*V202101beta1TestHealth) GetAgentTaskConfig

func (o *V202101beta1TestHealth) GetAgentTaskConfig() []V202101beta1AgentTaskConfig

GetAgentTaskConfig returns the AgentTaskConfig field value if set, zero value otherwise.

func (*V202101beta1TestHealth) GetAgentTaskConfigOk

func (o *V202101beta1TestHealth) GetAgentTaskConfigOk() (*[]V202101beta1AgentTaskConfig, bool)

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

func (*V202101beta1TestHealth) GetHealthTs

func (o *V202101beta1TestHealth) GetHealthTs() []V202101beta1Health

GetHealthTs returns the HealthTs field value if set, zero value otherwise.

func (*V202101beta1TestHealth) GetHealthTsOk

func (o *V202101beta1TestHealth) GetHealthTsOk() (*[]V202101beta1Health, bool)

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

func (*V202101beta1TestHealth) GetMesh

GetMesh returns the Mesh field value if set, zero value otherwise.

func (*V202101beta1TestHealth) GetMeshOk

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

func (*V202101beta1TestHealth) GetOverallHealth

func (o *V202101beta1TestHealth) GetOverallHealth() V202101beta1Health

GetOverallHealth returns the OverallHealth field value if set, zero value otherwise.

func (*V202101beta1TestHealth) GetOverallHealthOk

func (o *V202101beta1TestHealth) GetOverallHealthOk() (*V202101beta1Health, bool)

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

func (*V202101beta1TestHealth) GetTasks

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*V202101beta1TestHealth) GetTasksOk

func (o *V202101beta1TestHealth) GetTasksOk() (*[]V202101beta1TaskHealth, bool)

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

func (*V202101beta1TestHealth) GetTestId

func (o *V202101beta1TestHealth) GetTestId() string

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

func (*V202101beta1TestHealth) GetTestIdOk

func (o *V202101beta1TestHealth) 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 (*V202101beta1TestHealth) HasAgentTaskConfig

func (o *V202101beta1TestHealth) HasAgentTaskConfig() bool

HasAgentTaskConfig returns a boolean if a field has been set.

func (*V202101beta1TestHealth) HasHealthTs

func (o *V202101beta1TestHealth) HasHealthTs() bool

HasHealthTs returns a boolean if a field has been set.

func (*V202101beta1TestHealth) HasMesh

func (o *V202101beta1TestHealth) HasMesh() bool

HasMesh returns a boolean if a field has been set.

func (*V202101beta1TestHealth) HasOverallHealth

func (o *V202101beta1TestHealth) HasOverallHealth() bool

HasOverallHealth returns a boolean if a field has been set.

func (*V202101beta1TestHealth) HasTasks

func (o *V202101beta1TestHealth) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (*V202101beta1TestHealth) HasTestId

func (o *V202101beta1TestHealth) HasTestId() bool

HasTestId returns a boolean if a field has been set.

func (V202101beta1TestHealth) MarshalJSON

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

func (*V202101beta1TestHealth) SetAgentTaskConfig

func (o *V202101beta1TestHealth) SetAgentTaskConfig(v []V202101beta1AgentTaskConfig)

SetAgentTaskConfig gets a reference to the given []V202101beta1AgentTaskConfig and assigns it to the AgentTaskConfig field.

func (*V202101beta1TestHealth) SetHealthTs

func (o *V202101beta1TestHealth) SetHealthTs(v []V202101beta1Health)

SetHealthTs gets a reference to the given []V202101beta1Health and assigns it to the HealthTs field.

func (*V202101beta1TestHealth) SetMesh

SetMesh gets a reference to the given []V202101beta1MeshResponse and assigns it to the Mesh field.

func (*V202101beta1TestHealth) SetOverallHealth

func (o *V202101beta1TestHealth) SetOverallHealth(v V202101beta1Health)

SetOverallHealth gets a reference to the given V202101beta1Health and assigns it to the OverallHealth field.

func (*V202101beta1TestHealth) SetTasks

SetTasks gets a reference to the given []V202101beta1TaskHealth and assigns it to the Tasks field.

func (*V202101beta1TestHealth) SetTestId

func (o *V202101beta1TestHealth) SetTestId(v string)

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

type V202101beta1TestMonitoringSettings

type V202101beta1TestMonitoringSettings struct {
	ActivationGracePeriod *string   `json:"activationGracePeriod,omitempty"`
	ActivationTimeUnit    *string   `json:"activationTimeUnit,omitempty"`
	ActivationTimeWindow  *string   `json:"activationTimeWindow,omitempty"`
	ActivationTimes       *string   `json:"activationTimes,omitempty"`
	NotificationChannels  *[]string `json:"notificationChannels,omitempty"`
}

V202101beta1TestMonitoringSettings struct for V202101beta1TestMonitoringSettings

func NewV202101beta1TestMonitoringSettings

func NewV202101beta1TestMonitoringSettings() *V202101beta1TestMonitoringSettings

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

func NewV202101beta1TestMonitoringSettingsWithDefaults

func NewV202101beta1TestMonitoringSettingsWithDefaults() *V202101beta1TestMonitoringSettings

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

func (*V202101beta1TestMonitoringSettings) GetActivationGracePeriod

func (o *V202101beta1TestMonitoringSettings) GetActivationGracePeriod() string

GetActivationGracePeriod returns the ActivationGracePeriod field value if set, zero value otherwise.

func (*V202101beta1TestMonitoringSettings) GetActivationGracePeriodOk

func (o *V202101beta1TestMonitoringSettings) GetActivationGracePeriodOk() (*string, bool)

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

func (*V202101beta1TestMonitoringSettings) GetActivationTimeUnit

func (o *V202101beta1TestMonitoringSettings) GetActivationTimeUnit() string

GetActivationTimeUnit returns the ActivationTimeUnit field value if set, zero value otherwise.

func (*V202101beta1TestMonitoringSettings) GetActivationTimeUnitOk

func (o *V202101beta1TestMonitoringSettings) GetActivationTimeUnitOk() (*string, bool)

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

func (*V202101beta1TestMonitoringSettings) GetActivationTimeWindow

func (o *V202101beta1TestMonitoringSettings) GetActivationTimeWindow() string

GetActivationTimeWindow returns the ActivationTimeWindow field value if set, zero value otherwise.

func (*V202101beta1TestMonitoringSettings) GetActivationTimeWindowOk

func (o *V202101beta1TestMonitoringSettings) GetActivationTimeWindowOk() (*string, bool)

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

func (*V202101beta1TestMonitoringSettings) GetActivationTimes

func (o *V202101beta1TestMonitoringSettings) GetActivationTimes() string

GetActivationTimes returns the ActivationTimes field value if set, zero value otherwise.

func (*V202101beta1TestMonitoringSettings) GetActivationTimesOk

func (o *V202101beta1TestMonitoringSettings) GetActivationTimesOk() (*string, bool)

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

func (*V202101beta1TestMonitoringSettings) GetNotificationChannels

func (o *V202101beta1TestMonitoringSettings) GetNotificationChannels() []string

GetNotificationChannels returns the NotificationChannels field value if set, zero value otherwise.

func (*V202101beta1TestMonitoringSettings) GetNotificationChannelsOk

func (o *V202101beta1TestMonitoringSettings) GetNotificationChannelsOk() (*[]string, bool)

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

func (*V202101beta1TestMonitoringSettings) HasActivationGracePeriod

func (o *V202101beta1TestMonitoringSettings) HasActivationGracePeriod() bool

HasActivationGracePeriod returns a boolean if a field has been set.

func (*V202101beta1TestMonitoringSettings) HasActivationTimeUnit

func (o *V202101beta1TestMonitoringSettings) HasActivationTimeUnit() bool

HasActivationTimeUnit returns a boolean if a field has been set.

func (*V202101beta1TestMonitoringSettings) HasActivationTimeWindow

func (o *V202101beta1TestMonitoringSettings) HasActivationTimeWindow() bool

HasActivationTimeWindow returns a boolean if a field has been set.

func (*V202101beta1TestMonitoringSettings) HasActivationTimes

func (o *V202101beta1TestMonitoringSettings) HasActivationTimes() bool

HasActivationTimes returns a boolean if a field has been set.

func (*V202101beta1TestMonitoringSettings) HasNotificationChannels

func (o *V202101beta1TestMonitoringSettings) HasNotificationChannels() bool

HasNotificationChannels returns a boolean if a field has been set.

func (V202101beta1TestMonitoringSettings) MarshalJSON

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

func (*V202101beta1TestMonitoringSettings) SetActivationGracePeriod

func (o *V202101beta1TestMonitoringSettings) SetActivationGracePeriod(v string)

SetActivationGracePeriod gets a reference to the given string and assigns it to the ActivationGracePeriod field.

func (*V202101beta1TestMonitoringSettings) SetActivationTimeUnit

func (o *V202101beta1TestMonitoringSettings) SetActivationTimeUnit(v string)

SetActivationTimeUnit gets a reference to the given string and assigns it to the ActivationTimeUnit field.

func (*V202101beta1TestMonitoringSettings) SetActivationTimeWindow

func (o *V202101beta1TestMonitoringSettings) SetActivationTimeWindow(v string)

SetActivationTimeWindow gets a reference to the given string and assigns it to the ActivationTimeWindow field.

func (*V202101beta1TestMonitoringSettings) SetActivationTimes

func (o *V202101beta1TestMonitoringSettings) SetActivationTimes(v string)

SetActivationTimes gets a reference to the given string and assigns it to the ActivationTimes field.

func (*V202101beta1TestMonitoringSettings) SetNotificationChannels

func (o *V202101beta1TestMonitoringSettings) SetNotificationChannels(v []string)

SetNotificationChannels gets a reference to the given []string and assigns it to the NotificationChannels field.

type V202101beta1TestPingSettings

type V202101beta1TestPingSettings struct {
	Period *float32 `json:"period,omitempty"`
	Count  *float32 `json:"count,omitempty"`
	Expiry *float32 `json:"expiry,omitempty"`
	Delay  *float32 `json:"delay,omitempty"`
}

V202101beta1TestPingSettings struct for V202101beta1TestPingSettings

func NewV202101beta1TestPingSettings

func NewV202101beta1TestPingSettings() *V202101beta1TestPingSettings

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

func NewV202101beta1TestPingSettingsWithDefaults

func NewV202101beta1TestPingSettingsWithDefaults() *V202101beta1TestPingSettings

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

func (*V202101beta1TestPingSettings) GetCount

func (o *V202101beta1TestPingSettings) GetCount() float32

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

func (*V202101beta1TestPingSettings) GetCountOk

func (o *V202101beta1TestPingSettings) GetCountOk() (*float32, 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 (*V202101beta1TestPingSettings) GetDelay

func (o *V202101beta1TestPingSettings) GetDelay() float32

GetDelay returns the Delay field value if set, zero value otherwise.

func (*V202101beta1TestPingSettings) GetDelayOk

func (o *V202101beta1TestPingSettings) GetDelayOk() (*float32, bool)

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

func (*V202101beta1TestPingSettings) GetExpiry

func (o *V202101beta1TestPingSettings) GetExpiry() float32

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1TestPingSettings) GetExpiryOk

func (o *V202101beta1TestPingSettings) GetExpiryOk() (*float32, bool)

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

func (*V202101beta1TestPingSettings) GetPeriod

func (o *V202101beta1TestPingSettings) GetPeriod() float32

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1TestPingSettings) GetPeriodOk

func (o *V202101beta1TestPingSettings) GetPeriodOk() (*float32, bool)

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

func (*V202101beta1TestPingSettings) HasCount

func (o *V202101beta1TestPingSettings) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1TestPingSettings) HasDelay

func (o *V202101beta1TestPingSettings) HasDelay() bool

HasDelay returns a boolean if a field has been set.

func (*V202101beta1TestPingSettings) HasExpiry

func (o *V202101beta1TestPingSettings) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1TestPingSettings) HasPeriod

func (o *V202101beta1TestPingSettings) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (V202101beta1TestPingSettings) MarshalJSON

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

func (*V202101beta1TestPingSettings) SetCount

func (o *V202101beta1TestPingSettings) SetCount(v float32)

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

func (*V202101beta1TestPingSettings) SetDelay

func (o *V202101beta1TestPingSettings) SetDelay(v float32)

SetDelay gets a reference to the given float32 and assigns it to the Delay field.

func (*V202101beta1TestPingSettings) SetExpiry

func (o *V202101beta1TestPingSettings) SetExpiry(v float32)

SetExpiry gets a reference to the given float32 and assigns it to the Expiry field.

func (*V202101beta1TestPingSettings) SetPeriod

func (o *V202101beta1TestPingSettings) SetPeriod(v float32)

SetPeriod gets a reference to the given float32 and assigns it to the Period field.

type V202101beta1TestSettings

type V202101beta1TestSettings struct {
	Hostname           *V202101beta1HostnameTest           `json:"hostname,omitempty"`
	Ip                 *V202101beta1IpTest                 `json:"ip,omitempty"`
	Agent              *V202101beta1AgentTest              `json:"agent,omitempty"`
	Flow               *V202101beta1FlowTest               `json:"flow,omitempty"`
	Site               *V202101beta1SiteTest               `json:"site,omitempty"`
	Tag                *V202101beta1TagTest                `json:"tag,omitempty"`
	Dns                *V202101beta1DnsTest                `json:"dns,omitempty"`
	Url                *V202101beta1UrlTest                `json:"url,omitempty"`
	NetworkGrid        *V202101beta1GridTest               `json:"networkGrid,omitempty"`
	PageLoad           *V202101beta1UrlTest                `json:"pageLoad,omitempty"`
	DnsGrid            *V202101beta1GridTest               `json:"dnsGrid,omitempty"`
	AgentIds           *[]string                           `json:"agentIds,omitempty"`
	Period             *int64                              `json:"period,omitempty"`
	Count              *int64                              `json:"count,omitempty"`
	Expiry             *int64                              `json:"expiry,omitempty"`
	Limit              *int64                              `json:"limit,omitempty"`
	Tasks              *[]string                           `json:"tasks,omitempty"`
	HealthSettings     *V202101beta1HealthSettings         `json:"healthSettings,omitempty"`
	MonitoringSettings *V202101beta1TestMonitoringSettings `json:"monitoringSettings,omitempty"`
	Ping               *V202101beta1TestPingSettings       `json:"ping,omitempty"`
	Trace              *V202101beta1TestTraceSettings      `json:"trace,omitempty"`
	Port               *int64                              `json:"port,omitempty"`
	Protocol           *string                             `json:"protocol,omitempty"`
	Family             *V202101beta1IPFamily               `json:"family,omitempty"`
	Servers            *[]string                           `json:"servers,omitempty"`
	TargetType         *string                             `json:"targetType,omitempty"`
	TargetValue        *string                             `json:"targetValue,omitempty"`
	UseLocalIp         *bool                               `json:"useLocalIp,omitempty"`
	Reciprocal         *bool                               `json:"reciprocal,omitempty"`
	RollupLevel        *int64                              `json:"rollupLevel,omitempty"`
	Http               *V202101beta1HTTPConfig             `json:"http,omitempty"`
}

V202101beta1TestSettings struct for V202101beta1TestSettings

func NewV202101beta1TestSettings

func NewV202101beta1TestSettings() *V202101beta1TestSettings

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

func NewV202101beta1TestSettingsWithDefaults

func NewV202101beta1TestSettingsWithDefaults() *V202101beta1TestSettings

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

func (*V202101beta1TestSettings) GetAgent

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetAgentIds

func (o *V202101beta1TestSettings) GetAgentIds() []string

GetAgentIds returns the AgentIds field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetAgentIdsOk

func (o *V202101beta1TestSettings) GetAgentIdsOk() (*[]string, bool)

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

func (*V202101beta1TestSettings) GetAgentOk

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

func (*V202101beta1TestSettings) GetCount

func (o *V202101beta1TestSettings) GetCount() int64

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

func (*V202101beta1TestSettings) GetCountOk

func (o *V202101beta1TestSettings) GetCountOk() (*int64, 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 (*V202101beta1TestSettings) GetDns

GetDns returns the Dns field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetDnsGrid

GetDnsGrid returns the DnsGrid field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetDnsGridOk

func (o *V202101beta1TestSettings) GetDnsGridOk() (*V202101beta1GridTest, bool)

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

func (*V202101beta1TestSettings) GetDnsOk

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

func (*V202101beta1TestSettings) GetExpiry

func (o *V202101beta1TestSettings) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetExpiryOk

func (o *V202101beta1TestSettings) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1TestSettings) GetFamily

GetFamily returns the Family field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetFamilyOk

func (o *V202101beta1TestSettings) GetFamilyOk() (*V202101beta1IPFamily, bool)

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

func (*V202101beta1TestSettings) GetFlow

GetFlow returns the Flow field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetFlowOk

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

func (*V202101beta1TestSettings) GetHealthSettings

GetHealthSettings returns the HealthSettings field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetHealthSettingsOk

func (o *V202101beta1TestSettings) GetHealthSettingsOk() (*V202101beta1HealthSettings, bool)

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

func (*V202101beta1TestSettings) GetHostname

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetHostnameOk

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

func (*V202101beta1TestSettings) GetHttp

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

func (*V202101beta1TestSettings) GetHttpOk

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 (*V202101beta1TestSettings) GetIp

GetIp returns the Ip field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetIpOk

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

func (*V202101beta1TestSettings) GetLimit

func (o *V202101beta1TestSettings) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetLimitOk

func (o *V202101beta1TestSettings) GetLimitOk() (*int64, bool)

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

func (*V202101beta1TestSettings) GetMonitoringSettings

GetMonitoringSettings returns the MonitoringSettings field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetMonitoringSettingsOk

func (o *V202101beta1TestSettings) GetMonitoringSettingsOk() (*V202101beta1TestMonitoringSettings, bool)

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

func (*V202101beta1TestSettings) GetNetworkGrid

func (o *V202101beta1TestSettings) GetNetworkGrid() V202101beta1GridTest

GetNetworkGrid returns the NetworkGrid field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetNetworkGridOk

func (o *V202101beta1TestSettings) GetNetworkGridOk() (*V202101beta1GridTest, bool)

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

func (*V202101beta1TestSettings) GetPageLoad

GetPageLoad returns the PageLoad field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetPageLoadOk

func (o *V202101beta1TestSettings) GetPageLoadOk() (*V202101beta1UrlTest, bool)

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

func (*V202101beta1TestSettings) GetPeriod

func (o *V202101beta1TestSettings) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetPeriodOk

func (o *V202101beta1TestSettings) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1TestSettings) GetPing

GetPing returns the Ping field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetPingOk

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

func (*V202101beta1TestSettings) GetPort

func (o *V202101beta1TestSettings) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetPortOk

func (o *V202101beta1TestSettings) GetPortOk() (*int64, bool)

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

func (*V202101beta1TestSettings) GetProtocol

func (o *V202101beta1TestSettings) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetProtocolOk

func (o *V202101beta1TestSettings) GetProtocolOk() (*string, bool)

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

func (*V202101beta1TestSettings) GetReciprocal

func (o *V202101beta1TestSettings) GetReciprocal() bool

GetReciprocal returns the Reciprocal field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetReciprocalOk

func (o *V202101beta1TestSettings) GetReciprocalOk() (*bool, bool)

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

func (*V202101beta1TestSettings) GetRollupLevel

func (o *V202101beta1TestSettings) GetRollupLevel() int64

GetRollupLevel returns the RollupLevel field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetRollupLevelOk

func (o *V202101beta1TestSettings) GetRollupLevelOk() (*int64, bool)

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

func (*V202101beta1TestSettings) GetServers

func (o *V202101beta1TestSettings) GetServers() []string

GetServers returns the Servers field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetServersOk

func (o *V202101beta1TestSettings) GetServersOk() (*[]string, bool)

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

func (*V202101beta1TestSettings) GetSite

GetSite returns the Site field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetSiteOk

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

func (*V202101beta1TestSettings) GetTag

GetTag returns the Tag field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetTagOk

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

func (*V202101beta1TestSettings) GetTargetType

func (o *V202101beta1TestSettings) GetTargetType() string

GetTargetType returns the TargetType field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetTargetTypeOk

func (o *V202101beta1TestSettings) GetTargetTypeOk() (*string, bool)

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

func (*V202101beta1TestSettings) GetTargetValue

func (o *V202101beta1TestSettings) GetTargetValue() string

GetTargetValue returns the TargetValue field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetTargetValueOk

func (o *V202101beta1TestSettings) GetTargetValueOk() (*string, bool)

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

func (*V202101beta1TestSettings) GetTasks

func (o *V202101beta1TestSettings) GetTasks() []string

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetTasksOk

func (o *V202101beta1TestSettings) GetTasksOk() (*[]string, bool)

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

func (*V202101beta1TestSettings) GetTrace

GetTrace returns the Trace field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetTraceOk

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 (*V202101beta1TestSettings) GetUrl

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

func (*V202101beta1TestSettings) GetUrlOk

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

func (*V202101beta1TestSettings) GetUseLocalIp

func (o *V202101beta1TestSettings) GetUseLocalIp() bool

GetUseLocalIp returns the UseLocalIp field value if set, zero value otherwise.

func (*V202101beta1TestSettings) GetUseLocalIpOk

func (o *V202101beta1TestSettings) GetUseLocalIpOk() (*bool, bool)

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

func (*V202101beta1TestSettings) HasAgent

func (o *V202101beta1TestSettings) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasAgentIds

func (o *V202101beta1TestSettings) HasAgentIds() bool

HasAgentIds returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasCount

func (o *V202101beta1TestSettings) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasDns

func (o *V202101beta1TestSettings) HasDns() bool

HasDns returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasDnsGrid

func (o *V202101beta1TestSettings) HasDnsGrid() bool

HasDnsGrid returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasExpiry

func (o *V202101beta1TestSettings) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasFamily

func (o *V202101beta1TestSettings) HasFamily() bool

HasFamily returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasFlow

func (o *V202101beta1TestSettings) HasFlow() bool

HasFlow returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasHealthSettings

func (o *V202101beta1TestSettings) HasHealthSettings() bool

HasHealthSettings returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasHostname

func (o *V202101beta1TestSettings) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasHttp

func (o *V202101beta1TestSettings) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasIp

func (o *V202101beta1TestSettings) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasLimit

func (o *V202101beta1TestSettings) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasMonitoringSettings

func (o *V202101beta1TestSettings) HasMonitoringSettings() bool

HasMonitoringSettings returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasNetworkGrid

func (o *V202101beta1TestSettings) HasNetworkGrid() bool

HasNetworkGrid returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasPageLoad

func (o *V202101beta1TestSettings) HasPageLoad() bool

HasPageLoad returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasPeriod

func (o *V202101beta1TestSettings) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasPing

func (o *V202101beta1TestSettings) HasPing() bool

HasPing returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasPort

func (o *V202101beta1TestSettings) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasProtocol

func (o *V202101beta1TestSettings) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasReciprocal

func (o *V202101beta1TestSettings) HasReciprocal() bool

HasReciprocal returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasRollupLevel

func (o *V202101beta1TestSettings) HasRollupLevel() bool

HasRollupLevel returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasServers

func (o *V202101beta1TestSettings) HasServers() bool

HasServers returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasSite

func (o *V202101beta1TestSettings) HasSite() bool

HasSite returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasTag

func (o *V202101beta1TestSettings) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasTargetType

func (o *V202101beta1TestSettings) HasTargetType() bool

HasTargetType returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasTargetValue

func (o *V202101beta1TestSettings) HasTargetValue() bool

HasTargetValue returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasTasks

func (o *V202101beta1TestSettings) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasTrace

func (o *V202101beta1TestSettings) HasTrace() bool

HasTrace returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasUrl

func (o *V202101beta1TestSettings) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*V202101beta1TestSettings) HasUseLocalIp

func (o *V202101beta1TestSettings) HasUseLocalIp() bool

HasUseLocalIp returns a boolean if a field has been set.

func (V202101beta1TestSettings) MarshalJSON

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

func (*V202101beta1TestSettings) SetAgent

SetAgent gets a reference to the given V202101beta1AgentTest and assigns it to the Agent field.

func (*V202101beta1TestSettings) SetAgentIds

func (o *V202101beta1TestSettings) SetAgentIds(v []string)

SetAgentIds gets a reference to the given []string and assigns it to the AgentIds field.

func (*V202101beta1TestSettings) SetCount

func (o *V202101beta1TestSettings) SetCount(v int64)

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

func (*V202101beta1TestSettings) SetDns

SetDns gets a reference to the given V202101beta1DnsTest and assigns it to the Dns field.

func (*V202101beta1TestSettings) SetDnsGrid

SetDnsGrid gets a reference to the given V202101beta1GridTest and assigns it to the DnsGrid field.

func (*V202101beta1TestSettings) SetExpiry

func (o *V202101beta1TestSettings) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1TestSettings) SetFamily

SetFamily gets a reference to the given V202101beta1IPFamily and assigns it to the Family field.

func (*V202101beta1TestSettings) SetFlow

SetFlow gets a reference to the given V202101beta1FlowTest and assigns it to the Flow field.

func (*V202101beta1TestSettings) SetHealthSettings

func (o *V202101beta1TestSettings) SetHealthSettings(v V202101beta1HealthSettings)

SetHealthSettings gets a reference to the given V202101beta1HealthSettings and assigns it to the HealthSettings field.

func (*V202101beta1TestSettings) SetHostname

SetHostname gets a reference to the given V202101beta1HostnameTest and assigns it to the Hostname field.

func (*V202101beta1TestSettings) SetHttp

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

func (*V202101beta1TestSettings) SetIp

SetIp gets a reference to the given V202101beta1IpTest and assigns it to the Ip field.

func (*V202101beta1TestSettings) SetLimit

func (o *V202101beta1TestSettings) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*V202101beta1TestSettings) SetMonitoringSettings

SetMonitoringSettings gets a reference to the given V202101beta1TestMonitoringSettings and assigns it to the MonitoringSettings field.

func (*V202101beta1TestSettings) SetNetworkGrid

func (o *V202101beta1TestSettings) SetNetworkGrid(v V202101beta1GridTest)

SetNetworkGrid gets a reference to the given V202101beta1GridTest and assigns it to the NetworkGrid field.

func (*V202101beta1TestSettings) SetPageLoad

SetPageLoad gets a reference to the given V202101beta1UrlTest and assigns it to the PageLoad field.

func (*V202101beta1TestSettings) SetPeriod

func (o *V202101beta1TestSettings) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1TestSettings) SetPing

SetPing gets a reference to the given V202101beta1TestPingSettings and assigns it to the Ping field.

func (*V202101beta1TestSettings) SetPort

func (o *V202101beta1TestSettings) SetPort(v int64)

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

func (*V202101beta1TestSettings) SetProtocol

func (o *V202101beta1TestSettings) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (*V202101beta1TestSettings) SetReciprocal

func (o *V202101beta1TestSettings) SetReciprocal(v bool)

SetReciprocal gets a reference to the given bool and assigns it to the Reciprocal field.

func (*V202101beta1TestSettings) SetRollupLevel

func (o *V202101beta1TestSettings) SetRollupLevel(v int64)

SetRollupLevel gets a reference to the given int64 and assigns it to the RollupLevel field.

func (*V202101beta1TestSettings) SetServers

func (o *V202101beta1TestSettings) SetServers(v []string)

SetServers gets a reference to the given []string and assigns it to the Servers field.

func (*V202101beta1TestSettings) SetSite

SetSite gets a reference to the given V202101beta1SiteTest and assigns it to the Site field.

func (*V202101beta1TestSettings) SetTag

SetTag gets a reference to the given V202101beta1TagTest and assigns it to the Tag field.

func (*V202101beta1TestSettings) SetTargetType

func (o *V202101beta1TestSettings) SetTargetType(v string)

SetTargetType gets a reference to the given string and assigns it to the TargetType field.

func (*V202101beta1TestSettings) SetTargetValue

func (o *V202101beta1TestSettings) SetTargetValue(v string)

SetTargetValue gets a reference to the given string and assigns it to the TargetValue field.

func (*V202101beta1TestSettings) SetTasks

func (o *V202101beta1TestSettings) SetTasks(v []string)

SetTasks gets a reference to the given []string and assigns it to the Tasks field.

func (*V202101beta1TestSettings) SetTrace

SetTrace gets a reference to the given V202101beta1TestTraceSettings and assigns it to the Trace field.

func (*V202101beta1TestSettings) SetUrl

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

func (*V202101beta1TestSettings) SetUseLocalIp

func (o *V202101beta1TestSettings) SetUseLocalIp(v bool)

SetUseLocalIp gets a reference to the given bool and assigns it to the UseLocalIp field.

type V202101beta1TestStatus

type V202101beta1TestStatus string

V202101beta1TestStatus the model 'V202101beta1TestStatus'

const (
	V202101BETA1TESTSTATUS_UNSPECIFIED V202101beta1TestStatus = "TEST_STATUS_UNSPECIFIED"
	V202101BETA1TESTSTATUS_ACTIVE      V202101beta1TestStatus = "TEST_STATUS_ACTIVE"
	V202101BETA1TESTSTATUS_PAUSED      V202101beta1TestStatus = "TEST_STATUS_PAUSED"
	V202101BETA1TESTSTATUS_DELETED     V202101beta1TestStatus = "TEST_STATUS_DELETED"
)

List of v202101beta1TestStatus

func NewV202101beta1TestStatusFromValue

func NewV202101beta1TestStatusFromValue(v string) (*V202101beta1TestStatus, error)

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

func (V202101beta1TestStatus) IsValid

func (v V202101beta1TestStatus) IsValid() bool

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

func (V202101beta1TestStatus) Ptr

Ptr returns reference to v202101beta1TestStatus value

func (*V202101beta1TestStatus) UnmarshalJSON

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

type V202101beta1TestTraceSettings

type V202101beta1TestTraceSettings struct {
	Period   *float32 `json:"period,omitempty"`
	Count    *float32 `json:"count,omitempty"`
	Protocol *string  `json:"protocol,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Expiry   *float32 `json:"expiry,omitempty"`
	Limit    *float32 `json:"limit,omitempty"`
	Delay    *float32 `json:"delay,omitempty"`
}

V202101beta1TestTraceSettings struct for V202101beta1TestTraceSettings

func NewV202101beta1TestTraceSettings

func NewV202101beta1TestTraceSettings() *V202101beta1TestTraceSettings

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

func NewV202101beta1TestTraceSettingsWithDefaults

func NewV202101beta1TestTraceSettingsWithDefaults() *V202101beta1TestTraceSettings

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

func (*V202101beta1TestTraceSettings) GetCount

func (o *V202101beta1TestTraceSettings) GetCount() float32

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

func (*V202101beta1TestTraceSettings) GetCountOk

func (o *V202101beta1TestTraceSettings) GetCountOk() (*float32, 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 (*V202101beta1TestTraceSettings) GetDelay

func (o *V202101beta1TestTraceSettings) GetDelay() float32

GetDelay returns the Delay field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetDelayOk

func (o *V202101beta1TestTraceSettings) GetDelayOk() (*float32, bool)

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

func (*V202101beta1TestTraceSettings) GetExpiry

func (o *V202101beta1TestTraceSettings) GetExpiry() float32

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetExpiryOk

func (o *V202101beta1TestTraceSettings) GetExpiryOk() (*float32, bool)

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

func (*V202101beta1TestTraceSettings) GetLimit

func (o *V202101beta1TestTraceSettings) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetLimitOk

func (o *V202101beta1TestTraceSettings) GetLimitOk() (*float32, bool)

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

func (*V202101beta1TestTraceSettings) GetPeriod

func (o *V202101beta1TestTraceSettings) GetPeriod() float32

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetPeriodOk

func (o *V202101beta1TestTraceSettings) GetPeriodOk() (*float32, bool)

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

func (*V202101beta1TestTraceSettings) GetPort

GetPort returns the Port field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetPortOk

func (o *V202101beta1TestTraceSettings) GetPortOk() (*float32, bool)

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

func (*V202101beta1TestTraceSettings) GetProtocol

func (o *V202101beta1TestTraceSettings) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*V202101beta1TestTraceSettings) GetProtocolOk

func (o *V202101beta1TestTraceSettings) GetProtocolOk() (*string, bool)

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

func (*V202101beta1TestTraceSettings) HasCount

func (o *V202101beta1TestTraceSettings) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasDelay

func (o *V202101beta1TestTraceSettings) HasDelay() bool

HasDelay returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasExpiry

func (o *V202101beta1TestTraceSettings) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasLimit

func (o *V202101beta1TestTraceSettings) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasPeriod

func (o *V202101beta1TestTraceSettings) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasPort

func (o *V202101beta1TestTraceSettings) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*V202101beta1TestTraceSettings) HasProtocol

func (o *V202101beta1TestTraceSettings) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (V202101beta1TestTraceSettings) MarshalJSON

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

func (*V202101beta1TestTraceSettings) SetCount

func (o *V202101beta1TestTraceSettings) SetCount(v float32)

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

func (*V202101beta1TestTraceSettings) SetDelay

func (o *V202101beta1TestTraceSettings) SetDelay(v float32)

SetDelay gets a reference to the given float32 and assigns it to the Delay field.

func (*V202101beta1TestTraceSettings) SetExpiry

func (o *V202101beta1TestTraceSettings) SetExpiry(v float32)

SetExpiry gets a reference to the given float32 and assigns it to the Expiry field.

func (*V202101beta1TestTraceSettings) SetLimit

func (o *V202101beta1TestTraceSettings) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*V202101beta1TestTraceSettings) SetPeriod

func (o *V202101beta1TestTraceSettings) SetPeriod(v float32)

SetPeriod gets a reference to the given float32 and assigns it to the Period field.

func (*V202101beta1TestTraceSettings) SetPort

func (o *V202101beta1TestTraceSettings) SetPort(v float32)

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

func (*V202101beta1TestTraceSettings) SetProtocol

func (o *V202101beta1TestTraceSettings) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

type V202101beta1Trace

type V202101beta1Trace struct {
	Hops   *[]V202101beta1TraceHop `json:"hops,omitempty"`
	Target *string                 `json:"target,omitempty"`
	Ips    *[]string               `json:"ips,omitempty"`
}

V202101beta1Trace struct for V202101beta1Trace

func NewV202101beta1Trace

func NewV202101beta1Trace() *V202101beta1Trace

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

func NewV202101beta1TraceWithDefaults

func NewV202101beta1TraceWithDefaults() *V202101beta1Trace

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

func (*V202101beta1Trace) GetHops

func (o *V202101beta1Trace) GetHops() []V202101beta1TraceHop

GetHops returns the Hops field value if set, zero value otherwise.

func (*V202101beta1Trace) GetHopsOk

func (o *V202101beta1Trace) GetHopsOk() (*[]V202101beta1TraceHop, bool)

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

func (*V202101beta1Trace) GetIps

func (o *V202101beta1Trace) GetIps() []string

GetIps returns the Ips field value if set, zero value otherwise.

func (*V202101beta1Trace) GetIpsOk

func (o *V202101beta1Trace) GetIpsOk() (*[]string, bool)

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

func (*V202101beta1Trace) GetTarget

func (o *V202101beta1Trace) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1Trace) GetTargetOk

func (o *V202101beta1Trace) GetTargetOk() (*string, bool)

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

func (*V202101beta1Trace) HasHops

func (o *V202101beta1Trace) HasHops() bool

HasHops returns a boolean if a field has been set.

func (*V202101beta1Trace) HasIps

func (o *V202101beta1Trace) HasIps() bool

HasIps returns a boolean if a field has been set.

func (*V202101beta1Trace) HasTarget

func (o *V202101beta1Trace) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1Trace) MarshalJSON

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

func (*V202101beta1Trace) SetHops

func (o *V202101beta1Trace) SetHops(v []V202101beta1TraceHop)

SetHops gets a reference to the given []V202101beta1TraceHop and assigns it to the Hops field.

func (*V202101beta1Trace) SetIps

func (o *V202101beta1Trace) SetIps(v []string)

SetIps gets a reference to the given []string and assigns it to the Ips field.

func (*V202101beta1Trace) SetTarget

func (o *V202101beta1Trace) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1TraceHop

type V202101beta1TraceHop struct {
	Agent     *bool     `json:"agent,omitempty"`
	AgentId   *string   `json:"agentId,omitempty"`
	Ttl       *int32    `json:"ttl,omitempty"`
	Ip        *string   `json:"ip,omitempty"`
	Latencies *[]string `json:"latencies,omitempty"`
	Timeout   *bool     `json:"timeout,omitempty"`
}

V202101beta1TraceHop struct for V202101beta1TraceHop

func NewV202101beta1TraceHop

func NewV202101beta1TraceHop() *V202101beta1TraceHop

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

func NewV202101beta1TraceHopWithDefaults

func NewV202101beta1TraceHopWithDefaults() *V202101beta1TraceHop

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

func (*V202101beta1TraceHop) GetAgent

func (o *V202101beta1TraceHop) GetAgent() bool

GetAgent returns the Agent field value if set, zero value otherwise.

func (*V202101beta1TraceHop) GetAgentId

func (o *V202101beta1TraceHop) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*V202101beta1TraceHop) GetAgentIdOk

func (o *V202101beta1TraceHop) GetAgentIdOk() (*string, bool)

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

func (*V202101beta1TraceHop) GetAgentOk

func (o *V202101beta1TraceHop) GetAgentOk() (*bool, bool)

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

func (*V202101beta1TraceHop) GetIp

func (o *V202101beta1TraceHop) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*V202101beta1TraceHop) GetIpOk

func (o *V202101beta1TraceHop) GetIpOk() (*string, bool)

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

func (*V202101beta1TraceHop) GetLatencies

func (o *V202101beta1TraceHop) GetLatencies() []string

GetLatencies returns the Latencies field value if set, zero value otherwise.

func (*V202101beta1TraceHop) GetLatenciesOk

func (o *V202101beta1TraceHop) GetLatenciesOk() (*[]string, bool)

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

func (*V202101beta1TraceHop) GetTimeout

func (o *V202101beta1TraceHop) GetTimeout() bool

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

func (*V202101beta1TraceHop) GetTimeoutOk

func (o *V202101beta1TraceHop) GetTimeoutOk() (*bool, 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 (*V202101beta1TraceHop) GetTtl

func (o *V202101beta1TraceHop) GetTtl() int32

GetTtl returns the Ttl field value if set, zero value otherwise.

func (*V202101beta1TraceHop) GetTtlOk

func (o *V202101beta1TraceHop) GetTtlOk() (*int32, bool)

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

func (*V202101beta1TraceHop) HasAgent

func (o *V202101beta1TraceHop) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*V202101beta1TraceHop) HasAgentId

func (o *V202101beta1TraceHop) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*V202101beta1TraceHop) HasIp

func (o *V202101beta1TraceHop) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*V202101beta1TraceHop) HasLatencies

func (o *V202101beta1TraceHop) HasLatencies() bool

HasLatencies returns a boolean if a field has been set.

func (*V202101beta1TraceHop) HasTimeout

func (o *V202101beta1TraceHop) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*V202101beta1TraceHop) HasTtl

func (o *V202101beta1TraceHop) HasTtl() bool

HasTtl returns a boolean if a field has been set.

func (V202101beta1TraceHop) MarshalJSON

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

func (*V202101beta1TraceHop) SetAgent

func (o *V202101beta1TraceHop) SetAgent(v bool)

SetAgent gets a reference to the given bool and assigns it to the Agent field.

func (*V202101beta1TraceHop) SetAgentId

func (o *V202101beta1TraceHop) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*V202101beta1TraceHop) SetIp

func (o *V202101beta1TraceHop) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*V202101beta1TraceHop) SetLatencies

func (o *V202101beta1TraceHop) SetLatencies(v []string)

SetLatencies gets a reference to the given []string and assigns it to the Latencies field.

func (*V202101beta1TraceHop) SetTimeout

func (o *V202101beta1TraceHop) SetTimeout(v bool)

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

func (*V202101beta1TraceHop) SetTtl

func (o *V202101beta1TraceHop) SetTtl(v int32)

SetTtl gets a reference to the given int32 and assigns it to the Ttl field.

type V202101beta1TraceTaskDefinition

type V202101beta1TraceTaskDefinition struct {
	Target *string `json:"target,omitempty"`
	Period *int64  `json:"period,omitempty"`
	Expiry *int64  `json:"expiry,omitempty"`
	Limit  *int64  `json:"limit,omitempty"`
}

V202101beta1TraceTaskDefinition struct for V202101beta1TraceTaskDefinition

func NewV202101beta1TraceTaskDefinition

func NewV202101beta1TraceTaskDefinition() *V202101beta1TraceTaskDefinition

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

func NewV202101beta1TraceTaskDefinitionWithDefaults

func NewV202101beta1TraceTaskDefinitionWithDefaults() *V202101beta1TraceTaskDefinition

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

func (*V202101beta1TraceTaskDefinition) GetExpiry

func (o *V202101beta1TraceTaskDefinition) GetExpiry() int64

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*V202101beta1TraceTaskDefinition) GetExpiryOk

func (o *V202101beta1TraceTaskDefinition) GetExpiryOk() (*int64, bool)

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

func (*V202101beta1TraceTaskDefinition) GetLimit

func (o *V202101beta1TraceTaskDefinition) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*V202101beta1TraceTaskDefinition) GetLimitOk

func (o *V202101beta1TraceTaskDefinition) GetLimitOk() (*int64, bool)

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

func (*V202101beta1TraceTaskDefinition) GetPeriod

func (o *V202101beta1TraceTaskDefinition) GetPeriod() int64

GetPeriod returns the Period field value if set, zero value otherwise.

func (*V202101beta1TraceTaskDefinition) GetPeriodOk

func (o *V202101beta1TraceTaskDefinition) GetPeriodOk() (*int64, bool)

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

func (*V202101beta1TraceTaskDefinition) GetTarget

func (o *V202101beta1TraceTaskDefinition) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1TraceTaskDefinition) GetTargetOk

func (o *V202101beta1TraceTaskDefinition) GetTargetOk() (*string, bool)

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

func (*V202101beta1TraceTaskDefinition) HasExpiry

func (o *V202101beta1TraceTaskDefinition) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*V202101beta1TraceTaskDefinition) HasLimit

func (o *V202101beta1TraceTaskDefinition) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*V202101beta1TraceTaskDefinition) HasPeriod

func (o *V202101beta1TraceTaskDefinition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*V202101beta1TraceTaskDefinition) HasTarget

func (o *V202101beta1TraceTaskDefinition) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1TraceTaskDefinition) MarshalJSON

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

func (*V202101beta1TraceTaskDefinition) SetExpiry

func (o *V202101beta1TraceTaskDefinition) SetExpiry(v int64)

SetExpiry gets a reference to the given int64 and assigns it to the Expiry field.

func (*V202101beta1TraceTaskDefinition) SetLimit

func (o *V202101beta1TraceTaskDefinition) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*V202101beta1TraceTaskDefinition) SetPeriod

func (o *V202101beta1TraceTaskDefinition) SetPeriod(v int64)

SetPeriod gets a reference to the given int64 and assigns it to the Period field.

func (*V202101beta1TraceTaskDefinition) SetTarget

func (o *V202101beta1TraceTaskDefinition) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1TracerouteResult

type V202101beta1TracerouteResult struct {
	Time   *time.Time           `json:"time,omitempty"`
	Traces *[]V202101beta1Trace `json:"traces,omitempty"`
}

V202101beta1TracerouteResult struct for V202101beta1TracerouteResult

func NewV202101beta1TracerouteResult

func NewV202101beta1TracerouteResult() *V202101beta1TracerouteResult

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

func NewV202101beta1TracerouteResultWithDefaults

func NewV202101beta1TracerouteResultWithDefaults() *V202101beta1TracerouteResult

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

func (*V202101beta1TracerouteResult) GetTime

func (o *V202101beta1TracerouteResult) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*V202101beta1TracerouteResult) GetTimeOk

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

func (*V202101beta1TracerouteResult) GetTraces

GetTraces returns the Traces field value if set, zero value otherwise.

func (*V202101beta1TracerouteResult) GetTracesOk

func (o *V202101beta1TracerouteResult) GetTracesOk() (*[]V202101beta1Trace, bool)

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

func (*V202101beta1TracerouteResult) HasTime

func (o *V202101beta1TracerouteResult) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*V202101beta1TracerouteResult) HasTraces

func (o *V202101beta1TracerouteResult) HasTraces() bool

HasTraces returns a boolean if a field has been set.

func (V202101beta1TracerouteResult) MarshalJSON

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

func (*V202101beta1TracerouteResult) SetTime

func (o *V202101beta1TracerouteResult) SetTime(v time.Time)

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

func (*V202101beta1TracerouteResult) SetTraces

SetTraces gets a reference to the given []V202101beta1Trace and assigns it to the Traces field.

type V202101beta1UrlTest

type V202101beta1UrlTest struct {
	Target *string `json:"target,omitempty"`
}

V202101beta1UrlTest struct for V202101beta1UrlTest

func NewV202101beta1UrlTest

func NewV202101beta1UrlTest() *V202101beta1UrlTest

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

func NewV202101beta1UrlTestWithDefaults

func NewV202101beta1UrlTestWithDefaults() *V202101beta1UrlTest

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

func (*V202101beta1UrlTest) GetTarget

func (o *V202101beta1UrlTest) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*V202101beta1UrlTest) GetTargetOk

func (o *V202101beta1UrlTest) GetTargetOk() (*string, bool)

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

func (*V202101beta1UrlTest) HasTarget

func (o *V202101beta1UrlTest) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (V202101beta1UrlTest) MarshalJSON

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

func (*V202101beta1UrlTest) SetTarget

func (o *V202101beta1UrlTest) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type V202101beta1UserInfo

type V202101beta1UserInfo struct {
	Id       *string `json:"id,omitempty"`
	Email    *string `json:"email,omitempty"`
	FullName *string `json:"fullName,omitempty"`
}

V202101beta1UserInfo struct for V202101beta1UserInfo

func NewV202101beta1UserInfo

func NewV202101beta1UserInfo() *V202101beta1UserInfo

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

func NewV202101beta1UserInfoWithDefaults

func NewV202101beta1UserInfoWithDefaults() *V202101beta1UserInfo

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

func (*V202101beta1UserInfo) GetEmail

func (o *V202101beta1UserInfo) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*V202101beta1UserInfo) GetEmailOk

func (o *V202101beta1UserInfo) GetEmailOk() (*string, bool)

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

func (*V202101beta1UserInfo) GetFullName

func (o *V202101beta1UserInfo) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*V202101beta1UserInfo) GetFullNameOk

func (o *V202101beta1UserInfo) GetFullNameOk() (*string, bool)

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

func (*V202101beta1UserInfo) GetId

func (o *V202101beta1UserInfo) GetId() string

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

func (*V202101beta1UserInfo) GetIdOk

func (o *V202101beta1UserInfo) 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 (*V202101beta1UserInfo) HasEmail

func (o *V202101beta1UserInfo) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*V202101beta1UserInfo) HasFullName

func (o *V202101beta1UserInfo) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*V202101beta1UserInfo) HasId

func (o *V202101beta1UserInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (V202101beta1UserInfo) MarshalJSON

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

func (*V202101beta1UserInfo) SetEmail

func (o *V202101beta1UserInfo) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*V202101beta1UserInfo) SetFullName

func (o *V202101beta1UserInfo) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*V202101beta1UserInfo) SetId

func (o *V202101beta1UserInfo) SetId(v string)

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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL