package
2.3.1+incompatible
Repository: https://github.com/stackvista/stackstate-cli.git
Documentation: pkg.go.dev

# README

Go API client for stackstate_api

This API documentation page describes the StackState server API. The StackState UI and CLI use the StackState server API to configure and query StackState. You can use the API for similar purposes.

Each request sent to the StackState server API must be authenticated using one of the available authentication methods.

Note that the StackState receiver API, used to send topology, telemetry and traces to StackState, is not described on this page and requires a different authentication method.

For more information on StackState, refer to the StackState documentation.

Overview

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

  • API version: 5.2.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://stackstate.com

Installation

Install the following dependencies:

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

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

import stackstate_api "gitlab.com/stackvista/stackstate-cli2"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), stackstate_api.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), stackstate_api.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), stackstate_api.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), stackstate_api.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
ApiTokenApiGetCurrentUserApiTokensGet /user/profile/tokensGet current user's API tokens
ComponentApiGetComponentCheckGet /components/{componentId}/checks/{checkId}Get the check from the component
ComponentApiGetComponentChecksGet /components/{componentId}/checksList all checks from the component
ComponentApiGetComponentStreamGet /components/{componentId}/streams/{streamId}Get the stream from the component
ComponentApiGetComponentStreamsGet /components/{componentId}/streamsList all streams from the component
ComponentApiGetLatestMetricsGet /components/{componentId}/streams/latestGet the latests metrics
EventApiGetEventGet /events/{eventId}Get single event
EventApiGetEventSourcesGet /eventSourcesGet event sources
EventApiGetEventTagsGet /eventTagsGet event tags
EventApiGetEventTypesGet /eventTypesGet event types
EventApiGetEventsPost /eventsGet events
ExportApiExportSettingsPost /exportExport settings
ExportAnomalyApiExportAnomalyGet /anomalies/exportExport anomalies with metric history and feedback
HealthSynchronizationApiDeleteHealthSynchronizationStreamDelete /synchronization/health/streams/{healthStreamUrn}Delete health sync stream
HealthSynchronizationApiGetHealthSynchronizationStreamStatusGet /synchronization/health/streams/{healthStreamUrn}/statusGet health sync stream status
HealthSynchronizationApiGetHealthSynchronizationStreamTopologyMatchesGet /synchronization/health/streams/{healthStreamUrn}/topologyMatchesList health sync stream check-states
HealthSynchronizationApiGetHealthSynchronizationStreamsOverviewGet /synchronization/health/streamsList health sync streams
HealthSynchronizationApiGetHealthSynchronizationSubStreamOverviewGet /synchronization/health/streams/{healthStreamUrn}/substreamsList health sync sub-streams
HealthSynchronizationApiGetHealthSynchronizationSubStreamStatusGet /synchronization/health/streams/{healthStreamUrn}/substreams/{healthSyncSubStreamId}/statusGet health sync sub-stream status
HealthSynchronizationApiGetHealthSynchronizationSubStreamTopologyMatchesGet /synchronization/health/streams/{healthStreamUrn}/substreams/{healthSyncSubStreamId}/topologyMatchesList health sync sub-stream check-states
HealthSynchronizationApiPostHealthSynchronizationStreamClearErrorsPost /synchronization/health/streams/{healthStreamUrn}/clearErrorsClear health sync stream errors
ImportApiImportSettingsPost /importImport settings
KubernetesLogsApiGetKubernetesLogsGet /k8s/logsGet Kubernetes logs
KubernetesLogsApiGetKubernetesLogsAutocompleteGet /k8s/logs/autocompleteGet Kubernetes logs autocomplete values
KubernetesLogsApiGetKubernetesLogsHistogramGet /k8s/logs/histogramGet Kubernetes logs histogram
MetricApiGetExemplarsQueryGet /metrics/query_exemplarsExperimental: Exemplars for a specific time range
MetricApiGetInstantQueryGet /metrics/queryInstant query at a single point in time
MetricApiGetLabelValuesGet /metrics/label/{label}/valuesList of label values for a provided label name
MetricApiGetLabelsGet /metrics/labelsList of label names
MetricApiGetMetadataGet /metrics/metadataMetadata about metrics currently scraped from targets
MetricApiGetRangeQueryGet /metrics/query_rangeQuery over a range of time
MetricApiGetSeriesGet /metrics/seriesList of time series that match a certain label set
MetricApiPostExemplarsQueryPost /metrics/query_exemplarsExperimental: Exemplars for a specific time range
MetricApiPostInstantQueryPost /metrics/queryInstant query at a single point in time
MetricApiPostLabelValuesPost /metrics/label/{label}/valuesList of label values for a provided label name
MetricApiPostLabelsPost /metrics/labelsList of label names
MetricApiPostMetadataPost /metrics/metadataMetadata about metrics currently scraped from targets
MetricApiPostRangeQueryPost /metrics/query_rangeQuery over a range of time
MetricApiPostSeriesPost /metrics/seriesList of time series that match a certain label set
MonitorApiDeleteMonitorDelete /monitors/{monitorIdOrUrn}Delete a monitor
MonitorApiGetAllMonitorsGet /monitorsList monitors
MonitorApiGetMonitorGet /monitors/{monitorIdOrUrn}Get a monitor
MonitorApiGetMonitorWithStatusGet /monitors/{monitorIdOrUrn}/statusGet a monitor with stream information
MonitorApiGetMonitorsOverviewGet /monitors/overviewList monitors overview
MonitorApiPatchMonitorPatch /monitors/{monitorIdOrUrn}Update some monitor properties
MonitorApiRunMonitorPost /monitors/{monitorIdOrUrn}/runRun a monitor
MonitorCheckStatusApiGetMonitorCheckStatusGet /monitor/checkStatus/{id}Get a monitor check status
MonitorCheckStatusApiGetMonitorCheckStatusHealthHistoryGet /monitor/checkStatus/{id}/healthHistoryGet a monitor check health hisotry
MonitorCheckStatusApiGetMonitorCheckStatusRelatedFailuresGet /monitor/checkStatus/{id}/relatedFailuresGet a monitor check related failures
NodeApiClonePost /node/{nodeType}/{nodeIdOrUrn}/cloneClone a node with a new name
NodeApiDeleteDelete /node/{nodeType}/{nodeId}Node deletion API
NodeApiLockGet /node/{nodeType}/{nodeId}/islockedRetrieve if a node is locked
NodeApiNodeListTypesGet /nodeNode API
NodeApiTypeListGet /node/{nodeType}Node type API
NodeApiUnlockPost /node/{nodeType}/{nodeId}/unlockNode unlock API
PermissionsApiDescribePermissionsGet /security/permissions/{subject}Describe permissions
PermissionsApiGetPermissionsGet /security/permissions/listList permissions
PermissionsApiGrantPermissionsPost /security/permissions/{subject}Grant permissions
PermissionsApiRevokePermissionsDelete /security/permissions/{subject}Revoke permissions
ProblemApiGetProblemCausingEventsGet /problems/{problemId}/causing-eventsList possible events which led to the problem
RelationApiGetRelationCheckGet /relations/{relationId}/checks/{checkId}Get the check from the relation
RelationApiGetRelationChecksGet /relations/{relationId}/checksList all checks from the relation
RelationApiGetRelationStreamGet /relations/{relationId}/streams/{streamId}Get the stream from the relation
RelationApiGetRelationStreamsGet /relations/{relationId}/streamsList all streams from the relation
ScriptingApiScriptExecutePost /script/executeExecute script
ServerApiServerInfoGet /server/infoGet server info
ServiceTokenApiCreateNewServiceTokenPost /security/tokensCreate new service token
ServiceTokenApiDeleteServiceTokenDelete /security/tokens/{serviceTokenId}Delete service token
ServiceTokenApiGetServiceTokensGet /security/tokensGet service tokens
StackpackApiConfirmManualStepsPost /stackpack/{stackPackName}/confirm-manual-steps/{stackPackInstanceId}Confirm manual steps
StackpackApiProvisionDetailsPost /stackpack/{stackPackName}/provisionProvision API
StackpackApiProvisionUninstallPost /stackpack/{stackPackName}/deprovision/{stackPackInstanceId}Provision API
StackpackApiStackPackListGet /stackpackStackPack API
StackpackApiStackPackUploadPost /stackpackStackPack API
StackpackApiUpgradeStackPackPost /stackpack/{stackPackName}/upgradeUpgrade API
SubjectApiCreateSubjectPut /security/subjects/{subject}Create a subject
SubjectApiDeleteSubjectDelete /security/subjects/{subject}Delete a subject
SubjectApiGetSubjectGet /security/subjects/{subject}Get subject
SubjectApiListSubjectsGet /security/subjectsList subjects
SubscriptionApiGetSubscriptionGet /subscriptionGet subscription info
SubscriptionApiPostSubscriptionPost /subscriptionSubmit a new license to update the subscription
TopicApiDescribeGet /topic/{topic}Describe a topic
TopicApiListGet /topicList topics
TopologySynchronizationApiGetTopologySynchronizationStreamByIdGet /synchronization/topology/streams/syncOverview of a specific Topology Stream, queried by node id or sync identifier
TopologySynchronizationApiGetTopologySynchronizationStreamStatusByIdGet /synchronization/topology/streams/statusMetrics of a specific Topology Stream, queried by node id
TopologySynchronizationApiGetTopologySynchronizationStreamsGet /synchronization/topology/streamsOverview of the topology synchronization streams
TopologySynchronizationApiPostTopologySynchronizationStreamClearErrorsPost /synchronization/topology/streams/clearErrorsClear all the errors related to a specific sync
UserProfileApiGetCurrentUserProfileGet /user/profileGet current user profile
UserProfileApiSaveCurrentUserProfilePut /user/profileSave current user profile
UserSessionApiGetUserSessionAssumedRoleGet /user/session/assumedRoleGet the assumed a role for the current session
UserSessionApiGetUserSessionAvailableRolesGet /user/session/availableRolesGet a list of available roles for this session
UserSessionApiSaveUserSessionAssumedRolePut /user/session/assumedRoleSet the assumed role for the current session

Documentation For Models

Documentation For Authorization

ApiToken

  • Type: API key
  • API key parameter name: X-API-Token
  • Location: HTTP header

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

ServiceBearer

  • Type: API key
  • API key parameter name: X-API-ServiceBearer
  • Location: HTTP header

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

ServiceToken

  • Type: API key
  • API key parameter name: X-API-Key
  • Location: HTTP header

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

Documentation for Utility Methods

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

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

Author

[email protected]

# Functions

ArgumentAnomalyDirectionValAsArgument is a convenience function that returns ArgumentAnomalyDirectionVal wrapped in Argument.
ArgumentBaselineMetricStreamRefAsArgument is a convenience function that returns ArgumentBaselineMetricStreamRef wrapped in Argument.
ArgumentBooleanValAsArgument is a convenience function that returns ArgumentBooleanVal wrapped in Argument.
ArgumentComponentTypeRefAsArgument is a convenience function that returns ArgumentComponentTypeRef wrapped in Argument.
ArgumentDoubleValAsArgument is a convenience function that returns ArgumentDoubleVal wrapped in Argument.
ArgumentDurationValAsArgument is a convenience function that returns ArgumentDurationVal wrapped in Argument.
ArgumentEventStreamRefAsArgument is a convenience function that returns ArgumentEventStreamRef wrapped in Argument.
ArgumentLongValAsArgument is a convenience function that returns ArgumentLongVal wrapped in Argument.
ArgumentMetricStreamIdAsArgument is a convenience function that returns ArgumentMetricStreamId wrapped in Argument.
ArgumentMetricStreamRefAsArgument is a convenience function that returns ArgumentMetricStreamRef wrapped in Argument.
ArgumentNodeIdValAsArgument is a convenience function that returns ArgumentNodeIdVal wrapped in Argument.
ArgumentPropagatedHealthStateValAsArgument is a convenience function that returns ArgumentPropagatedHealthStateVal wrapped in Argument.
ArgumentQueryViewRefAsArgument is a convenience function that returns ArgumentQueryViewRef wrapped in Argument.
ArgumentRelationTypeRefAsArgument is a convenience function that returns ArgumentRelationTypeRef wrapped in Argument.
ArgumentRunStateValAsArgument is a convenience function that returns ArgumentRunStateVal wrapped in Argument.
ArgumentScriptMetricQueryValAsArgument is a convenience function that returns ArgumentScriptMetricQueryVal wrapped in Argument.
ArgumentSimpleTrainingPeriodicityValAsArgument is a convenience function that returns ArgumentSimpleTrainingPeriodicityVal wrapped in Argument.
ArgumentStateValAsArgument is a convenience function that returns ArgumentStateVal wrapped in Argument.
ArgumentStringValAsArgument is a convenience function that returns ArgumentStringVal wrapped in Argument.
ArgumentStructTypeValAsArgument is a convenience function that returns ArgumentStructTypeVal wrapped in Argument.
ArgumentStsEventStreamValAsArgument is a convenience function that returns ArgumentStsEventStreamVal wrapped in Argument.
CacheExpires helper function to determine remaining time before repeating a request.
CausingEventsAreNotAvailableForTheTimeAsGetCausingEventsResult is a convenience function that returns CausingEventsAreNotAvailableForTheTime wrapped in GetCausingEventsResult.
CausingEventsResultAsGetCausingEventsResult is a convenience function that returns CausingEventsResult wrapped in GetCausingEventsResult.
DataUnavailableAsGetCausingEventsNotFound is a convenience function that returns DataUnavailable wrapped in GetCausingEventsNotFound.
EventComponentAsEventElement is a convenience function that returns EventComponent wrapped in EventElement.
EventRelationAsEventElement is a convenience function that returns EventRelation wrapped in EventElement.
EventTelemetryStreamDefinitionAsTelemetryStreamDefinition is a convenience function that returns EventTelemetryStreamDefinition wrapped in TelemetryStreamDefinition.
ExecuteScriptArgumentsScriptErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptArgumentsScriptError wrapped in ExecuteScriptError.
ExecuteScriptExceptionErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptExceptionError wrapped in ExecuteScriptError.
ExecuteScriptExecutionErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptExecutionError wrapped in ExecuteScriptError.
ExecuteScriptGroovyRuntimeErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptGroovyRuntimeError wrapped in ExecuteScriptError.
ExecuteScriptSecurityErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptSecurityError wrapped in ExecuteScriptError.
ExecuteScriptSyntaxErrorsAsExecuteScriptError is a convenience function that returns ExecuteScriptSyntaxErrors wrapped in ExecuteScriptError.
ExecuteScriptTimeoutErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptTimeoutError wrapped in ExecuteScriptError.
ExecuteScriptWrongReturnTypeErrorAsExecuteScriptError is a convenience function that returns ExecuteScriptWrongReturnTypeError wrapped in ExecuteScriptError.
ExpiredSubscriptionAsSubscriptionState is a convenience function that returns ExpiredSubscription wrapped in SubscriptionState.
FeedbackDataAsAnnotationData is a convenience function that returns FeedbackData wrapped in AnnotationData.
FieldMappingAsTopologyMapping is a convenience function that returns FieldMapping wrapped in TopologyMapping.
float32AsPromSampleInner is a convenience function that returns float32 wrapped in PromSampleInner.
GenericAnnotationDataAsAnnotationData is a convenience function that returns GenericAnnotationData wrapped in AnnotationData.
GetKubernetesLogsAutocompleteInvalidTimeRangeAsGetKubernetesLogsAutocompleteBadRequest is a convenience function that returns GetKubernetesLogsAutocompleteInvalidTimeRange wrapped in GetKubernetesLogsAutocompleteBadRequest.
GetKubernetesLogsHistogramInvalidQueryAsGetKubernetesLogsHistogramBadRequest is a convenience function that returns GetKubernetesLogsHistogramInvalidQuery wrapped in GetKubernetesLogsHistogramBadRequest.
GetKubernetesLogsHistogramInvalidTimeRangeAsGetKubernetesLogsHistogramBadRequest is a convenience function that returns GetKubernetesLogsHistogramInvalidTimeRange wrapped in GetKubernetesLogsHistogramBadRequest.
GetKubernetesLogsInvalidPaginationAsGetKubernetesLogsBadRequest is a convenience function that returns GetKubernetesLogsInvalidPagination wrapped in GetKubernetesLogsBadRequest.
GetKubernetesLogsInvalidQueryAsGetKubernetesLogsBadRequest is a convenience function that returns GetKubernetesLogsInvalidQuery wrapped in GetKubernetesLogsBadRequest.
GetKubernetesLogsInvalidTimeRangeAsGetKubernetesLogsBadRequest is a convenience function that returns GetKubernetesLogsInvalidTimeRange wrapped in GetKubernetesLogsBadRequest.
GetTopologyTimeoutAsGetCausingEventsServiceUnaivailable is a convenience function that returns GetTopologyTimeout wrapped in GetCausingEventsServiceUnaivailable.
HealthStreamNotFoundAsHealthSubStreamError is a convenience function that returns HealthStreamNotFound wrapped in HealthSubStreamError.
HealthSubStreamExpiryAsHealthSubStreamConsistencyState is a convenience function that returns HealthSubStreamExpiry wrapped in HealthSubStreamConsistencyState.
HealthSubStreamNotFoundAsHealthSubStreamError is a convenience function that returns HealthSubStreamNotFound wrapped in HealthSubStreamError.
HealthSubStreamSnapshotAsHealthSubStreamConsistencyState is a convenience function that returns HealthSubStreamSnapshot wrapped in HealthSubStreamConsistencyState.
HealthSubStreamTransactionalIncrementsAsHealthSubStreamConsistencyState is a convenience function that returns HealthSubStreamTransactionalIncrements wrapped in HealthSubStreamConsistencyState.
InvalidMonitorIdentifierErrorAsMonitorValidationError is a convenience function that returns InvalidMonitorIdentifierError wrapped in MonitorValidationError.
LicensedSubscriptionAsSubscriptionState is a convenience function that returns LicensedSubscription wrapped in SubscriptionState.
LimitOutOfRangeAsGetCausingEventsBadRequest is a convenience function that returns LimitOutOfRange wrapped in GetCausingEventsBadRequest.
MetricStreamAnomalyDataAsAnnotationData is a convenience function that returns MetricStreamAnomalyData wrapped in AnnotationData.
MetricStreamNoAnomalyDataAsAnnotationData is a convenience function that returns MetricStreamNoAnomalyData wrapped in AnnotationData.
MetricStreamReferenceAsReference is a convenience function that returns MetricStreamReference wrapped in Reference.
MetricTelemetryStreamDefinitionAsTelemetryStreamDefinition is a convenience function that returns MetricTelemetryStreamDefinition wrapped in TelemetryStreamDefinition.
MonitorInvalidIntervalErrorAsMonitorValidationError is a convenience function that returns MonitorInvalidIntervalError wrapped in MonitorValidationError.
NewAnnotation instantiates a new Annotation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnnotationMetricQuery instantiates a new AnnotationMetricQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnnotationMetricQueryWithDefaults instantiates a new AnnotationMetricQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnnotationTypeFromValue returns a pointer to a valid AnnotationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAnnotationWithDefaults instantiates a new Annotation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnomalyDirectionFromValue returns a pointer to a valid AnomalyDirection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAnomalySeverityFromValue returns a pointer to a valid AnomalySeverity for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAnomalyWithContext instantiates a new AnomalyWithContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnomalyWithContextWithDefaults instantiates a new AnomalyWithContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApiToken instantiates a new ApiToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewApiTokenWithDefaults instantiates a new ApiToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentAnomalyDirectionVal instantiates a new ArgumentAnomalyDirectionVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentAnomalyDirectionValWithDefaults instantiates a new ArgumentAnomalyDirectionVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentBaselineMetricStreamRef instantiates a new ArgumentBaselineMetricStreamRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentBaselineMetricStreamRefWithDefaults instantiates a new ArgumentBaselineMetricStreamRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentBooleanVal instantiates a new ArgumentBooleanVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentBooleanValWithDefaults instantiates a new ArgumentBooleanVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentComponentTypeRef instantiates a new ArgumentComponentTypeRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentComponentTypeRefWithDefaults instantiates a new ArgumentComponentTypeRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentDoubleVal instantiates a new ArgumentDoubleVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentDoubleValWithDefaults instantiates a new ArgumentDoubleVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentDurationVal instantiates a new ArgumentDurationVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentDurationValWithDefaults instantiates a new ArgumentDurationVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentEventStreamRef instantiates a new ArgumentEventStreamRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentEventStreamRefWithDefaults instantiates a new ArgumentEventStreamRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentLongVal instantiates a new ArgumentLongVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentLongValWithDefaults instantiates a new ArgumentLongVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentMetricStreamId instantiates a new ArgumentMetricStreamId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentMetricStreamIdWithDefaults instantiates a new ArgumentMetricStreamId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentMetricStreamRef instantiates a new ArgumentMetricStreamRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentMetricStreamRefWithDefaults instantiates a new ArgumentMetricStreamRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentNodeIdVal instantiates a new ArgumentNodeIdVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentNodeIdValWithDefaults instantiates a new ArgumentNodeIdVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentPropagatedHealthStateVal instantiates a new ArgumentPropagatedHealthStateVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentPropagatedHealthStateValWithDefaults instantiates a new ArgumentPropagatedHealthStateVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentQueryViewRef instantiates a new ArgumentQueryViewRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentQueryViewRefWithDefaults instantiates a new ArgumentQueryViewRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentRelationTypeRef instantiates a new ArgumentRelationTypeRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentRelationTypeRefWithDefaults instantiates a new ArgumentRelationTypeRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentRunStateVal instantiates a new ArgumentRunStateVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentRunStateValWithDefaults instantiates a new ArgumentRunStateVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentScriptMetricQueryVal instantiates a new ArgumentScriptMetricQueryVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentScriptMetricQueryValWithDefaults instantiates a new ArgumentScriptMetricQueryVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentSimpleTrainingPeriodicityVal instantiates a new ArgumentSimpleTrainingPeriodicityVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentSimpleTrainingPeriodicityValWithDefaults instantiates a new ArgumentSimpleTrainingPeriodicityVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentStateVal instantiates a new ArgumentStateVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentStateValWithDefaults instantiates a new ArgumentStateVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentStringVal instantiates a new ArgumentStringVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentStringValWithDefaults instantiates a new ArgumentStringVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentStructTypeVal instantiates a new ArgumentStructTypeVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentStructTypeValWithDefaults instantiates a new ArgumentStructTypeVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArgumentStsEventStreamVal instantiates a new ArgumentStsEventStreamVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArgumentStsEventStreamValWithDefaults instantiates a new ArgumentStsEventStreamVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseline instantiates a new Baseline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaselineWithDefaults instantiates a new Baseline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseMonitorError instantiates a new BaseMonitorError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseMonitorErrorWithDefaults instantiates a new BaseMonitorError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCausingEventsAreNotAvailableForTheTime instantiates a new CausingEventsAreNotAvailableForTheTime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCausingEventsAreNotAvailableForTheTimeWithDefaults instantiates a new CausingEventsAreNotAvailableForTheTime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCausingEventsResult instantiates a new CausingEventsResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCausingEventsResultWithDefaults instantiates a new CausingEventsResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCheck instantiates a new Check object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCheckError instantiates a new CheckError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCheckErrorWithDefaults instantiates a new CheckError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCheckState instantiates a new CheckState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCheckStateAcknowledgement instantiates a new CheckStateAcknowledgement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCheckStateAcknowledgementWithDefaults instantiates a new CheckStateAcknowledgement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCheckStateWithDefaults instantiates a new CheckState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCheckWithDefaults instantiates a new Check object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewComponentNotFoundError instantiates a new ComponentNotFoundError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComponentNotFoundErrorWithDefaults instantiates a new ComponentNotFoundError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewCreateSubject instantiates a new CreateSubject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSubjectWithDefaults instantiates a new CreateSubject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDataUnavailable instantiates a new DataUnavailable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDataUnavailableWithDefaults instantiates a new DataUnavailable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDependencyDirectionFromValue returns a pointer to a valid DependencyDirection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDownsamplingMethodFromValue returns a pointer to a valid DownsamplingMethod for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewErrorStateValueFromValue returns a pointer to a valid ErrorStateValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
NewEventCategoryFromValue returns a pointer to a valid EventCategory for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewEventComponent instantiates a new EventComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventComponentWithDefaults instantiates a new EventComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventCursor instantiates a new EventCursor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventCursorWithDefaults instantiates a new EventCursor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventItemsWithTotal instantiates a new EventItemsWithTotal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventItemsWithTotalWithDefaults instantiates a new EventItemsWithTotal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventListRequest instantiates a new EventListRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventListRequestWithDefaults instantiates a new EventListRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventNotFoundError instantiates a new EventNotFoundError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventNotFoundErrorWithDefaults instantiates a new EventNotFoundError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventRef instantiates a new EventRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventRefWithDefaults instantiates a new EventRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventRelation instantiates a new EventRelation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventRelationWithDefaults instantiates a new EventRelation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTag instantiates a new EventTag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTagWithDefaults instantiates a new EventTag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTelemetryQuery instantiates a new EventTelemetryQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTelemetryQueryWithDefaults instantiates a new EventTelemetryQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventTelemetryStreamDefinition instantiates a new EventTelemetryStreamDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventTelemetryStreamDefinitionWithDefaults instantiates a new EventTelemetryStreamDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptArgumentsScriptError instantiates a new ExecuteScriptArgumentsScriptError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptArgumentsScriptErrorWithDefaults instantiates a new ExecuteScriptArgumentsScriptError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptExceptionError instantiates a new ExecuteScriptExceptionError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptExceptionErrorWithDefaults instantiates a new ExecuteScriptExceptionError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptExecutionError instantiates a new ExecuteScriptExecutionError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptExecutionErrorWithDefaults instantiates a new ExecuteScriptExecutionError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptGroovyRuntimeError instantiates a new ExecuteScriptGroovyRuntimeError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptGroovyRuntimeErrorWithDefaults instantiates a new ExecuteScriptGroovyRuntimeError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptRequest instantiates a new ExecuteScriptRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptRequestWithDefaults instantiates a new ExecuteScriptRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptResponse instantiates a new ExecuteScriptResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptResponseWithDefaults instantiates a new ExecuteScriptResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptSecurityError instantiates a new ExecuteScriptSecurityError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptSecurityErrorWithDefaults instantiates a new ExecuteScriptSecurityError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptSyntaxErrors instantiates a new ExecuteScriptSyntaxErrors object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptSyntaxErrorsErrorsInner instantiates a new ExecuteScriptSyntaxErrorsErrorsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptSyntaxErrorsErrorsInnerWithDefaults instantiates a new ExecuteScriptSyntaxErrorsErrorsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptSyntaxErrorsWithDefaults instantiates a new ExecuteScriptSyntaxErrors object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptTimeoutError instantiates a new ExecuteScriptTimeoutError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptTimeoutErrorWithDefaults instantiates a new ExecuteScriptTimeoutError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExecuteScriptWrongReturnTypeError instantiates a new ExecuteScriptWrongReturnTypeError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExecuteScriptWrongReturnTypeErrorWithDefaults instantiates a new ExecuteScriptWrongReturnTypeError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExpiredSubscription instantiates a new ExpiredSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExpiredSubscriptionWithDefaults instantiates a new ExpiredSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExport instantiates a new Export object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
No description provided by the author
NewExportWithDefaults instantiates a new Export object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFAQ instantiates a new FAQ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFAQWithDefaults instantiates a new FAQ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeedbackComment instantiates a new FeedbackComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeedbackCommentWithDefaults instantiates a new FeedbackComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeedbackData instantiates a new FeedbackData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeedbackDataWithDefaults instantiates a new FeedbackData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFieldMapping instantiates a new FieldMapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFieldMappingWithDefaults instantiates a new FieldMapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFullStackPack instantiates a new FullStackPack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFullStackPackWithDefaults instantiates a new FullStackPack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericAnnotationData instantiates a new GenericAnnotationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericAnnotationDataWithDefaults instantiates a new GenericAnnotationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericApiError instantiates a new GenericApiError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericApiErrorWithDefaults instantiates a new GenericApiError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericErrorsResponse instantiates a new GenericErrorsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericErrorsResponseWithDefaults instantiates a new GenericErrorsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsAutocompleteInvalidTimeRange instantiates a new GetKubernetesLogsAutocompleteInvalidTimeRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsAutocompleteInvalidTimeRangeWithDefaults instantiates a new GetKubernetesLogsAutocompleteInvalidTimeRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsAutocompleteResult instantiates a new GetKubernetesLogsAutocompleteResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsAutocompleteResultWithDefaults instantiates a new GetKubernetesLogsAutocompleteResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsHistogramInvalidQuery instantiates a new GetKubernetesLogsHistogramInvalidQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsHistogramInvalidQueryWithDefaults instantiates a new GetKubernetesLogsHistogramInvalidQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsHistogramInvalidTimeRange instantiates a new GetKubernetesLogsHistogramInvalidTimeRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsHistogramInvalidTimeRangeWithDefaults instantiates a new GetKubernetesLogsHistogramInvalidTimeRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsHistogramResult instantiates a new GetKubernetesLogsHistogramResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsHistogramResultWithDefaults instantiates a new GetKubernetesLogsHistogramResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsInvalidPagination instantiates a new GetKubernetesLogsInvalidPagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsInvalidPaginationWithDefaults instantiates a new GetKubernetesLogsInvalidPagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsInvalidQuery instantiates a new GetKubernetesLogsInvalidQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsInvalidQueryWithDefaults instantiates a new GetKubernetesLogsInvalidQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsInvalidTimeRange instantiates a new GetKubernetesLogsInvalidTimeRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsInvalidTimeRangeWithDefaults instantiates a new GetKubernetesLogsInvalidTimeRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubernetesLogsResult instantiates a new GetKubernetesLogsResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubernetesLogsResultWithDefaults instantiates a new GetKubernetesLogsResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTopologyTimeout instantiates a new GetTopologyTimeout object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTopologyTimeoutWithDefaults instantiates a new GetTopologyTimeout object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGrantPermission instantiates a new GrantPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGrantPermissionWithDefaults instantiates a new GrantPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthStateValueFromValue returns a pointer to a valid HealthStateValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewHealthStreamError instantiates a new HealthStreamError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthStreamErrorWithDefaults instantiates a new HealthStreamError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthStreamMetrics instantiates a new HealthStreamMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthStreamMetricsWithDefaults instantiates a new HealthStreamMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthStreamNotFound instantiates a new HealthStreamNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthStreamNotFoundWithDefaults instantiates a new HealthStreamNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthStreamStatus instantiates a new HealthStreamStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthStreamStatusWithDefaults instantiates a new HealthStreamStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthSubStreamExpiry instantiates a new HealthSubStreamExpiry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthSubStreamExpiryWithDefaults instantiates a new HealthSubStreamExpiry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthSubStreamNotFound instantiates a new HealthSubStreamNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthSubStreamNotFoundWithDefaults instantiates a new HealthSubStreamNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthSubStreamSnapshot instantiates a new HealthSubStreamSnapshot object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthSubStreamSnapshotWithDefaults instantiates a new HealthSubStreamSnapshot object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthSubStreamStatus instantiates a new HealthSubStreamStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthSubStreamStatusWithDefaults instantiates a new HealthSubStreamStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHealthSubStreamTransactionalIncrements instantiates a new HealthSubStreamTransactionalIncrements object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHealthSubStreamTransactionalIncrementsWithDefaults instantiates a new HealthSubStreamTransactionalIncrements object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewIdentifierTypeFromValue returns a pointer to a valid IdentifierType for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
NewInvalidMonitorIdentifierError instantiates a new InvalidMonitorIdentifierError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidMonitorIdentifierErrorWithDefaults instantiates a new InvalidMonitorIdentifierError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidSyncIdentifier instantiates a new InvalidSyncIdentifier object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidSyncIdentifierWithDefaults instantiates a new InvalidSyncIdentifier object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidUrn instantiates a new InvalidUrn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidUrnWithDefaults instantiates a new InvalidUrn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesLogHighlight instantiates a new KubernetesLogHighlight object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesLogHighlightWithDefaults instantiates a new KubernetesLogHighlight object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesLogHistogramBucket instantiates a new KubernetesLogHistogramBucket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesLogHistogramBucketWithDefaults instantiates a new KubernetesLogHistogramBucket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesLogLevelHistogramBucket instantiates a new KubernetesLogLevelHistogramBucket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesLogLevelHistogramBucketWithDefaults instantiates a new KubernetesLogLevelHistogramBucket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesLogRecord instantiates a new KubernetesLogRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesLogRecordWithDefaults instantiates a new KubernetesLogRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewLatestTelemetryStreamMetrics instantiates a new LatestTelemetryStreamMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLatestTelemetryStreamMetricsWithDefaults instantiates a new LatestTelemetryStreamMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLicensedSubscription instantiates a new LicensedSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLicensedSubscriptionWithDefaults instantiates a new LicensedSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLimitOutOfRange instantiates a new LimitOutOfRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLimitOutOfRangeWithDefaults instantiates a new LimitOutOfRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogLevelFromValue returns a pointer to a valid LogLevel for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsDirectionFromValue returns a pointer to a valid LogsDirection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMessage instantiates a new Message object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessageLevelFromValue returns a pointer to a valid MessageLevel for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMessages instantiates a new Messages object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMessagesWithDefaults instantiates a new Messages object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMessageWithDefaults instantiates a new Message object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewMetricBucketValue instantiates a new MetricBucketValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricBucketValueWithDefaults instantiates a new MetricBucketValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricStreamAnomalyData instantiates a new MetricStreamAnomalyData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricStreamAnomalyDataWithDefaults instantiates a new MetricStreamAnomalyData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricStreamNoAnomalyData instantiates a new MetricStreamNoAnomalyData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricStreamNoAnomalyDataWithDefaults instantiates a new MetricStreamNoAnomalyData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricStreamReference instantiates a new MetricStreamReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricStreamReferenceWithDefaults instantiates a new MetricStreamReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTelemetryQuery instantiates a new MetricTelemetryQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTelemetryQueryWithDefaults instantiates a new MetricTelemetryQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTelemetryStreamDefinition instantiates a new MetricTelemetryStreamDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTelemetryStreamDefinitionWithDefaults instantiates a new MetricTelemetryStreamDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricValuationFromValue returns a pointer to a valid MetricValuation for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMonitor instantiates a new Monitor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorApiError instantiates a new MonitorApiError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorApiErrorAllOf instantiates a new MonitorApiErrorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorApiErrorAllOfWithDefaults instantiates a new MonitorApiErrorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorApiErrorWithDefaults instantiates a new MonitorApiError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewMonitorCheckStatus instantiates a new MonitorCheckStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusApiError instantiates a new MonitorCheckStatusApiError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusApiErrorWithDefaults instantiates a new MonitorCheckStatusApiError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewMonitorCheckStatusComponent instantiates a new MonitorCheckStatusComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusComponentWithDefaults instantiates a new MonitorCheckStatusComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusHealthChange instantiates a new MonitorCheckStatusHealthChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusHealthChangeWithDefaults instantiates a new MonitorCheckStatusHealthChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusHealthHistory instantiates a new MonitorCheckStatusHealthHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusHealthHistoryWithDefaults instantiates a new MonitorCheckStatusHealthHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusMetric instantiates a new MonitorCheckStatusMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusMetricWithDefaults instantiates a new MonitorCheckStatusMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusNotFoundError instantiates a new MonitorCheckStatusNotFoundError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusNotFoundErrorWithDefaults instantiates a new MonitorCheckStatusNotFoundError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusQuery instantiates a new MonitorCheckStatusQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusQueryWithDefaults instantiates a new MonitorCheckStatusQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusRelatedFailures instantiates a new MonitorCheckStatusRelatedFailures object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusRelatedFailuresCheckStatus instantiates a new MonitorCheckStatusRelatedFailuresCheckStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusRelatedFailuresCheckStatusWithDefaults instantiates a new MonitorCheckStatusRelatedFailuresCheckStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusRelatedFailuresTopology instantiates a new MonitorCheckStatusRelatedFailuresTopology object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorCheckStatusRelatedFailuresTopologyWithDefaults instantiates a new MonitorCheckStatusRelatedFailuresTopology object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusRelatedFailuresWithDefaults instantiates a new MonitorCheckStatusRelatedFailures object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorCheckStatusWithDefaults instantiates a new MonitorCheckStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorError instantiates a new MonitorError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorErrorWithDefaults instantiates a new MonitorError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorFunction instantiates a new MonitorFunction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorFunctionWithDefaults instantiates a new MonitorFunction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorInvalidIntervalError instantiates a new MonitorInvalidIntervalError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorInvalidIntervalErrorWithDefaults instantiates a new MonitorInvalidIntervalError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorList instantiates a new MonitorList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorListWithDefaults instantiates a new MonitorList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorMetrics instantiates a new MonitorMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorMetricsWithDefaults instantiates a new MonitorMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorNotFoundError instantiates a new MonitorNotFoundError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorNotFoundErrorAllOf instantiates a new MonitorNotFoundErrorAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorNotFoundErrorAllOfWithDefaults instantiates a new MonitorNotFoundErrorAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorNotFoundErrorWithDefaults instantiates a new MonitorNotFoundError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorOverview instantiates a new MonitorOverview object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorOverviewList instantiates a new MonitorOverviewList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorOverviewListWithDefaults instantiates a new MonitorOverviewList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorOverviewWithDefaults instantiates a new MonitorOverview object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorPatch instantiates a new MonitorPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorPatchWithDefaults instantiates a new MonitorPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorRunResult instantiates a new MonitorRunResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorRunResultWithDefaults instantiates a new MonitorRunResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorRuntimeMetrics instantiates a new MonitorRuntimeMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorRuntimeMetricsWithDefaults instantiates a new MonitorRuntimeMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorRuntimeStatusValueFromValue returns a pointer to a valid MonitorRuntimeStatusValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMonitorStatus instantiates a new MonitorStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMonitorStatusValueFromValue returns a pointer to a valid MonitorStatusValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMonitorStatusWithDefaults instantiates a new MonitorStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMonitorWithDefaults instantiates a new Monitor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMultipleMatchesCheckState instantiates a new MultipleMatchesCheckState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMultipleMatchesCheckStateWithDefaults instantiates a new MultipleMatchesCheckState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewLicense instantiates a new NewLicense object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewLicenseWithDefaults instantiates a new NewLicense object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNewServiceTokenRequest instantiates a new NewServiceTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNewServiceTokenRequestWithDefaults instantiates a new NewServiceTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNode instantiates a new Node object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewNodeLocked instantiates a new NodeLocked object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeLockedWithDefaults instantiates a new NodeLocked object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeName instantiates a new NodeName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeNameWithDefaults instantiates a new NodeName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeTypes instantiates a new NodeTypes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeTypesNodeTypesInner instantiates a new NodeTypesNodeTypesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeTypesNodeTypesInnerWithDefaults instantiates a new NodeTypesNodeTypesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeTypesWithDefaults instantiates a new NodeTypes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeUnlocked instantiates a new NodeUnlocked object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeUnlockedWithDefaults instantiates a new NodeUnlocked object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeWithDefaults instantiates a new Node object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewPermissionDescription instantiates a new PermissionDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionDescriptionWithDefaults instantiates a new PermissionDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissions instantiates a new Permissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewPermissionsWithDefaults instantiates a new Permissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPoint instantiates a new Point object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointWithDefaults instantiates a new Point object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewProblemNotFound instantiates a new ProblemNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProblemNotFoundWithDefaults instantiates a new ProblemNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromDataResult instantiates a new PromDataResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromDataResultWithDefaults instantiates a new PromDataResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromDataString instantiates a new PromDataString object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromDataStringWithDefaults instantiates a new PromDataString object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromEnvelope instantiates a new PromEnvelope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromEnvelopeWithDefaults instantiates a new PromEnvelope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromExemplar instantiates a new PromExemplar object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromExemplarData instantiates a new PromExemplarData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromExemplarDataWithDefaults instantiates a new PromExemplarData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromExemplarEnvelope instantiates a new PromExemplarEnvelope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromExemplarEnvelopeWithDefaults instantiates a new PromExemplarEnvelope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromExemplarWithDefaults instantiates a new PromExemplar object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromLabelsEnvelope instantiates a new PromLabelsEnvelope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromLabelsEnvelopeWithDefaults instantiates a new PromLabelsEnvelope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromMatrix instantiates a new PromMatrix object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromMatrixWithDefaults instantiates a new PromMatrix object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromMetadataEnvelope instantiates a new PromMetadataEnvelope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromMetadataEnvelopeWithDefaults instantiates a new PromMetadataEnvelope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromScalar instantiates a new PromScalar object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromScalarWithDefaults instantiates a new PromScalar object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromSeriesEnvelope instantiates a new PromSeriesEnvelope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromSeriesEnvelopeWithDefaults instantiates a new PromSeriesEnvelope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromVector instantiates a new PromVector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromVectorResult instantiates a new PromVectorResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPromVectorResultWithDefaults instantiates a new PromVectorResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPromVectorWithDefaults instantiates a new PromVector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPropagatedHealthStateValueFromValue returns a pointer to a valid PropagatedHealthStateValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewProvisionResponse instantiates a new ProvisionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProvisionResponseWithDefaults instantiates a new ProvisionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewReleaseStatusFromValue returns a pointer to a valid ReleaseStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRequestValidationError instantiates a new RequestValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestValidationErrorWithDefaults instantiates a new RequestValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleNotAvailableError instantiates a new RoleNotAvailableError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleNotAvailableErrorWithDefaults instantiates a new RoleNotAvailableError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoles instantiates a new Roles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRolesWithDefaults instantiates a new Roles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRootCauseModeFromValue returns a pointer to a valid RootCauseMode for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRunStateValueFromValue returns a pointer to a valid RunStateValue for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
NewScriptLocation instantiates a new ScriptLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScriptLocationWithDefaults instantiates a new ScriptLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewServerInfo instantiates a new ServerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServerInfoWithDefaults instantiates a new ServerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServerVersion instantiates a new ServerVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServerVersionWithDefaults instantiates a new ServerVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceToken instantiates a new ServiceToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewServiceTokenCreatedResponse instantiates a new ServiceTokenCreatedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceTokenCreatedResponseWithDefaults instantiates a new ServiceTokenCreatedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceTokenInvalidExpiryError instantiates a new ServiceTokenInvalidExpiryError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceTokenInvalidExpiryErrorWithDefaults instantiates a new ServiceTokenInvalidExpiryError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceTokenWithDefaults instantiates a new ServiceToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSimpleTrainingPeriodicity instantiates a new SimpleTrainingPeriodicity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSimpleTrainingPeriodicityWithDefaults instantiates a new SimpleTrainingPeriodicity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSingleMetric instantiates a new SingleMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSingleMetricWithDefaults instantiates a new SingleMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceLink instantiates a new SourceLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceLinkWithDefaults instantiates a new SourceLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackElementNotFound instantiates a new StackElementNotFound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackElementNotFoundWithDefaults instantiates a new StackElementNotFound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPack instantiates a new StackPack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewStackPackConfiguration instantiates a new StackPackConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackPackConfigurationWithDefaults instantiates a new StackPackConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPackError instantiates a new StackPackError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackPackErrorWithDefaults instantiates a new StackPackError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPackIntegration instantiates a new StackPackIntegration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackPackIntegrationWithDefaults instantiates a new StackPackIntegration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPackStep instantiates a new StackPackStep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackPackStepValue instantiates a new StackPackStepValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStackPackStepValueWithDefaults instantiates a new StackPackStepValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPackStepWithDefaults instantiates a new StackPackStep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStackPackWithDefaults instantiates a new StackPack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStreamList instantiates a new StreamList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStreamListItem instantiates a new StreamListItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStreamListItemWithDefaults instantiates a new StreamListItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStreamListWithDefaults instantiates a new StreamList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStringItemsWithTotal instantiates a new StringItemsWithTotal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStringItemsWithTotalWithDefaults instantiates a new StringItemsWithTotal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStsEventStreamFilterFromValue returns a pointer to a valid StsEventStreamFilter for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
NewSubjectConfig instantiates a new SubjectConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubjectConfigWithDefaults instantiates a new SubjectConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubscription instantiates a new Subscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewSubscriptionWithDefaults instantiates a new Subscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubStreamList instantiates a new SubStreamList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubStreamListItem instantiates a new SubStreamListItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubStreamListItemWithDefaults instantiates a new SubStreamListItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubStreamListWithDefaults instantiates a new SubStreamList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTelemetryLatestSnapshotsResponse instantiates a new TelemetryLatestSnapshotsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTelemetryLatestSnapshotsResponseWithDefaults instantiates a new TelemetryLatestSnapshotsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTelemetryQueryCondition instantiates a new TelemetryQueryCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTelemetryQueryConditionWithDefaults instantiates a new TelemetryQueryCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTelemetryStreamPriorityFromValue returns a pointer to a valid TelemetryStreamPriority for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTimeRange instantiates a new TimeRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimeRangeWithDefaults instantiates a new TimeRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTooManyActiveQueries instantiates a new TooManyActiveQueries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTooManyActiveQueriesWithDefaults instantiates a new TooManyActiveQueries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTooManyAnomaliesError instantiates a new TooManyAnomaliesError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTooManyAnomaliesErrorWithDefaults instantiates a new TooManyAnomaliesError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTooManyTopologyResults instantiates a new TooManyTopologyResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTooManyTopologyResultsWithDefaults instantiates a new TooManyTopologyResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopic instantiates a new Topic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewTopicWithDefaults instantiates a new Topic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyEvent instantiates a new TopologyEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyEventWithDefaults instantiates a new TopologyEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyMatchResult instantiates a new TopologyMatchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyMatchResultWithDefaults instantiates a new TopologyMatchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyOverflowError instantiates a new TopologyOverflowError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyOverflowErrorWithDefaults instantiates a new TopologyOverflowError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyStreamError instantiates a new TopologyStreamError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyStreamErrorWithDefaults instantiates a new TopologyStreamError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyStreamList instantiates a new TopologyStreamList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyStreamListItem instantiates a new TopologyStreamListItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyStreamListItemWithDefaults instantiates a new TopologyStreamListItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyStreamListItemWithErrorDetails instantiates a new TopologyStreamListItemWithErrorDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyStreamListItemWithErrorDetailsWithDefaults instantiates a new TopologyStreamListItemWithErrorDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyStreamListWithDefaults instantiates a new TopologyStreamList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologyStreamMetrics instantiates a new TopologyStreamMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyStreamMetricsWithDefaults instantiates a new TopologyStreamMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTopologySyncError instantiates a new TopologySyncError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologySyncErrorWithDefaults instantiates a new TopologySyncError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewTopologySyncStatusFromValue returns a pointer to a valid TopologySyncStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTopologyTimeOutOfRange instantiates a new TopologyTimeOutOfRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTopologyTimeOutOfRangeWithDefaults instantiates a new TopologyTimeOutOfRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnlicensedSubscription instantiates a new UnlicensedSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnlicensedSubscriptionWithDefaults instantiates a new UnlicensedSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnmatchedCheckState instantiates a new UnmatchedCheckState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnmatchedCheckStateWithDefaults instantiates a new UnmatchedCheckState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserNameMismatchError instantiates a new UserNameMismatchError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserNameMismatchErrorWithDefaults instantiates a new UserNameMismatchError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserNotFoundError instantiates a new UserNotFoundError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserNotFoundErrorWithDefaults instantiates a new UserNotFoundError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserNotLoggedInError instantiates a new UserNotLoggedInError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserNotLoggedInErrorWithDefaults instantiates a new UserNotLoggedInError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserProfile instantiates a new UserProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
No description provided by the author
NewUserProfileWithDefaults instantiates a new UserProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewWindowingMethodFromValue returns a pointer to a valid WindowingMethod for the value passed as argument, or an error if the value passed is not allowed by the enum.
NodeLockedAsLockedResponse is a convenience function that returns NodeLocked wrapped in LockedResponse.
NodeUnlockedAsLockedResponse is a convenience function that returns NodeUnlocked wrapped in LockedResponse.
ProblemNotFoundAsGetCausingEventsNotFound is a convenience function that returns ProblemNotFound wrapped in GetCausingEventsNotFound.
PromDataStringAsPromData is a convenience function that returns PromDataString wrapped in PromData.
PromMatrixAsPromData is a convenience function that returns PromMatrix wrapped in PromData.
PromScalarAsPromData is a convenience function that returns PromScalar wrapped in PromData.
PromVectorAsPromData is a convenience function that returns PromVector wrapped in PromData.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
RequestValidationErrorAsRequestError is a convenience function that returns RequestValidationError wrapped in RequestError.
ServiceTokenInvalidExpiryErrorAsServiceTokenCreateError is a convenience function that returns ServiceTokenInvalidExpiryError wrapped in ServiceTokenCreateError.
stringAsPromSampleInner is a convenience function that returns string wrapped in PromSampleInner.
TooManyActiveQueriesAsGetCausingEventsServiceUnaivailable is a convenience function that returns TooManyActiveQueries wrapped in GetCausingEventsServiceUnaivailable.
TooManyTopologyResultsAsGetCausingEventsResult is a convenience function that returns TooManyTopologyResults wrapped in GetCausingEventsResult.
TopologyOverflowErrorAsRequestError is a convenience function that returns TopologyOverflowError wrapped in RequestError.
TopologyTimeOutOfRangeAsGetCausingEventsBadRequest is a convenience function that returns TopologyTimeOutOfRange wrapped in GetCausingEventsBadRequest.
UnlicensedSubscriptionAsSubscriptionState is a convenience function that returns UnlicensedSubscription wrapped in SubscriptionState.
UserNameMismatchErrorAsUserProfileSaveError is a convenience function that returns UserNameMismatchError wrapped in UserProfileSaveError.
UserNotFoundErrorAsUserProfileSaveError is a convenience function that returns UserNotFoundError wrapped in UserProfileSaveError.
UserNotLoggedInErrorAsUserProfileSaveError is a convenience function that returns UserNotLoggedInError wrapped in UserProfileSaveError.

# Constants

List of AnnotationType.
List of AnnotationType.
List of AnnotationType.
List of AnomalyDirection.
List of AnomalyDirection.
List of AnomalyDirection.
List of AnomalyDirection.
List of AnomalySeverity.
List of AnomalySeverity.
List of AnomalySeverity.
List of DependencyDirection.
List of DependencyDirection.
List of DependencyDirection.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of DownsamplingMethod.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of ErrorStateValue.
List of EventCategory.
List of EventCategory.
List of EventCategory.
List of EventCategory.
List of EventCategory.
List of HealthStateValue.
List of HealthStateValue.
List of HealthStateValue.
List of HealthStateValue.
List of HealthStateValue.
List of HealthStateValue.
List of HealthStateValue.
List of IdentifierType.
List of IdentifierType.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogLevel.
List of LogsDirection.
List of LogsDirection.
List of MessageLevel.
List of MessageLevel.
List of MessageLevel.
List of MetricValuation.
List of MetricValuation.
List of MonitorRuntimeStatusValue.
List of MonitorRuntimeStatusValue.
List of MonitorRuntimeStatusValue.
List of MonitorRuntimeStatusValue.
List of MonitorStatusValue.
List of MonitorStatusValue.
List of PropagatedHealthStateValue.
List of PropagatedHealthStateValue.
List of PropagatedHealthStateValue.
List of PropagatedHealthStateValue.
List of PropagatedHealthStateValue.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of RootCauseMode.
List of RootCauseMode.
List of RootCauseMode.
List of RunStateValue.
List of RunStateValue.
List of RunStateValue.
List of RunStateValue.
List of RunStateValue.
List of RunStateValue.
List of RunStateValue.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of StsEventStreamFilter.
List of TelemetryStreamPriority.
List of TelemetryStreamPriority.
List of TelemetryStreamPriority.
List of TelemetryStreamPriority.
List of TopologySyncStatus.
List of TopologySyncStatus.
List of TopologySyncStatus.
List of TopologySyncStatus.
List of WindowingMethod.
List of WindowingMethod.

# Variables

All allowed values of AnnotationType enum.
All allowed values of AnomalyDirection enum.
All allowed values of AnomalySeverity enum.
All allowed values of DependencyDirection enum.
All allowed values of DownsamplingMethod enum.
All allowed values of ErrorStateValue enum.
All allowed values of EventCategory enum.
All allowed values of HealthStateValue enum.
All allowed values of IdentifierType enum.
All allowed values of LogLevel enum.
All allowed values of LogsDirection enum.
All allowed values of MessageLevel enum.
All allowed values of MetricValuation enum.
All allowed values of MonitorRuntimeStatusValue enum.
All allowed values of MonitorStatusValue enum.
All allowed values of PropagatedHealthStateValue enum.
All allowed values of ReleaseStatus enum.
All allowed values of RootCauseMode enum.
All allowed values of RunStateValue enum.
All allowed values of StsEventStreamFilter enum.
All allowed values of TelemetryStreamPriority enum.
All allowed values of TopologySyncStatus enum.
All allowed values of WindowingMethod enum.
ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

Annotation struct for Annotation.
AnnotationData - struct for AnnotationData.
AnnotationMetricQuery struct for AnnotationMetricQuery.
AnomalyWithContext struct for AnomalyWithContext.
APIClient manages communication with the StackState API API v5.2.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ApiToken struct for ApiToken.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Argument - struct for Argument.
ArgumentAnomalyDirectionVal struct for ArgumentAnomalyDirectionVal.
ArgumentBaselineMetricStreamRef struct for ArgumentBaselineMetricStreamRef.
ArgumentBooleanVal struct for ArgumentBooleanVal.
ArgumentComponentTypeRef struct for ArgumentComponentTypeRef.
ArgumentDoubleVal struct for ArgumentDoubleVal.
ArgumentDurationVal struct for ArgumentDurationVal.
ArgumentEventStreamRef struct for ArgumentEventStreamRef.
ArgumentLongVal struct for ArgumentLongVal.
ArgumentMetricStreamId struct for ArgumentMetricStreamId.
ArgumentMetricStreamRef struct for ArgumentMetricStreamRef.
ArgumentNodeIdVal struct for ArgumentNodeIdVal.
ArgumentPropagatedHealthStateVal struct for ArgumentPropagatedHealthStateVal.
ArgumentQueryViewRef struct for ArgumentQueryViewRef.
ArgumentRelationTypeRef struct for ArgumentRelationTypeRef.
ArgumentRunStateVal struct for ArgumentRunStateVal.
ArgumentScriptMetricQueryVal struct for ArgumentScriptMetricQueryVal.
ArgumentSimpleTrainingPeriodicityVal struct for ArgumentSimpleTrainingPeriodicityVal.
ArgumentStateVal struct for ArgumentStateVal.
ArgumentStringVal struct for ArgumentStringVal.
ArgumentStructTypeVal struct for ArgumentStructTypeVal.
ArgumentStsEventStreamVal struct for ArgumentStsEventStreamVal.
Baseline struct for Baseline.
BaseMonitorError struct for BaseMonitorError.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
CausingEventsAreNotAvailableForTheTime struct for CausingEventsAreNotAvailableForTheTime.
CausingEventsResult struct for CausingEventsResult.
Check struct for Check.
CheckError struct for CheckError.
CheckState struct for CheckState.
CheckStateAcknowledgement struct for CheckStateAcknowledgement.
No description provided by the author
No description provided by the author
No description provided by the author
ComponentNotFoundError struct for ComponentNotFoundError.
Configuration stores the configuration of the API client.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CreateSubject struct for CreateSubject.
No description provided by the author
No description provided by the author
DataUnavailable struct for DataUnavailable.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
EventComponent struct for EventComponent.
EventCursor struct for EventCursor.
EventElement - struct for EventElement.
EventItemsWithTotal struct for EventItemsWithTotal.
EventListRequest struct for EventListRequest.
EventNotFoundError struct for EventNotFoundError.
EventRef struct for EventRef.
EventRelation struct for EventRelation.
EventTag struct for EventTag.
EventTelemetryQuery struct for EventTelemetryQuery.
EventTelemetryStreamDefinition struct for EventTelemetryStreamDefinition.
ExecuteScriptArgumentsScriptError struct for ExecuteScriptArgumentsScriptError.
ExecuteScriptError - struct for ExecuteScriptError.
ExecuteScriptExceptionError struct for ExecuteScriptExceptionError.
ExecuteScriptExecutionError struct for ExecuteScriptExecutionError.
ExecuteScriptGroovyRuntimeError struct for ExecuteScriptGroovyRuntimeError.
ExecuteScriptRequest struct for ExecuteScriptRequest.
ExecuteScriptResponse struct for ExecuteScriptResponse.
ExecuteScriptSecurityError struct for ExecuteScriptSecurityError.
ExecuteScriptSyntaxErrors struct for ExecuteScriptSyntaxErrors.
ExecuteScriptSyntaxErrorsErrorsInner struct for ExecuteScriptSyntaxErrorsErrorsInner.
ExecuteScriptTimeoutError struct for ExecuteScriptTimeoutError.
ExecuteScriptWrongReturnTypeError struct for ExecuteScriptWrongReturnTypeError.
ExpiredSubscription struct for ExpiredSubscription.
Export struct for Export.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
FAQ struct for FAQ.
FeedbackComment struct for FeedbackComment.
FeedbackData struct for FeedbackData.
FieldMapping struct for FieldMapping.
FullStackPack struct for FullStackPack.
GenericAnnotationData struct for GenericAnnotationData.
GenericApiError struct for GenericApiError.
GenericErrorsResponse struct for GenericErrorsResponse.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
No description provided by the author
No description provided by the author
GetCausingEventsBadRequest - struct for GetCausingEventsBadRequest.
GetCausingEventsNotFound - struct for GetCausingEventsNotFound.
GetCausingEventsResult - struct for GetCausingEventsResult.
GetCausingEventsServiceUnaivailable - struct for GetCausingEventsServiceUnaivailable.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
GetKubernetesLogsAutocompleteBadRequest - struct for GetKubernetesLogsAutocompleteBadRequest.
No description provided by the author
GetKubernetesLogsAutocompleteInvalidTimeRange struct for GetKubernetesLogsAutocompleteInvalidTimeRange.
No description provided by the author
GetKubernetesLogsAutocompleteResult struct for GetKubernetesLogsAutocompleteResult.
GetKubernetesLogsBadRequest - struct for GetKubernetesLogsBadRequest.
No description provided by the author
GetKubernetesLogsHistogramBadRequest - struct for GetKubernetesLogsHistogramBadRequest.
No description provided by the author
GetKubernetesLogsHistogramInvalidQuery struct for GetKubernetesLogsHistogramInvalidQuery.
GetKubernetesLogsHistogramInvalidTimeRange struct for GetKubernetesLogsHistogramInvalidTimeRange.
No description provided by the author
GetKubernetesLogsHistogramResult struct for GetKubernetesLogsHistogramResult.
GetKubernetesLogsInvalidPagination struct for GetKubernetesLogsInvalidPagination.
GetKubernetesLogsInvalidQuery struct for GetKubernetesLogsInvalidQuery.
GetKubernetesLogsInvalidTimeRange struct for GetKubernetesLogsInvalidTimeRange.
No description provided by the author
GetKubernetesLogsResult struct for GetKubernetesLogsResult.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
GetTopologyTimeout struct for GetTopologyTimeout.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
GrantPermission struct for GrantPermission.
No description provided by the author
No description provided by the author
HealthStreamError struct for HealthStreamError.
HealthStreamMetrics struct for HealthStreamMetrics.
HealthStreamNotFound struct for HealthStreamNotFound.
HealthStreamStatus struct for HealthStreamStatus.
HealthSubStreamConsistencyState - struct for HealthSubStreamConsistencyState.
HealthSubStreamError - struct for HealthSubStreamError.
HealthSubStreamExpiry struct for HealthSubStreamExpiry.
HealthSubStreamNotFound struct for HealthSubStreamNotFound.
HealthSubStreamSnapshot struct for HealthSubStreamSnapshot.
HealthSubStreamStatus struct for HealthSubStreamStatus.
HealthSubStreamTransactionalIncrements struct for HealthSubStreamTransactionalIncrements.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
InvalidMonitorIdentifierError struct for InvalidMonitorIdentifierError.
InvalidSyncIdentifier struct for InvalidSyncIdentifier.
InvalidUrn struct for InvalidUrn.
KubernetesLogHighlight struct for KubernetesLogHighlight.
KubernetesLogHistogramBucket struct for KubernetesLogHistogramBucket.
KubernetesLogLevelHistogramBucket struct for KubernetesLogLevelHistogramBucket.
KubernetesLogRecord struct for KubernetesLogRecord.
No description provided by the author
LatestTelemetryStreamMetrics struct for LatestTelemetryStreamMetrics.
LicensedSubscription struct for LicensedSubscription.
LimitOutOfRange struct for LimitOutOfRange.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
LockedResponse - struct for LockedResponse.
No description provided by the author
Message struct for Message.
Messages struct for Messages.
No description provided by the author
MetricBucketValue struct for MetricBucketValue.
MetricStreamAnomalyData struct for MetricStreamAnomalyData.
MetricStreamNoAnomalyData struct for MetricStreamNoAnomalyData.
MetricStreamReference struct for MetricStreamReference.
MetricTelemetryQuery struct for MetricTelemetryQuery.
MetricTelemetryStreamDefinition struct for MetricTelemetryStreamDefinition.
Monitor struct for Monitor.
MonitorApiError struct for MonitorApiError.
MonitorApiErrorAllOf struct for MonitorApiErrorAllOf.
No description provided by the author
MonitorCheckStatus struct for MonitorCheckStatus.
MonitorCheckStatusApiError struct for MonitorCheckStatusApiError.
No description provided by the author
MonitorCheckStatusComponent struct for MonitorCheckStatusComponent.
MonitorCheckStatusHealthChange struct for MonitorCheckStatusHealthChange.
MonitorCheckStatusHealthHistory struct for MonitorCheckStatusHealthHistory.
MonitorCheckStatusMetric struct for MonitorCheckStatusMetric.
MonitorCheckStatusNotFoundError struct for MonitorCheckStatusNotFoundError.
MonitorCheckStatusQuery struct for MonitorCheckStatusQuery.
MonitorCheckStatusRelatedFailures struct for MonitorCheckStatusRelatedFailures.
MonitorCheckStatusRelatedFailuresCheckStatus struct for MonitorCheckStatusRelatedFailuresCheckStatus.
MonitorCheckStatusRelatedFailuresTopology struct for MonitorCheckStatusRelatedFailuresTopology.
MonitorError struct for MonitorError.
MonitorFunction struct for MonitorFunction.
MonitorInvalidIntervalError struct for MonitorInvalidIntervalError.
MonitorList struct for MonitorList.
MonitorMetrics struct for MonitorMetrics.
MonitorNotFoundError struct for MonitorNotFoundError.
MonitorNotFoundErrorAllOf struct for MonitorNotFoundErrorAllOf.
MonitorOverview struct for MonitorOverview.
MonitorOverviewList struct for MonitorOverviewList.
MonitorPatch struct for MonitorPatch.
MonitorRunResult struct for MonitorRunResult.
MonitorRuntimeMetrics struct for MonitorRuntimeMetrics.
MonitorStatus struct for MonitorStatus.
MonitorValidationError - struct for MonitorValidationError.
MultipleMatchesCheckState struct for MultipleMatchesCheckState.
NewLicense struct for NewLicense.
NewServiceTokenRequest struct for NewServiceTokenRequest.
Node struct for Node.
No description provided by the author
No description provided by the author
No description provided by the author
NodeLocked struct for NodeLocked.
NodeName struct for NodeName.
NodeTypes struct for NodeTypes.
NodeTypesNodeTypesInner struct for NodeTypesNodeTypesInner.
NodeUnlocked struct for NodeUnlocked.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PermissionDescription struct for PermissionDescription.
Permissions struct for Permissions.
No description provided by the author
Point struct for Point.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ProblemNotFound struct for ProblemNotFound.
PromData - struct for PromData.
PromDataResult struct for PromDataResult.
PromDataString struct for PromDataString.
PromEnvelope struct for PromEnvelope.
PromExemplar struct for PromExemplar.
PromExemplarData struct for PromExemplarData.
PromExemplarEnvelope struct for PromExemplarEnvelope.
PromLabelsEnvelope struct for PromLabelsEnvelope.
PromMatrix struct for PromMatrix.
PromMetadataEnvelope struct for PromMetadataEnvelope.
PromSampleInner - Unix timestamp with sample value (as a string).
PromScalar struct for PromScalar.
PromSeriesEnvelope struct for PromSeriesEnvelope.
PromVector struct for PromVector.
PromVectorResult struct for PromVectorResult.
No description provided by the author
No description provided by the author
ProvisionResponse struct for ProvisionResponse.
No description provided by the author
No description provided by the author
Reference - struct for Reference.
No description provided by the author
RequestError - struct for RequestError.
RequestValidationError struct for RequestValidationError.
No description provided by the author
No description provided by the author
Role struct for Role.
RoleNotAvailableError struct for RoleNotAvailableError.
Roles struct for Roles.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ScriptLocation struct for ScriptLocation.
No description provided by the author
ServerConfiguration stores the information about a server.
ServerInfo struct for ServerInfo.
No description provided by the author
No description provided by the author
ServerVariable stores the information about a server variable.
ServerVersion struct for ServerVersion.
ServiceToken struct for ServiceToken.
No description provided by the author
ServiceTokenCreatedResponse struct for ServiceTokenCreatedResponse.
ServiceTokenCreateError - struct for ServiceTokenCreateError.
ServiceTokenInvalidExpiryError struct for ServiceTokenInvalidExpiryError.
SimpleTrainingPeriodicity struct for SimpleTrainingPeriodicity.
SingleMetric struct for SingleMetric.
SourceLink struct for SourceLink.
StackElementNotFound struct for StackElementNotFound.
StackPack struct for StackPack.
No description provided by the author
StackPackConfiguration struct for StackPackConfiguration.
StackPackError struct for StackPackError.
StackPackIntegration struct for StackPackIntegration.
No description provided by the author
No description provided by the author
StackPackStep struct for StackPackStep.
StackPackStepValue struct for StackPackStepValue.
No description provided by the author
No description provided by the author
StreamList struct for StreamList.
StreamListItem struct for StreamListItem.
StringItemsWithTotal struct for StringItemsWithTotal.
No description provided by the author
SubjectConfig struct for SubjectConfig.
Subscription struct for Subscription.
No description provided by the author
SubscriptionState - struct for SubscriptionState.
SubStreamList struct for SubStreamList.
SubStreamListItem struct for SubStreamListItem.
TelemetryLatestSnapshotsResponse struct for TelemetryLatestSnapshotsResponse.
TelemetryQueryCondition struct for TelemetryQueryCondition.
TelemetryStreamDefinition - struct for TelemetryStreamDefinition.
TimeRange struct for TimeRange.
TooManyActiveQueries struct for TooManyActiveQueries.
TooManyAnomaliesError struct for TooManyAnomaliesError.
TooManyTopologyResults struct for TooManyTopologyResults.
Topic struct for Topic.
No description provided by the author
TopologyEvent struct for TopologyEvent.
TopologyMapping - struct for TopologyMapping.
TopologyMatchResult struct for TopologyMatchResult.
TopologyOverflowError struct for TopologyOverflowError.
TopologyStreamError struct for TopologyStreamError.
TopologyStreamList struct for TopologyStreamList.
TopologyStreamListItem struct for TopologyStreamListItem.
TopologyStreamListItemWithErrorDetails struct for TopologyStreamListItemWithErrorDetails.
TopologyStreamMetrics struct for TopologyStreamMetrics.
TopologySyncError struct for TopologySyncError.
No description provided by the author
TopologyTimeOutOfRange struct for TopologyTimeOutOfRange.
No description provided by the author
No description provided by the author
UnlicensedSubscription struct for UnlicensedSubscription.
No description provided by the author
No description provided by the author
UnmatchedCheckState struct for UnmatchedCheckState.
No description provided by the author
No description provided by the author
UserNameMismatchError struct for UserNameMismatchError.
UserNotFoundError struct for UserNotFoundError.
UserNotLoggedInError struct for UserNotLoggedInError.
UserProfile struct for UserProfile.
No description provided by the author
UserProfileSaveError - struct for UserProfileSaveError.
No description provided by the author

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AnnotationType the model 'AnnotationType'.
AnomalyDirection the model 'AnomalyDirection'.
AnomalySeverity the model 'AnomalySeverity'.
ApiTokenApiService ApiTokenApi service.
ComponentApiService ComponentApi service.
DependencyDirection the model 'DependencyDirection'.
DownsamplingMethod the model 'DownsamplingMethod'.
ErrorStateValue the model 'ErrorStateValue'.
EventApiService EventApi service.
EventCategory the model 'EventCategory'.
ExportAnomalyApiService ExportAnomalyApi service.
ExportApiService ExportApi service.
HealthStateValue the model 'HealthStateValue'.
HealthSynchronizationApiService HealthSynchronizationApi service.
IdentifierType the model 'IdentifierType'.
ImportApiService ImportApi service.
KubernetesLogsApiService KubernetesLogsApi service.
LogLevel the model 'LogLevel'.
LogsDirection the model 'LogsDirection'.
MessageLevel the model 'MessageLevel'.
MetricApiService MetricApi service.
MetricValuation the model 'MetricValuation'.
MonitorApiService MonitorApi service.
MonitorCheckStatusApiService MonitorCheckStatusApi service.
MonitorRuntimeStatusValue the model 'MonitorRuntimeStatusValue'.
MonitorStatusValue If a monitor status is set to DISABLED it won't produce any health states but it can still be run manually to inspect it's output.
NodeApiService NodeApi service.
PermissionsApiService PermissionsApi service.
ProblemApiService ProblemApi service.
PropagatedHealthStateValue the model 'PropagatedHealthStateValue'.
RelationApiService RelationApi service.
ReleaseStatus the model 'ReleaseStatus'.
RootCauseMode the model 'RootCauseMode'.
RunStateValue the model 'RunStateValue'.
ScriptingApiService ScriptingApi service.
ServerApiService ServerApi service.
ServerConfigurations stores multiple ServerConfiguration items.
ServiceTokenApiService ServiceTokenApi service.
StackpackApiService StackpackApi service.
StsEventStreamFilter the model 'StsEventStreamFilter'.
SubjectApiService SubjectApi service.
SubscriptionApiService SubscriptionApi service.
TelemetryStreamPriority the model 'TelemetryStreamPriority'.
TopicApiService TopicApi service.
TopologySynchronizationApiService TopologySynchronizationApi service.
TopologySyncStatus the model 'TopologySyncStatus'.
UserProfileApiService UserProfileApi service.
UserSessionApiService UserSessionApi service.
WindowingMethod the model 'WindowingMethod'.