Versions in this module Expand all Collapse all v0 v0.18.0 Mar 10, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type Alert struct + Global *Global + InhibitRules []InhibitRules + Receivers []Receivers + Route Route + func NewAlert(receivers []Receivers, route Route) *Alert + func NewAlertWithDefaults() *Alert + func (o *Alert) GetGlobal() Global + func (o *Alert) GetGlobalOk() (*Global, bool) + func (o *Alert) GetInhibitRules() []InhibitRules + func (o *Alert) GetInhibitRulesOk() ([]InhibitRules, bool) + func (o *Alert) GetReceivers() []Receivers + func (o *Alert) GetReceiversOk() ([]Receivers, bool) + func (o *Alert) GetRoute() Route + func (o *Alert) GetRouteOk() (*Route, bool) + func (o *Alert) HasGlobal() bool + func (o *Alert) HasInhibitRules() bool + func (o *Alert) SetGlobal(v Global) + func (o *Alert) SetInhibitRules(v []InhibitRules) + func (o *Alert) SetReceivers(v []Receivers) + func (o *Alert) SetRoute(v Route) + func (o *Alert) UnmarshalJSON(data []byte) (err error) + func (o Alert) MarshalJSON() ([]byte, error) + func (o Alert) ToMap() (map[string]interface{}, error) + type AlertConfigReceiversResponse struct + Data []Receivers + Message string + func NewAlertConfigReceiversResponse(data []Receivers, message string) *AlertConfigReceiversResponse + func NewAlertConfigReceiversResponseWithDefaults() *AlertConfigReceiversResponse + func (o *AlertConfigReceiversResponse) GetData() []Receivers + func (o *AlertConfigReceiversResponse) GetDataOk() ([]Receivers, bool) + func (o *AlertConfigReceiversResponse) GetMessage() string + func (o *AlertConfigReceiversResponse) GetMessageOk() (*string, bool) + func (o *AlertConfigReceiversResponse) SetData(v []Receivers) + func (o *AlertConfigReceiversResponse) SetMessage(v string) + func (o *AlertConfigReceiversResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertConfigReceiversResponse) MarshalJSON() ([]byte, error) + func (o AlertConfigReceiversResponse) ToMap() (map[string]interface{}, error) + type AlertConfigRouteResponse struct + Data Route + Message string + func NewAlertConfigRouteResponse(data Route, message string) *AlertConfigRouteResponse + func NewAlertConfigRouteResponseWithDefaults() *AlertConfigRouteResponse + func (o *AlertConfigRouteResponse) GetData() Route + func (o *AlertConfigRouteResponse) GetDataOk() (*Route, bool) + func (o *AlertConfigRouteResponse) GetMessage() string + func (o *AlertConfigRouteResponse) GetMessageOk() (*string, bool) + func (o *AlertConfigRouteResponse) SetData(v Route) + func (o *AlertConfigRouteResponse) SetMessage(v string) + func (o *AlertConfigRouteResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertConfigRouteResponse) MarshalJSON() ([]byte, error) + func (o AlertConfigRouteResponse) ToMap() (map[string]interface{}, error) + type AlertGroup struct + Interval *string + Name string + Rules []AlertRuleRecord + func NewAlertGroup(name string, rules []AlertRuleRecord) *AlertGroup + func NewAlertGroupWithDefaults() *AlertGroup + func (o *AlertGroup) GetInterval() string + func (o *AlertGroup) GetIntervalOk() (*string, bool) + func (o *AlertGroup) GetName() string + func (o *AlertGroup) GetNameOk() (*string, bool) + func (o *AlertGroup) GetRules() []AlertRuleRecord + func (o *AlertGroup) GetRulesOk() ([]AlertRuleRecord, bool) + func (o *AlertGroup) HasInterval() bool + func (o *AlertGroup) SetInterval(v string) + func (o *AlertGroup) SetName(v string) + func (o *AlertGroup) SetRules(v []AlertRuleRecord) + func (o *AlertGroup) UnmarshalJSON(data []byte) (err error) + func (o AlertGroup) MarshalJSON() ([]byte, error) + func (o AlertGroup) ToMap() (map[string]interface{}, error) + type AlertGroupResponse struct + Data AlertGroup + Message string + func NewAlertGroupResponse(data AlertGroup, message string) *AlertGroupResponse + func NewAlertGroupResponseWithDefaults() *AlertGroupResponse + func (o *AlertGroupResponse) GetData() AlertGroup + func (o *AlertGroupResponse) GetDataOk() (*AlertGroup, bool) + func (o *AlertGroupResponse) GetMessage() string + func (o *AlertGroupResponse) GetMessageOk() (*string, bool) + func (o *AlertGroupResponse) SetData(v AlertGroup) + func (o *AlertGroupResponse) SetMessage(v string) + func (o *AlertGroupResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertGroupResponse) MarshalJSON() ([]byte, error) + func (o AlertGroupResponse) ToMap() (map[string]interface{}, error) + type AlertGroupsResponse struct + Data []AlertGroup + Message string + func NewAlertGroupsResponse(data []AlertGroup, message string) *AlertGroupsResponse + func NewAlertGroupsResponseWithDefaults() *AlertGroupsResponse + func (o *AlertGroupsResponse) GetData() []AlertGroup + func (o *AlertGroupsResponse) GetDataOk() ([]AlertGroup, bool) + func (o *AlertGroupsResponse) GetMessage() string + func (o *AlertGroupsResponse) GetMessageOk() (*string, bool) + func (o *AlertGroupsResponse) SetData(v []AlertGroup) + func (o *AlertGroupsResponse) SetMessage(v string) + func (o *AlertGroupsResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertGroupsResponse) MarshalJSON() ([]byte, error) + func (o AlertGroupsResponse) ToMap() (map[string]interface{}, error) + type AlertRecord struct + Expr string + Labels *map[string]string + Record string + func NewAlertRecord(expr string, record string) *AlertRecord + func NewAlertRecordWithDefaults() *AlertRecord + func (o *AlertRecord) GetExpr() string + func (o *AlertRecord) GetExprOk() (*string, bool) + func (o *AlertRecord) GetLabels() map[string]string + func (o *AlertRecord) GetLabelsOk() (*map[string]string, bool) + func (o *AlertRecord) GetRecord() string + func (o *AlertRecord) GetRecordOk() (*string, bool) + func (o *AlertRecord) HasLabels() bool + func (o *AlertRecord) SetExpr(v string) + func (o *AlertRecord) SetLabels(v map[string]string) + func (o *AlertRecord) SetRecord(v string) + func (o *AlertRecord) UnmarshalJSON(data []byte) (err error) + func (o AlertRecord) MarshalJSON() ([]byte, error) + func (o AlertRecord) ToMap() (map[string]interface{}, error) + type AlertRecordResponse struct + Data AlertRecord + Message string + func NewAlertRecordResponse(data AlertRecord, message string) *AlertRecordResponse + func NewAlertRecordResponseWithDefaults() *AlertRecordResponse + func (o *AlertRecordResponse) GetData() AlertRecord + func (o *AlertRecordResponse) GetDataOk() (*AlertRecord, bool) + func (o *AlertRecordResponse) GetMessage() string + func (o *AlertRecordResponse) GetMessageOk() (*string, bool) + func (o *AlertRecordResponse) SetData(v AlertRecord) + func (o *AlertRecordResponse) SetMessage(v string) + func (o *AlertRecordResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertRecordResponse) MarshalJSON() ([]byte, error) + func (o AlertRecordResponse) ToMap() (map[string]interface{}, error) + type AlertRecordsResponse struct + Data []AlertRecord + Message string + func NewAlertRecordsResponse(data []AlertRecord, message string) *AlertRecordsResponse + func NewAlertRecordsResponseWithDefaults() *AlertRecordsResponse + func (o *AlertRecordsResponse) GetData() []AlertRecord + func (o *AlertRecordsResponse) GetDataOk() ([]AlertRecord, bool) + func (o *AlertRecordsResponse) GetMessage() string + func (o *AlertRecordsResponse) GetMessageOk() (*string, bool) + func (o *AlertRecordsResponse) SetData(v []AlertRecord) + func (o *AlertRecordsResponse) SetMessage(v string) + func (o *AlertRecordsResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertRecordsResponse) MarshalJSON() ([]byte, error) + func (o AlertRecordsResponse) ToMap() (map[string]interface{}, error) + type AlertRule struct + Alert string + Annotations *map[string]string + Expr string + For *string + Labels *map[string]string + func NewAlertRule(alert string, expr string) *AlertRule + func NewAlertRuleWithDefaults() *AlertRule + func (o *AlertRule) GetAlert() string + func (o *AlertRule) GetAlertOk() (*string, bool) + func (o *AlertRule) GetAnnotations() map[string]string + func (o *AlertRule) GetAnnotationsOk() (*map[string]string, bool) + func (o *AlertRule) GetExpr() string + func (o *AlertRule) GetExprOk() (*string, bool) + func (o *AlertRule) GetFor() string + func (o *AlertRule) GetForOk() (*string, bool) + func (o *AlertRule) GetLabels() map[string]string + func (o *AlertRule) GetLabelsOk() (*map[string]string, bool) + func (o *AlertRule) HasAnnotations() bool + func (o *AlertRule) HasFor() bool + func (o *AlertRule) HasLabels() bool + func (o *AlertRule) SetAlert(v string) + func (o *AlertRule) SetAnnotations(v map[string]string) + func (o *AlertRule) SetExpr(v string) + func (o *AlertRule) SetFor(v string) + func (o *AlertRule) SetLabels(v map[string]string) + func (o *AlertRule) UnmarshalJSON(data []byte) (err error) + func (o AlertRule) MarshalJSON() ([]byte, error) + func (o AlertRule) ToMap() (map[string]interface{}, error) + type AlertRuleRecord struct + Alert *string + Annotations *map[string]string + Expr string + For *string + Labels *map[string]string + Record *string + func NewAlertRuleRecord(expr string) *AlertRuleRecord + func NewAlertRuleRecordWithDefaults() *AlertRuleRecord + func (o *AlertRuleRecord) GetAlert() string + func (o *AlertRuleRecord) GetAlertOk() (*string, bool) + func (o *AlertRuleRecord) GetAnnotations() map[string]string + func (o *AlertRuleRecord) GetAnnotationsOk() (*map[string]string, bool) + func (o *AlertRuleRecord) GetExpr() string + func (o *AlertRuleRecord) GetExprOk() (*string, bool) + func (o *AlertRuleRecord) GetFor() string + func (o *AlertRuleRecord) GetForOk() (*string, bool) + func (o *AlertRuleRecord) GetLabels() map[string]string + func (o *AlertRuleRecord) GetLabelsOk() (*map[string]string, bool) + func (o *AlertRuleRecord) GetRecord() string + func (o *AlertRuleRecord) GetRecordOk() (*string, bool) + func (o *AlertRuleRecord) HasAlert() bool + func (o *AlertRuleRecord) HasAnnotations() bool + func (o *AlertRuleRecord) HasFor() bool + func (o *AlertRuleRecord) HasLabels() bool + func (o *AlertRuleRecord) HasRecord() bool + func (o *AlertRuleRecord) SetAlert(v string) + func (o *AlertRuleRecord) SetAnnotations(v map[string]string) + func (o *AlertRuleRecord) SetExpr(v string) + func (o *AlertRuleRecord) SetFor(v string) + func (o *AlertRuleRecord) SetLabels(v map[string]string) + func (o *AlertRuleRecord) SetRecord(v string) + func (o *AlertRuleRecord) UnmarshalJSON(data []byte) (err error) + func (o AlertRuleRecord) MarshalJSON() ([]byte, error) + func (o AlertRuleRecord) ToMap() (map[string]interface{}, error) + type AlertRuleResponse struct + Data AlertRule + Message string + func NewAlertRuleResponse(data AlertRule, message string) *AlertRuleResponse + func NewAlertRuleResponseWithDefaults() *AlertRuleResponse + func (o *AlertRuleResponse) GetData() AlertRule + func (o *AlertRuleResponse) GetDataOk() (*AlertRule, bool) + func (o *AlertRuleResponse) GetMessage() string + func (o *AlertRuleResponse) GetMessageOk() (*string, bool) + func (o *AlertRuleResponse) SetData(v AlertRule) + func (o *AlertRuleResponse) SetMessage(v string) + func (o *AlertRuleResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertRuleResponse) MarshalJSON() ([]byte, error) + func (o AlertRuleResponse) ToMap() (map[string]interface{}, error) + type AlertRulesResponse struct + Data []AlertRule + Message string + func NewAlertRulesResponse(data []AlertRule, message string) *AlertRulesResponse + func NewAlertRulesResponseWithDefaults() *AlertRulesResponse + func (o *AlertRulesResponse) GetData() []AlertRule + func (o *AlertRulesResponse) GetDataOk() ([]AlertRule, bool) + func (o *AlertRulesResponse) GetMessage() string + func (o *AlertRulesResponse) GetMessageOk() (*string, bool) + func (o *AlertRulesResponse) SetData(v []AlertRule) + func (o *AlertRulesResponse) SetMessage(v string) + func (o *AlertRulesResponse) UnmarshalJSON(data []byte) (err error) + func (o AlertRulesResponse) MarshalJSON() ([]byte, error) + func (o AlertRulesResponse) ToMap() (map[string]interface{}, error) + type ApiCreateAlertConfigReceiverRequest struct + ApiService DefaultAPI + func (r ApiCreateAlertConfigReceiverRequest) CreateAlertConfigReceiverPayload(createAlertConfigReceiverPayload CreateAlertConfigReceiverPayload) ApiCreateAlertConfigReceiverRequest + func (r ApiCreateAlertConfigReceiverRequest) Execute() (*AlertConfigReceiversResponse, error) + type ApiCreateAlertConfigRouteRequest struct + ApiService DefaultAPI + func (r ApiCreateAlertConfigRouteRequest) CreateAlertConfigRoutePayload(createAlertConfigRoutePayload CreateAlertConfigRoutePayload) ApiCreateAlertConfigRouteRequest + func (r ApiCreateAlertConfigRouteRequest) Execute() (*AlertConfigRouteResponse, error) + type ApiCreateAlertRecordRequest struct + ApiService DefaultAPI + func (r ApiCreateAlertRecordRequest) CreateAlertRecordPayload(createAlertRecordPayload CreateAlertRecordPayload) ApiCreateAlertRecordRequest + func (r ApiCreateAlertRecordRequest) Execute() (*AlertRecordsResponse, error) + type ApiCreateAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiCreateAlertgroupsRequest) CreateAlertgroupsPayload(createAlertgroupsPayload CreateAlertgroupsPayload) ApiCreateAlertgroupsRequest + func (r ApiCreateAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + type ApiCreateAlertrulesRequest struct + ApiService DefaultAPI + func (r ApiCreateAlertrulesRequest) CreateAlertrulesPayload(createAlertrulesPayload CreateAlertrulesPayload) ApiCreateAlertrulesRequest + func (r ApiCreateAlertrulesRequest) Execute() (*AlertRulesResponse, error) + type ApiCreateBackupRequest struct + ApiService DefaultAPI + func (r ApiCreateBackupRequest) BackupTarget(backupTarget []string) ApiCreateBackupRequest + func (r ApiCreateBackupRequest) Execute() (*Message, error) + type ApiCreateBackupScheduleRequest struct + ApiService DefaultAPI + func (r ApiCreateBackupScheduleRequest) BackupTarget(backupTarget []string) ApiCreateBackupScheduleRequest + func (r ApiCreateBackupScheduleRequest) CreateBackupSchedulePayload(createBackupSchedulePayload CreateBackupSchedulePayload) ApiCreateBackupScheduleRequest + func (r ApiCreateBackupScheduleRequest) Execute() (*BackupSchedulePostResponse, error) + type ApiCreateCertCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateCertCheckRequest) CreateCertCheckPayload(createCertCheckPayload CreateCertCheckPayload) ApiCreateCertCheckRequest + func (r ApiCreateCertCheckRequest) Execute() (*CertCheckResponse, error) + type ApiCreateCredentialsRequest struct + ApiService DefaultAPI + func (r ApiCreateCredentialsRequest) CreateCredentialsPayload(createCredentialsPayload CreateCredentialsPayload) ApiCreateCredentialsRequest + func (r ApiCreateCredentialsRequest) Execute() (*CreateCredentialsResponse, error) + type ApiCreateElasticsearchCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateElasticsearchCheckRequest) CreateElasticsearchCheckPayload(createElasticsearchCheckPayload CreateElasticsearchCheckPayload) ApiCreateElasticsearchCheckRequest + func (r ApiCreateElasticsearchCheckRequest) Execute() (*ElasticsearchCheckResponse, error) + type ApiCreateHttpCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateHttpCheckRequest) CreateHttpCheckPayload(createHttpCheckPayload CreateHttpCheckPayload) ApiCreateHttpCheckRequest + func (r ApiCreateHttpCheckRequest) Execute() (*HttpCheckResponse, error) + type ApiCreateInstanceRequest struct + ApiService DefaultAPI + func (r ApiCreateInstanceRequest) CreateInstancePayload(createInstancePayload CreateInstancePayload) ApiCreateInstanceRequest + func (r ApiCreateInstanceRequest) Execute() (*CreateInstanceResponse, error) + type ApiCreateLogsAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiCreateLogsAlertgroupsRequest) CreateLogsAlertgroupsPayload(createLogsAlertgroupsPayload CreateLogsAlertgroupsPayload) ApiCreateLogsAlertgroupsRequest + func (r ApiCreateLogsAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + type ApiCreateMongodbCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateMongodbCheckRequest) CreateMongodbCheckPayload(createMongodbCheckPayload CreateMongodbCheckPayload) ApiCreateMongodbCheckRequest + func (r ApiCreateMongodbCheckRequest) Execute() (*MongodbCheckResponse, error) + type ApiCreateMysqlCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateMysqlCheckRequest) CreateMysqlCheckPayload(createMysqlCheckPayload CreateMysqlCheckPayload) ApiCreateMysqlCheckRequest + func (r ApiCreateMysqlCheckRequest) Execute() (*MysqlCheckResponse, error) + type ApiCreateNetworkCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateNetworkCheckRequest) CreateNetworkCheckPayload(createNetworkCheckPayload CreateNetworkCheckPayload) ApiCreateNetworkCheckRequest + func (r ApiCreateNetworkCheckRequest) Execute() (*NetworkCheckResponse, error) + type ApiCreatePingCheckRequest struct + ApiService DefaultAPI + func (r ApiCreatePingCheckRequest) CreatePingCheckPayload(createPingCheckPayload CreatePingCheckPayload) ApiCreatePingCheckRequest + func (r ApiCreatePingCheckRequest) Execute() (*PingCheckResponse, error) + type ApiCreatePostgresqlCheckRequest struct + ApiService DefaultAPI + func (r ApiCreatePostgresqlCheckRequest) CreatePostgresqlCheckPayload(createPostgresqlCheckPayload CreatePostgresqlCheckPayload) ApiCreatePostgresqlCheckRequest + func (r ApiCreatePostgresqlCheckRequest) Execute() (*PostgresqlCheckResponse, error) + type ApiCreateRabbitmqCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateRabbitmqCheckRequest) CreateRabbitmqCheckPayload(createRabbitmqCheckPayload CreateRabbitmqCheckPayload) ApiCreateRabbitmqCheckRequest + func (r ApiCreateRabbitmqCheckRequest) Execute() (*RabbitmqCheckResponse, error) + type ApiCreateRedisCheckRequest struct + ApiService DefaultAPI + func (r ApiCreateRedisCheckRequest) CreateRedisCheckPayload(createRedisCheckPayload CreateRedisCheckPayload) ApiCreateRedisCheckRequest + func (r ApiCreateRedisCheckRequest) Execute() (*RedisCheckResponse, error) + type ApiCreateScrapeConfigRequest struct + ApiService DefaultAPI + func (r ApiCreateScrapeConfigRequest) CreateScrapeConfigPayload(createScrapeConfigPayload CreateScrapeConfigPayload) ApiCreateScrapeConfigRequest + func (r ApiCreateScrapeConfigRequest) Execute() (*ScrapeConfigsResponse, error) + type ApiDeleteAlertConfigReceiverRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertConfigReceiverRequest) Execute() (*AlertConfigReceiversResponse, error) + type ApiDeleteAlertConfigRouteRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertConfigRouteRequest) Execute() (*AlertConfigRouteResponse, error) + type ApiDeleteAlertRecordRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertRecordRequest) Execute() (*AlertRecordsResponse, error) + type ApiDeleteAlertRecordsRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertRecordsRequest) AlertRecord(alertRecord []string) ApiDeleteAlertRecordsRequest + func (r ApiDeleteAlertRecordsRequest) Execute() (*AlertRecordsResponse, error) + type ApiDeleteAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertgroupRequest) Execute() (*AlertGroupsResponse, error) + type ApiDeleteAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + func (r ApiDeleteAlertgroupsRequest) GroupName(groupName []string) ApiDeleteAlertgroupsRequest + type ApiDeleteAlertruleRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertruleRequest) Execute() (*AlertRulesResponse, error) + type ApiDeleteAlertrulesRequest struct + ApiService DefaultAPI + func (r ApiDeleteAlertrulesRequest) AlertName(alertName []string) ApiDeleteAlertrulesRequest + func (r ApiDeleteAlertrulesRequest) Execute() (*AlertRulesResponse, error) + type ApiDeleteCertCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteCertCheckRequest) Execute() (*CertCheckResponse, error) + type ApiDeleteCredentialsRemoteWriteConfigRequest struct + ApiService DefaultAPI + func (r ApiDeleteCredentialsRemoteWriteConfigRequest) Execute() (*CredentialsRemoteWriteDeleteResponse, error) + type ApiDeleteCredentialsRequest struct + ApiService DefaultAPI + func (r ApiDeleteCredentialsRequest) Execute() (*Message, error) + type ApiDeleteElasticsearchCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteElasticsearchCheckRequest) Execute() (*ElasticsearchCheckResponse, error) + type ApiDeleteHttpCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteHttpCheckRequest) Execute() (*HttpCheckResponse, error) + type ApiDeleteInstanceRequest struct + ApiService DefaultAPI + func (r ApiDeleteInstanceRequest) Execute() (*InstanceResponse, error) + type ApiDeleteLogsAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiDeleteLogsAlertgroupRequest) Execute() (*AlertGroupsResponse, error) + type ApiDeleteMongodbCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteMongodbCheckRequest) Execute() (*MongodbCheckResponse, error) + type ApiDeleteMysqlCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteMysqlCheckRequest) Execute() (*MysqlCheckResponse, error) + type ApiDeleteNetworkCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteNetworkCheckRequest) Execute() (*NetworkCheckResponse, error) + type ApiDeletePingCheckRequest struct + ApiService DefaultAPI + func (r ApiDeletePingCheckRequest) Execute() (*PingCheckResponse, error) + type ApiDeletePostgresqlCheckRequest struct + ApiService DefaultAPI + func (r ApiDeletePostgresqlCheckRequest) Execute() (*PostgresqlCheckResponse, error) + type ApiDeleteRabbitmqCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteRabbitmqCheckRequest) Execute() (*RabbitmqCheckResponse, error) + type ApiDeleteRedisCheckRequest struct + ApiService DefaultAPI + func (r ApiDeleteRedisCheckRequest) Execute() (*RedisCheckResponse, error) + type ApiDeleteScrapeConfigRequest struct + ApiService DefaultAPI + func (r ApiDeleteScrapeConfigRequest) Execute() (*DeleteScrapeConfigResponse, error) + type ApiDeleteScrapeConfigsRequest struct + ApiService DefaultAPI + func (r ApiDeleteScrapeConfigsRequest) Execute() (*ScrapeConfigsResponse, error) + func (r ApiDeleteScrapeConfigsRequest) JobName(jobName []string) ApiDeleteScrapeConfigsRequest + type ApiGetAlertConfigReceiverRequest struct + ApiService DefaultAPI + func (r ApiGetAlertConfigReceiverRequest) Execute() (*Receiver, error) + type ApiGetAlertConfigRouteRequest struct + ApiService DefaultAPI + func (r ApiGetAlertConfigRouteRequest) Execute() (*AlertConfigRouteResponse, error) + type ApiGetAlertConfigsRequest struct + ApiService DefaultAPI + func (r ApiGetAlertConfigsRequest) Execute() (*GetAlertConfigsResponse, error) + type ApiGetAlertRecordRequest struct + ApiService DefaultAPI + func (r ApiGetAlertRecordRequest) Execute() (*AlertRecordResponse, error) + type ApiGetAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiGetAlertgroupRequest) Execute() (*AlertGroupResponse, error) + type ApiGetAlertruleRequest struct + ApiService DefaultAPI + func (r ApiGetAlertruleRequest) Execute() (*AlertRuleResponse, error) + type ApiGetCredentialsRemoteWriteConfigRequest struct + ApiService DefaultAPI + func (r ApiGetCredentialsRemoteWriteConfigRequest) Execute() (*CredentialsRemoteWriteConfig, error) + type ApiGetCredentialsRequest struct + ApiService DefaultAPI + func (r ApiGetCredentialsRequest) Execute() (*GetCredentialsResponse, error) + type ApiGetGrafanaConfigsRequest struct + ApiService DefaultAPI + func (r ApiGetGrafanaConfigsRequest) Execute() (*GrafanaConfigs, error) + type ApiGetInstanceRequest struct + ApiService DefaultAPI + func (r ApiGetInstanceRequest) Execute() (*GetInstanceResponse, error) + type ApiGetLogsAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiGetLogsAlertgroupRequest) Execute() (*AlertGroupResponse, error) + type ApiGetLogsConfigsRequest struct + ApiService DefaultAPI + func (r ApiGetLogsConfigsRequest) Execute() (*LogsConfigResponse, error) + type ApiGetMetricsStorageRetentionRequest struct + ApiService DefaultAPI + func (r ApiGetMetricsStorageRetentionRequest) Execute() (*GetMetricsStorageRetentionResponse, error) + type ApiGetScrapeConfigRequest struct + ApiService DefaultAPI + func (r ApiGetScrapeConfigRequest) Execute() (*GetScrapeConfigResponse, error) + type ApiGetTracesConfigsRequest struct + ApiService DefaultAPI + func (r ApiGetTracesConfigsRequest) Execute() (*TracesConfigResponse, error) + type ApiListACLRequest struct + ApiService DefaultAPI + func (r ApiListACLRequest) Execute() (*ListACLResponse, error) + type ApiListAlertConfigReceiversRequest struct + ApiService DefaultAPI + func (r ApiListAlertConfigReceiversRequest) Execute() (*AlertConfigReceiversResponse, error) + type ApiListAlertConfigRoutesRequest struct + ApiService DefaultAPI + func (r ApiListAlertConfigRoutesRequest) Execute() (*AlertConfigRouteResponse, error) + type ApiListAlertRecordsRequest struct + ApiService DefaultAPI + func (r ApiListAlertRecordsRequest) Execute() (*AlertRecordsResponse, error) + type ApiListAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiListAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + type ApiListAlertrulesRequest struct + ApiService DefaultAPI + func (r ApiListAlertrulesRequest) Execute() (*AlertRulesResponse, error) + type ApiListBackupRetentionsRequest struct + ApiService DefaultAPI + func (r ApiListBackupRetentionsRequest) Execute() (*BackupRetentionResponse, error) + type ApiListBackupSchedulesRequest struct + ApiService DefaultAPI + func (r ApiListBackupSchedulesRequest) BackupTarget(backupTarget []string) ApiListBackupSchedulesRequest + func (r ApiListBackupSchedulesRequest) Execute() (*BackupScheduleResponse, error) + type ApiListBackupsRequest struct + ApiService DefaultAPI + func (r ApiListBackupsRequest) BackupTarget(backupTarget []string) ApiListBackupsRequest + func (r ApiListBackupsRequest) Execute() (*BackupResponse, error) + type ApiListCertChecksRequest struct + ApiService DefaultAPI + func (r ApiListCertChecksRequest) Execute() (*CertCheckResponse, error) + type ApiListCredentialsRequest struct + ApiService DefaultAPI + func (r ApiListCredentialsRequest) Execute() (*ListCredentialsResponse, error) + type ApiListElasticsearchChecksRequest struct + ApiService DefaultAPI + func (r ApiListElasticsearchChecksRequest) Execute() (*ElasticsearchCheckResponse, error) + type ApiListHttpChecksRequest struct + ApiService DefaultAPI + func (r ApiListHttpChecksRequest) Execute() (*HttpCheckResponse, error) + type ApiListInstancesRequest struct + ApiService DefaultAPI + func (r ApiListInstancesRequest) Execute() (*ListInstancesResponse, error) + type ApiListLogsAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiListLogsAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + type ApiListMongodbChecksRequest struct + ApiService DefaultAPI + func (r ApiListMongodbChecksRequest) Execute() (*MongodbCheckResponse, error) + type ApiListMysqlChecksRequest struct + ApiService DefaultAPI + func (r ApiListMysqlChecksRequest) Execute() (*MysqlCheckResponse, error) + type ApiListNetworkChecksRequest struct + ApiService DefaultAPI + func (r ApiListNetworkChecksRequest) Execute() (*NetworkCheckResponse, error) + type ApiListOfferingsRequest struct + ApiService DefaultAPI + func (r ApiListOfferingsRequest) Execute() (*Offerings, error) + type ApiListPingChecksRequest struct + ApiService DefaultAPI + func (r ApiListPingChecksRequest) Execute() (*PingCheckResponse, error) + type ApiListPlansRequest struct + ApiService DefaultAPI + func (r ApiListPlansRequest) Execute() (*PlansResponse, error) + type ApiListPostgresqlChecksRequest struct + ApiService DefaultAPI + func (r ApiListPostgresqlChecksRequest) Execute() (*PostgresqlCheckResponse, error) + type ApiListRabbitmqChecksRequest struct + ApiService DefaultAPI + func (r ApiListRabbitmqChecksRequest) Execute() (*RabbitmqCheckResponse, error) + type ApiListRedisChecksRequest struct + ApiService DefaultAPI + func (r ApiListRedisChecksRequest) Execute() (*RedisCheckResponse, error) + type ApiListScrapeConfigsRequest struct + ApiService DefaultAPI + func (r ApiListScrapeConfigsRequest) Execute() (*ListScrapeConfigsResponse, error) + type ApiPartialUpdateAlertRecordsRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateAlertRecordsRequest) Execute() (*AlertRecordsResponse, error) + func (r ApiPartialUpdateAlertRecordsRequest) PartialUpdateAlertRecordsRequestInner(partialUpdateAlertRecordsRequestInner []PartialUpdateAlertRecordsRequestInner) ApiPartialUpdateAlertRecordsRequest + type ApiPartialUpdateAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + func (r ApiPartialUpdateAlertgroupsRequest) PartialUpdateAlertgroupsRequestInner(partialUpdateAlertgroupsRequestInner []PartialUpdateAlertgroupsRequestInner) ApiPartialUpdateAlertgroupsRequest + type ApiPartialUpdateAlertrulesRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateAlertrulesRequest) Execute() (*AlertRulesResponse, error) + func (r ApiPartialUpdateAlertrulesRequest) PartialUpdateAlertrulesRequestInner(partialUpdateAlertrulesRequestInner []PartialUpdateAlertrulesRequestInner) ApiPartialUpdateAlertrulesRequest + type ApiPartialUpdateScrapeConfigsRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateScrapeConfigsRequest) Execute() (*ScrapeConfigsResponse, error) + func (r ApiPartialUpdateScrapeConfigsRequest) PartialUpdateScrapeConfigsRequestInner(...) ApiPartialUpdateScrapeConfigsRequest + type ApiRestoreBackupRequest struct + ApiService DefaultAPI + func (r ApiRestoreBackupRequest) Execute() (*Message, error) + func (r ApiRestoreBackupRequest) RestoreTarget(restoreTarget string) ApiRestoreBackupRequest + type ApiUpdateACLRequest struct + ApiService DefaultAPI + func (r ApiUpdateACLRequest) Execute() (*Message, error) + func (r ApiUpdateACLRequest) UpdateACLPayload(updateACLPayload UpdateACLPayload) ApiUpdateACLRequest + type ApiUpdateAlertConfigReceiverRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertConfigReceiverRequest) Execute() (*AlertConfigReceiversResponse, error) + func (r ApiUpdateAlertConfigReceiverRequest) UpdateAlertConfigReceiverPayload(updateAlertConfigReceiverPayload UpdateAlertConfigReceiverPayload) ApiUpdateAlertConfigReceiverRequest + type ApiUpdateAlertConfigRouteRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertConfigRouteRequest) Execute() (*AlertConfigRouteResponse, error) + func (r ApiUpdateAlertConfigRouteRequest) UpdateAlertConfigRoutePayload(updateAlertConfigRoutePayload UpdateAlertConfigRoutePayload) ApiUpdateAlertConfigRouteRequest + type ApiUpdateAlertConfigsRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertConfigsRequest) Execute() (*UpdateAlertConfigsResponse, error) + func (r ApiUpdateAlertConfigsRequest) UpdateAlertConfigsPayload(updateAlertConfigsPayload UpdateAlertConfigsPayload) ApiUpdateAlertConfigsRequest + type ApiUpdateAlertRecordRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertRecordRequest) Execute() (*AlertRecordsResponse, error) + func (r ApiUpdateAlertRecordRequest) UpdateAlertRecordPayload(updateAlertRecordPayload UpdateAlertRecordPayload) ApiUpdateAlertRecordRequest + type ApiUpdateAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertgroupRequest) Execute() (*AlertGroupsResponse, error) + func (r ApiUpdateAlertgroupRequest) UpdateAlertgroupPayload(updateAlertgroupPayload UpdateAlertgroupPayload) ApiUpdateAlertgroupRequest + type ApiUpdateAlertgroupsRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertgroupsRequest) Execute() (*AlertGroupsResponse, error) + func (r ApiUpdateAlertgroupsRequest) UpdateAlertgroupsRequestInner(updateAlertgroupsRequestInner []UpdateAlertgroupsRequestInner) ApiUpdateAlertgroupsRequest + type ApiUpdateAlertruleRequest struct + ApiService DefaultAPI + func (r ApiUpdateAlertruleRequest) Execute() (*AlertRulesResponse, error) + func (r ApiUpdateAlertruleRequest) UpdateAlertrulePayload(updateAlertrulePayload UpdateAlertrulePayload) ApiUpdateAlertruleRequest + type ApiUpdateCredentialsRemoteWriteConfigRequest struct + ApiService DefaultAPI + func (r ApiUpdateCredentialsRemoteWriteConfigRequest) Execute() (*CredentialsRemoteWriteConfig, error) + func (r ApiUpdateCredentialsRemoteWriteConfigRequest) UpdateCredentialsRemoteWriteConfigPayload(...) ApiUpdateCredentialsRemoteWriteConfigRequest + type ApiUpdateGrafanaConfigsRequest struct + ApiService DefaultAPI + func (r ApiUpdateGrafanaConfigsRequest) Execute() (*Message, error) + func (r ApiUpdateGrafanaConfigsRequest) UpdateGrafanaConfigsPayload(updateGrafanaConfigsPayload UpdateGrafanaConfigsPayload) ApiUpdateGrafanaConfigsRequest + type ApiUpdateInstanceRequest struct + ApiService DefaultAPI + func (r ApiUpdateInstanceRequest) Execute() (*InstanceResponse, error) + func (r ApiUpdateInstanceRequest) UpdateInstancePayload(updateInstancePayload UpdateInstancePayload) ApiUpdateInstanceRequest + type ApiUpdateLogsAlertgroupRequest struct + ApiService DefaultAPI + func (r ApiUpdateLogsAlertgroupRequest) Execute() (*AlertGroupsResponse, error) + func (r ApiUpdateLogsAlertgroupRequest) UpdateLogsAlertgroupPayload(updateLogsAlertgroupPayload UpdateLogsAlertgroupPayload) ApiUpdateLogsAlertgroupRequest + type ApiUpdateLogsConfigsRequest struct + ApiService DefaultAPI + func (r ApiUpdateLogsConfigsRequest) Execute() (*Message, error) + func (r ApiUpdateLogsConfigsRequest) UpdateLogsConfigsPayload(updateLogsConfigsPayload UpdateLogsConfigsPayload) ApiUpdateLogsConfigsRequest + type ApiUpdateMetricsStorageRetentionRequest struct + ApiService DefaultAPI + func (r ApiUpdateMetricsStorageRetentionRequest) Execute() (*Message, error) + func (r ApiUpdateMetricsStorageRetentionRequest) UpdateMetricsStorageRetentionPayload(updateMetricsStorageRetentionPayload UpdateMetricsStorageRetentionPayload) ApiUpdateMetricsStorageRetentionRequest + type ApiUpdateScrapeConfigRequest struct + ApiService DefaultAPI + func (r ApiUpdateScrapeConfigRequest) Execute() (*ScrapeConfigsResponse, error) + func (r ApiUpdateScrapeConfigRequest) UpdateScrapeConfigPayload(updateScrapeConfigPayload UpdateScrapeConfigPayload) ApiUpdateScrapeConfigRequest + type ApiUpdateTracesConfigsRequest struct + ApiService DefaultAPI + func (r ApiUpdateTracesConfigsRequest) Execute() (*Message, error) + func (r ApiUpdateTracesConfigsRequest) UpdateTracesConfigsPayload(updateTracesConfigsPayload UpdateTracesConfigsPayload) ApiUpdateTracesConfigsRequest + type BackupResponse struct + AlertConfigBackups []string + AlertRulesBackups []string + GrafanaBackups []string + Message string + ScrapeConfigBackups []string + func NewBackupResponse(alertConfigBackups []string, alertRulesBackups []string, ...) *BackupResponse + func NewBackupResponseWithDefaults() *BackupResponse + func (o *BackupResponse) GetAlertConfigBackups() []string + func (o *BackupResponse) GetAlertConfigBackupsOk() ([]string, bool) + func (o *BackupResponse) GetAlertRulesBackups() []string + func (o *BackupResponse) GetAlertRulesBackupsOk() ([]string, bool) + func (o *BackupResponse) GetGrafanaBackups() []string + func (o *BackupResponse) GetGrafanaBackupsOk() ([]string, bool) + func (o *BackupResponse) GetMessage() string + func (o *BackupResponse) GetMessageOk() (*string, bool) + func (o *BackupResponse) GetScrapeConfigBackups() []string + func (o *BackupResponse) GetScrapeConfigBackupsOk() ([]string, bool) + func (o *BackupResponse) SetAlertConfigBackups(v []string) + func (o *BackupResponse) SetAlertRulesBackups(v []string) + func (o *BackupResponse) SetGrafanaBackups(v []string) + func (o *BackupResponse) SetMessage(v string) + func (o *BackupResponse) SetScrapeConfigBackups(v []string) + func (o *BackupResponse) UnmarshalJSON(data []byte) (err error) + func (o BackupResponse) MarshalJSON() ([]byte, error) + func (o BackupResponse) ToMap() (map[string]interface{}, error) + type BackupRetentionResponse struct + AlertConfigBackupRetention string + AlertRulesBackupRetention string + GrafanaBackupRetention string + Message string + ScrapeConfigBackupRetention string + func NewBackupRetentionResponse(alertConfigBackupRetention string, alertRulesBackupRetention string, ...) *BackupRetentionResponse + func NewBackupRetentionResponseWithDefaults() *BackupRetentionResponse + func (o *BackupRetentionResponse) GetAlertConfigBackupRetention() string + func (o *BackupRetentionResponse) GetAlertConfigBackupRetentionOk() (*string, bool) + func (o *BackupRetentionResponse) GetAlertRulesBackupRetention() string + func (o *BackupRetentionResponse) GetAlertRulesBackupRetentionOk() (*string, bool) + func (o *BackupRetentionResponse) GetGrafanaBackupRetention() string + func (o *BackupRetentionResponse) GetGrafanaBackupRetentionOk() (*string, bool) + func (o *BackupRetentionResponse) GetMessage() string + func (o *BackupRetentionResponse) GetMessageOk() (*string, bool) + func (o *BackupRetentionResponse) GetScrapeConfigBackupRetention() string + func (o *BackupRetentionResponse) GetScrapeConfigBackupRetentionOk() (*string, bool) + func (o *BackupRetentionResponse) SetAlertConfigBackupRetention(v string) + func (o *BackupRetentionResponse) SetAlertRulesBackupRetention(v string) + func (o *BackupRetentionResponse) SetGrafanaBackupRetention(v string) + func (o *BackupRetentionResponse) SetMessage(v string) + func (o *BackupRetentionResponse) SetScrapeConfigBackupRetention(v string) + func (o *BackupRetentionResponse) UnmarshalJSON(data []byte) (err error) + func (o BackupRetentionResponse) MarshalJSON() ([]byte, error) + func (o BackupRetentionResponse) ToMap() (map[string]interface{}, error) + type BackupSchedule struct + Schedule string + ScheduleId string + func NewBackupSchedule(schedule string, scheduleId string) *BackupSchedule + func NewBackupScheduleWithDefaults() *BackupSchedule + func (o *BackupSchedule) GetSchedule() string + func (o *BackupSchedule) GetScheduleId() string + func (o *BackupSchedule) GetScheduleIdOk() (*string, bool) + func (o *BackupSchedule) GetScheduleOk() (*string, bool) + func (o *BackupSchedule) SetSchedule(v string) + func (o *BackupSchedule) SetScheduleId(v string) + func (o *BackupSchedule) UnmarshalJSON(data []byte) (err error) + func (o BackupSchedule) MarshalJSON() ([]byte, error) + func (o BackupSchedule) ToMap() (map[string]interface{}, error) + type BackupSchedulePostResponse struct + Message string + Schedule string + func NewBackupSchedulePostResponse(message string, schedule string) *BackupSchedulePostResponse + func NewBackupSchedulePostResponseWithDefaults() *BackupSchedulePostResponse + func (o *BackupSchedulePostResponse) GetMessage() string + func (o *BackupSchedulePostResponse) GetMessageOk() (*string, bool) + func (o *BackupSchedulePostResponse) GetSchedule() string + func (o *BackupSchedulePostResponse) GetScheduleOk() (*string, bool) + func (o *BackupSchedulePostResponse) SetMessage(v string) + func (o *BackupSchedulePostResponse) SetSchedule(v string) + func (o *BackupSchedulePostResponse) UnmarshalJSON(data []byte) (err error) + func (o BackupSchedulePostResponse) MarshalJSON() ([]byte, error) + func (o BackupSchedulePostResponse) ToMap() (map[string]interface{}, error) + type BackupScheduleResponse struct + AlertConfigBackupSchedules []BackupSchedule + AlertRulesBackupSchedules []BackupSchedule + GrafanaBackupSchedules []BackupSchedule + Message string + ScrapeConfigBackupSchedules []BackupSchedule + func NewBackupScheduleResponse(message string) *BackupScheduleResponse + func NewBackupScheduleResponseWithDefaults() *BackupScheduleResponse + func (o *BackupScheduleResponse) GetAlertConfigBackupSchedules() []BackupSchedule + func (o *BackupScheduleResponse) GetAlertConfigBackupSchedulesOk() ([]BackupSchedule, bool) + func (o *BackupScheduleResponse) GetAlertRulesBackupSchedules() []BackupSchedule + func (o *BackupScheduleResponse) GetAlertRulesBackupSchedulesOk() ([]BackupSchedule, bool) + func (o *BackupScheduleResponse) GetGrafanaBackupSchedules() []BackupSchedule + func (o *BackupScheduleResponse) GetGrafanaBackupSchedulesOk() ([]BackupSchedule, bool) + func (o *BackupScheduleResponse) GetMessage() string + func (o *BackupScheduleResponse) GetMessageOk() (*string, bool) + func (o *BackupScheduleResponse) GetScrapeConfigBackupSchedules() []BackupSchedule + func (o *BackupScheduleResponse) GetScrapeConfigBackupSchedulesOk() ([]BackupSchedule, bool) + func (o *BackupScheduleResponse) HasAlertConfigBackupSchedules() bool + func (o *BackupScheduleResponse) HasAlertRulesBackupSchedules() bool + func (o *BackupScheduleResponse) HasGrafanaBackupSchedules() bool + func (o *BackupScheduleResponse) HasScrapeConfigBackupSchedules() bool + func (o *BackupScheduleResponse) SetAlertConfigBackupSchedules(v []BackupSchedule) + func (o *BackupScheduleResponse) SetAlertRulesBackupSchedules(v []BackupSchedule) + func (o *BackupScheduleResponse) SetGrafanaBackupSchedules(v []BackupSchedule) + func (o *BackupScheduleResponse) SetMessage(v string) + func (o *BackupScheduleResponse) SetScrapeConfigBackupSchedules(v []BackupSchedule) + func (o *BackupScheduleResponse) UnmarshalJSON(data []byte) (err error) + func (o BackupScheduleResponse) MarshalJSON() ([]byte, error) + func (o BackupScheduleResponse) ToMap() (map[string]interface{}, error) + type BasicAuth struct + Password string + Username string + func NewBasicAuth(password string, username string) *BasicAuth + func NewBasicAuthWithDefaults() *BasicAuth + func (o *BasicAuth) GetPassword() string + func (o *BasicAuth) GetPasswordOk() (*string, bool) + func (o *BasicAuth) GetUsername() string + func (o *BasicAuth) GetUsernameOk() (*string, bool) + func (o *BasicAuth) SetPassword(v string) + func (o *BasicAuth) SetUsername(v string) + func (o *BasicAuth) UnmarshalJSON(data []byte) (err error) + func (o BasicAuth) MarshalJSON() ([]byte, error) + func (o BasicAuth) ToMap() (map[string]interface{}, error) + type CertCheckChildResponse struct + Id string + Source string + func NewCertCheckChildResponse(id string, source string) *CertCheckChildResponse + func NewCertCheckChildResponseWithDefaults() *CertCheckChildResponse + func (o *CertCheckChildResponse) GetId() string + func (o *CertCheckChildResponse) GetIdOk() (*string, bool) + func (o *CertCheckChildResponse) GetSource() string + func (o *CertCheckChildResponse) GetSourceOk() (*string, bool) + func (o *CertCheckChildResponse) SetId(v string) + func (o *CertCheckChildResponse) SetSource(v string) + func (o *CertCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o CertCheckChildResponse) MarshalJSON() ([]byte, error) + func (o CertCheckChildResponse) ToMap() (map[string]interface{}, error) + type CertCheckResponse struct + CertCheck *CertCheckChildResponse + CertChecks []CertCheckChildResponse + Message string + func NewCertCheckResponse(certChecks []CertCheckChildResponse, message string) *CertCheckResponse + func NewCertCheckResponseWithDefaults() *CertCheckResponse + func (o *CertCheckResponse) GetCertCheck() CertCheckChildResponse + func (o *CertCheckResponse) GetCertCheckOk() (*CertCheckChildResponse, bool) + func (o *CertCheckResponse) GetCertChecks() []CertCheckChildResponse + func (o *CertCheckResponse) GetCertChecksOk() ([]CertCheckChildResponse, bool) + func (o *CertCheckResponse) GetMessage() string + func (o *CertCheckResponse) GetMessageOk() (*string, bool) + func (o *CertCheckResponse) HasCertCheck() bool + func (o *CertCheckResponse) SetCertCheck(v CertCheckChildResponse) + func (o *CertCheckResponse) SetCertChecks(v []CertCheckChildResponse) + func (o *CertCheckResponse) SetMessage(v string) + func (o *CertCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o CertCheckResponse) MarshalJSON() ([]byte, error) + func (o CertCheckResponse) ToMap() (map[string]interface{}, error) + type CreateAlertConfigReceiverPayload struct + EmailConfigs []CreateAlertConfigReceiverPayloadEmailConfigsInner + Name string + OpsgenieConfigs []CreateAlertConfigReceiverPayloadOpsgenieConfigsInner + WebHookConfigs []CreateAlertConfigReceiverPayloadWebHookConfigsInner + func NewCreateAlertConfigReceiverPayload(name string) *CreateAlertConfigReceiverPayload + func NewCreateAlertConfigReceiverPayloadWithDefaults() *CreateAlertConfigReceiverPayload + func (o *CreateAlertConfigReceiverPayload) GetEmailConfigs() []CreateAlertConfigReceiverPayloadEmailConfigsInner + func (o *CreateAlertConfigReceiverPayload) GetEmailConfigsOk() ([]CreateAlertConfigReceiverPayloadEmailConfigsInner, bool) + func (o *CreateAlertConfigReceiverPayload) GetName() string + func (o *CreateAlertConfigReceiverPayload) GetNameOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayload) GetOpsgenieConfigs() []CreateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (o *CreateAlertConfigReceiverPayload) GetOpsgenieConfigsOk() ([]CreateAlertConfigReceiverPayloadOpsgenieConfigsInner, bool) + func (o *CreateAlertConfigReceiverPayload) GetWebHookConfigs() []CreateAlertConfigReceiverPayloadWebHookConfigsInner + func (o *CreateAlertConfigReceiverPayload) GetWebHookConfigsOk() ([]CreateAlertConfigReceiverPayloadWebHookConfigsInner, bool) + func (o *CreateAlertConfigReceiverPayload) HasEmailConfigs() bool + func (o *CreateAlertConfigReceiverPayload) HasOpsgenieConfigs() bool + func (o *CreateAlertConfigReceiverPayload) HasWebHookConfigs() bool + func (o *CreateAlertConfigReceiverPayload) SetEmailConfigs(v []CreateAlertConfigReceiverPayloadEmailConfigsInner) + func (o *CreateAlertConfigReceiverPayload) SetName(v string) + func (o *CreateAlertConfigReceiverPayload) SetOpsgenieConfigs(v []CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) + func (o *CreateAlertConfigReceiverPayload) SetWebHookConfigs(v []CreateAlertConfigReceiverPayloadWebHookConfigsInner) + func (o *CreateAlertConfigReceiverPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertConfigReceiverPayload) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigReceiverPayload) ToMap() (map[string]interface{}, error) + type CreateAlertConfigReceiverPayloadEmailConfigsInner struct + AuthIdentity *string + AuthPassword *string + AuthUsername *string + From *string + SendResolved *bool + Smarthost *string + To *string + func NewCreateAlertConfigReceiverPayloadEmailConfigsInner() *CreateAlertConfigReceiverPayloadEmailConfigsInner + func NewCreateAlertConfigReceiverPayloadEmailConfigsInnerWithDefaults() *CreateAlertConfigReceiverPayloadEmailConfigsInner + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthIdentity() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthIdentityOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthPassword() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthPasswordOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthUsername() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthUsernameOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetFrom() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetFromOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetSmarthost() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetSmarthostOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetTo() string + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) GetToOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthIdentity() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthPassword() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthUsername() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasFrom() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasSmarthost() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) HasTo() bool + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthIdentity(v string) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthPassword(v string) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthUsername(v string) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetFrom(v string) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetSendResolved(v bool) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetSmarthost(v string) + func (o *CreateAlertConfigReceiverPayloadEmailConfigsInner) SetTo(v string) + func (o CreateAlertConfigReceiverPayloadEmailConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigReceiverPayloadEmailConfigsInner) ToMap() (map[string]interface{}, error) + type CreateAlertConfigReceiverPayloadOpsgenieConfigsInner struct + ApiKey *string + ApiUrl *string + Priority *string + SendResolved *bool + Tags *string + func NewCreateAlertConfigReceiverPayloadOpsgenieConfigsInner() *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner + func NewCreateAlertConfigReceiverPayloadOpsgenieConfigsInnerWithDefaults() *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiKey() string + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiKeyOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiUrl() string + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiUrlOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetPriority() string + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetPriorityOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetTags() string + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetTagsOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasApiKey() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasApiUrl() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasPriority() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasTags() bool + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetApiKey(v string) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetApiUrl(v string) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetPriority(v string) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetSendResolved(v bool) + func (o *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetTags(v string) + func (o CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) ToMap() (map[string]interface{}, error) + type CreateAlertConfigReceiverPayloadWebHookConfigsInner struct + GoogleChat *bool + MsTeams *bool + SendResolved *bool + Url *string + func NewCreateAlertConfigReceiverPayloadWebHookConfigsInner() *CreateAlertConfigReceiverPayloadWebHookConfigsInner + func NewCreateAlertConfigReceiverPayloadWebHookConfigsInnerWithDefaults() *CreateAlertConfigReceiverPayloadWebHookConfigsInner + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetGoogleChat() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetGoogleChatOk() (*bool, bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetMsTeams() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetMsTeamsOk() (*bool, bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetUrl() string + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) GetUrlOk() (*string, bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) HasGoogleChat() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) HasMsTeams() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) HasSendResolved() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) HasUrl() bool + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) SetGoogleChat(v bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) SetMsTeams(v bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) SetSendResolved(v bool) + func (o *CreateAlertConfigReceiverPayloadWebHookConfigsInner) SetUrl(v string) + func (o CreateAlertConfigReceiverPayloadWebHookConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigReceiverPayloadWebHookConfigsInner) ToMap() (map[string]interface{}, error) + type CreateAlertConfigRoutePayload struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Matchers []string + Receiver string + RepeatInterval *string + Routes []CreateAlertConfigRoutePayloadRoutesInner + func NewCreateAlertConfigRoutePayload(receiver string) *CreateAlertConfigRoutePayload + func NewCreateAlertConfigRoutePayloadWithDefaults() *CreateAlertConfigRoutePayload + func (o *CreateAlertConfigRoutePayload) GetContinue() bool + func (o *CreateAlertConfigRoutePayload) GetContinueOk() (*bool, bool) + func (o *CreateAlertConfigRoutePayload) GetGroupBy() []string + func (o *CreateAlertConfigRoutePayload) GetGroupByOk() ([]string, bool) + func (o *CreateAlertConfigRoutePayload) GetGroupInterval() string + func (o *CreateAlertConfigRoutePayload) GetGroupIntervalOk() (*string, bool) + func (o *CreateAlertConfigRoutePayload) GetGroupWait() string + func (o *CreateAlertConfigRoutePayload) GetGroupWaitOk() (*string, bool) + func (o *CreateAlertConfigRoutePayload) GetMatch() map[string]interface{} + func (o *CreateAlertConfigRoutePayload) GetMatchOk() (map[string]interface{}, bool) + func (o *CreateAlertConfigRoutePayload) GetMatchRe() map[string]interface{} + func (o *CreateAlertConfigRoutePayload) GetMatchReOk() (map[string]interface{}, bool) + func (o *CreateAlertConfigRoutePayload) GetMatchers() []string + func (o *CreateAlertConfigRoutePayload) GetMatchersOk() ([]string, bool) + func (o *CreateAlertConfigRoutePayload) GetReceiver() string + func (o *CreateAlertConfigRoutePayload) GetReceiverOk() (*string, bool) + func (o *CreateAlertConfigRoutePayload) GetRepeatInterval() string + func (o *CreateAlertConfigRoutePayload) GetRepeatIntervalOk() (*string, bool) + func (o *CreateAlertConfigRoutePayload) GetRoutes() []CreateAlertConfigRoutePayloadRoutesInner + func (o *CreateAlertConfigRoutePayload) GetRoutesOk() ([]CreateAlertConfigRoutePayloadRoutesInner, bool) + func (o *CreateAlertConfigRoutePayload) HasContinue() bool + func (o *CreateAlertConfigRoutePayload) HasGroupBy() bool + func (o *CreateAlertConfigRoutePayload) HasGroupInterval() bool + func (o *CreateAlertConfigRoutePayload) HasGroupWait() bool + func (o *CreateAlertConfigRoutePayload) HasMatch() bool + func (o *CreateAlertConfigRoutePayload) HasMatchRe() bool + func (o *CreateAlertConfigRoutePayload) HasMatchers() bool + func (o *CreateAlertConfigRoutePayload) HasRepeatInterval() bool + func (o *CreateAlertConfigRoutePayload) HasRoutes() bool + func (o *CreateAlertConfigRoutePayload) SetContinue(v bool) + func (o *CreateAlertConfigRoutePayload) SetGroupBy(v []string) + func (o *CreateAlertConfigRoutePayload) SetGroupInterval(v string) + func (o *CreateAlertConfigRoutePayload) SetGroupWait(v string) + func (o *CreateAlertConfigRoutePayload) SetMatch(v map[string]interface{}) + func (o *CreateAlertConfigRoutePayload) SetMatchRe(v map[string]interface{}) + func (o *CreateAlertConfigRoutePayload) SetMatchers(v []string) + func (o *CreateAlertConfigRoutePayload) SetReceiver(v string) + func (o *CreateAlertConfigRoutePayload) SetRepeatInterval(v string) + func (o *CreateAlertConfigRoutePayload) SetRoutes(v []CreateAlertConfigRoutePayloadRoutesInner) + func (o *CreateAlertConfigRoutePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertConfigRoutePayload) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigRoutePayload) ToMap() (map[string]interface{}, error) + type CreateAlertConfigRoutePayloadRoutesInner struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Matchers []string + Receiver *string + RepeatInterval *string + Routes []map[string]interface{} + func NewCreateAlertConfigRoutePayloadRoutesInner() *CreateAlertConfigRoutePayloadRoutesInner + func NewCreateAlertConfigRoutePayloadRoutesInnerWithDefaults() *CreateAlertConfigRoutePayloadRoutesInner + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetContinue() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetContinueOk() (*bool, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupBy() []string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupByOk() ([]string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupInterval() string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupIntervalOk() (*string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupWait() string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetGroupWaitOk() (*string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatch() map[string]interface{} + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatchOk() (map[string]interface{}, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatchRe() map[string]interface{} + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatchReOk() (map[string]interface{}, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatchers() []string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetMatchersOk() ([]string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetReceiver() string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetReceiverOk() (*string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetRepeatInterval() string + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetRepeatIntervalOk() (*string, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetRoutes() []map[string]interface{} + func (o *CreateAlertConfigRoutePayloadRoutesInner) GetRoutesOk() ([]map[string]interface{}, bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasContinue() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasGroupBy() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasGroupInterval() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasGroupWait() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasMatch() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasMatchRe() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasMatchers() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasReceiver() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasRepeatInterval() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) HasRoutes() bool + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetContinue(v bool) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetGroupBy(v []string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetGroupInterval(v string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetGroupWait(v string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetMatch(v map[string]interface{}) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetMatchRe(v map[string]interface{}) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetMatchers(v []string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetReceiver(v string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetRepeatInterval(v string) + func (o *CreateAlertConfigRoutePayloadRoutesInner) SetRoutes(v []map[string]interface{}) + func (o CreateAlertConfigRoutePayloadRoutesInner) MarshalJSON() ([]byte, error) + func (o CreateAlertConfigRoutePayloadRoutesInner) ToMap() (map[string]interface{}, error) + type CreateAlertRecordPayload struct + Expr string + Labels map[string]interface{} + Record string + func NewCreateAlertRecordPayload(expr string, record string) *CreateAlertRecordPayload + func NewCreateAlertRecordPayloadWithDefaults() *CreateAlertRecordPayload + func (o *CreateAlertRecordPayload) GetExpr() string + func (o *CreateAlertRecordPayload) GetExprOk() (*string, bool) + func (o *CreateAlertRecordPayload) GetLabels() map[string]interface{} + func (o *CreateAlertRecordPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateAlertRecordPayload) GetRecord() string + func (o *CreateAlertRecordPayload) GetRecordOk() (*string, bool) + func (o *CreateAlertRecordPayload) HasLabels() bool + func (o *CreateAlertRecordPayload) SetExpr(v string) + func (o *CreateAlertRecordPayload) SetLabels(v map[string]interface{}) + func (o *CreateAlertRecordPayload) SetRecord(v string) + func (o *CreateAlertRecordPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertRecordPayload) MarshalJSON() ([]byte, error) + func (o CreateAlertRecordPayload) ToMap() (map[string]interface{}, error) + type CreateAlertgroupsPayload struct + Interval *string + Name string + Rules []CreateAlertgroupsPayloadRulesInner + func NewCreateAlertgroupsPayload(name string, rules []CreateAlertgroupsPayloadRulesInner) *CreateAlertgroupsPayload + func NewCreateAlertgroupsPayloadWithDefaults() *CreateAlertgroupsPayload + func (o *CreateAlertgroupsPayload) GetInterval() string + func (o *CreateAlertgroupsPayload) GetIntervalOk() (*string, bool) + func (o *CreateAlertgroupsPayload) GetName() string + func (o *CreateAlertgroupsPayload) GetNameOk() (*string, bool) + func (o *CreateAlertgroupsPayload) GetRules() []CreateAlertgroupsPayloadRulesInner + func (o *CreateAlertgroupsPayload) GetRulesOk() ([]CreateAlertgroupsPayloadRulesInner, bool) + func (o *CreateAlertgroupsPayload) HasInterval() bool + func (o *CreateAlertgroupsPayload) SetInterval(v string) + func (o *CreateAlertgroupsPayload) SetName(v string) + func (o *CreateAlertgroupsPayload) SetRules(v []CreateAlertgroupsPayloadRulesInner) + func (o *CreateAlertgroupsPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertgroupsPayload) MarshalJSON() ([]byte, error) + func (o CreateAlertgroupsPayload) ToMap() (map[string]interface{}, error) + type CreateAlertgroupsPayloadRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewCreateAlertgroupsPayloadRulesInner(expr string) *CreateAlertgroupsPayloadRulesInner + func NewCreateAlertgroupsPayloadRulesInnerWithDefaults() *CreateAlertgroupsPayloadRulesInner + func (o *CreateAlertgroupsPayloadRulesInner) GetAlert() string + func (o *CreateAlertgroupsPayloadRulesInner) GetAlertOk() (*string, bool) + func (o *CreateAlertgroupsPayloadRulesInner) GetAnnotations() map[string]interface{} + func (o *CreateAlertgroupsPayloadRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *CreateAlertgroupsPayloadRulesInner) GetExpr() string + func (o *CreateAlertgroupsPayloadRulesInner) GetExprOk() (*string, bool) + func (o *CreateAlertgroupsPayloadRulesInner) GetFor() string + func (o *CreateAlertgroupsPayloadRulesInner) GetForOk() (*string, bool) + func (o *CreateAlertgroupsPayloadRulesInner) GetLabels() map[string]interface{} + func (o *CreateAlertgroupsPayloadRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateAlertgroupsPayloadRulesInner) GetRecord() string + func (o *CreateAlertgroupsPayloadRulesInner) GetRecordOk() (*string, bool) + func (o *CreateAlertgroupsPayloadRulesInner) HasAlert() bool + func (o *CreateAlertgroupsPayloadRulesInner) HasAnnotations() bool + func (o *CreateAlertgroupsPayloadRulesInner) HasFor() bool + func (o *CreateAlertgroupsPayloadRulesInner) HasLabels() bool + func (o *CreateAlertgroupsPayloadRulesInner) HasRecord() bool + func (o *CreateAlertgroupsPayloadRulesInner) SetAlert(v string) + func (o *CreateAlertgroupsPayloadRulesInner) SetAnnotations(v map[string]interface{}) + func (o *CreateAlertgroupsPayloadRulesInner) SetExpr(v string) + func (o *CreateAlertgroupsPayloadRulesInner) SetFor(v string) + func (o *CreateAlertgroupsPayloadRulesInner) SetLabels(v map[string]interface{}) + func (o *CreateAlertgroupsPayloadRulesInner) SetRecord(v string) + func (o *CreateAlertgroupsPayloadRulesInner) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertgroupsPayloadRulesInner) MarshalJSON() ([]byte, error) + func (o CreateAlertgroupsPayloadRulesInner) ToMap() (map[string]interface{}, error) + type CreateAlertrulesPayload struct + Alert string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + func NewCreateAlertrulesPayload(alert string, expr string) *CreateAlertrulesPayload + func NewCreateAlertrulesPayloadWithDefaults() *CreateAlertrulesPayload + func (o *CreateAlertrulesPayload) GetAlert() string + func (o *CreateAlertrulesPayload) GetAlertOk() (*string, bool) + func (o *CreateAlertrulesPayload) GetAnnotations() map[string]interface{} + func (o *CreateAlertrulesPayload) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *CreateAlertrulesPayload) GetExpr() string + func (o *CreateAlertrulesPayload) GetExprOk() (*string, bool) + func (o *CreateAlertrulesPayload) GetFor() string + func (o *CreateAlertrulesPayload) GetForOk() (*string, bool) + func (o *CreateAlertrulesPayload) GetLabels() map[string]interface{} + func (o *CreateAlertrulesPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateAlertrulesPayload) HasAnnotations() bool + func (o *CreateAlertrulesPayload) HasFor() bool + func (o *CreateAlertrulesPayload) HasLabels() bool + func (o *CreateAlertrulesPayload) SetAlert(v string) + func (o *CreateAlertrulesPayload) SetAnnotations(v map[string]interface{}) + func (o *CreateAlertrulesPayload) SetExpr(v string) + func (o *CreateAlertrulesPayload) SetFor(v string) + func (o *CreateAlertrulesPayload) SetLabels(v map[string]interface{}) + func (o *CreateAlertrulesPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateAlertrulesPayload) MarshalJSON() ([]byte, error) + func (o CreateAlertrulesPayload) ToMap() (map[string]interface{}, error) + type CreateBackupSchedulePayload struct + Schedule string + func NewCreateBackupSchedulePayload(schedule string) *CreateBackupSchedulePayload + func NewCreateBackupSchedulePayloadWithDefaults() *CreateBackupSchedulePayload + func (o *CreateBackupSchedulePayload) GetSchedule() string + func (o *CreateBackupSchedulePayload) GetScheduleOk() (*string, bool) + func (o *CreateBackupSchedulePayload) SetSchedule(v string) + func (o *CreateBackupSchedulePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateBackupSchedulePayload) MarshalJSON() ([]byte, error) + func (o CreateBackupSchedulePayload) ToMap() (map[string]interface{}, error) + type CreateCertCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateCertCheck400Response(v *[]string) CreateCertCheck400Response + func MapmapOfStringarrayOfStringAsCreateCertCheck400Response(v *map[string][]string) CreateCertCheck400Response + func (dst *CreateCertCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateCertCheck400Response) GetActualInstance() interface{} + func (obj CreateCertCheck400Response) GetActualInstanceValue() interface{} + func (src CreateCertCheck400Response) MarshalJSON() ([]byte, error) + type CreateCertCheckPayload struct + Source string + func NewCreateCertCheckPayload(source string) *CreateCertCheckPayload + func NewCreateCertCheckPayloadWithDefaults() *CreateCertCheckPayload + func (o *CreateCertCheckPayload) GetSource() string + func (o *CreateCertCheckPayload) GetSourceOk() (*string, bool) + func (o *CreateCertCheckPayload) SetSource(v string) + func (o *CreateCertCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateCertCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateCertCheckPayload) ToMap() (map[string]interface{}, error) + type CreateCredentialsPayload struct + Description *string + func NewCreateCredentialsPayload() *CreateCredentialsPayload + func NewCreateCredentialsPayloadWithDefaults() *CreateCredentialsPayload + func (o *CreateCredentialsPayload) GetDescription() string + func (o *CreateCredentialsPayload) GetDescriptionOk() (*string, bool) + func (o *CreateCredentialsPayload) HasDescription() bool + func (o *CreateCredentialsPayload) SetDescription(v string) + func (o CreateCredentialsPayload) MarshalJSON() ([]byte, error) + func (o CreateCredentialsPayload) ToMap() (map[string]interface{}, error) + type CreateCredentialsResponse struct + Credentials Credentials + Message string + func NewCreateCredentialsResponse(credentials Credentials, message string) *CreateCredentialsResponse + func NewCreateCredentialsResponseWithDefaults() *CreateCredentialsResponse + func (o *CreateCredentialsResponse) GetCredentials() Credentials + func (o *CreateCredentialsResponse) GetCredentialsOk() (*Credentials, bool) + func (o *CreateCredentialsResponse) GetMessage() string + func (o *CreateCredentialsResponse) GetMessageOk() (*string, bool) + func (o *CreateCredentialsResponse) SetCredentials(v Credentials) + func (o *CreateCredentialsResponse) SetMessage(v string) + func (o *CreateCredentialsResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateCredentialsResponse) MarshalJSON() ([]byte, error) + func (o CreateCredentialsResponse) ToMap() (map[string]interface{}, error) + type CreateElasticsearchCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateElasticsearchCheck400Response(v *[]string) CreateElasticsearchCheck400Response + func MapmapOfStringarrayOfStringAsCreateElasticsearchCheck400Response(v *map[string][]string) CreateElasticsearchCheck400Response + func (dst *CreateElasticsearchCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateElasticsearchCheck400Response) GetActualInstance() interface{} + func (obj CreateElasticsearchCheck400Response) GetActualInstanceValue() interface{} + func (src CreateElasticsearchCheck400Response) MarshalJSON() ([]byte, error) + type CreateElasticsearchCheckPayload struct + Password *string + Server string + Username *string + func NewCreateElasticsearchCheckPayload(server string) *CreateElasticsearchCheckPayload + func NewCreateElasticsearchCheckPayloadWithDefaults() *CreateElasticsearchCheckPayload + func (o *CreateElasticsearchCheckPayload) GetPassword() string + func (o *CreateElasticsearchCheckPayload) GetPasswordOk() (*string, bool) + func (o *CreateElasticsearchCheckPayload) GetServer() string + func (o *CreateElasticsearchCheckPayload) GetServerOk() (*string, bool) + func (o *CreateElasticsearchCheckPayload) GetUsername() string + func (o *CreateElasticsearchCheckPayload) GetUsernameOk() (*string, bool) + func (o *CreateElasticsearchCheckPayload) HasPassword() bool + func (o *CreateElasticsearchCheckPayload) HasUsername() bool + func (o *CreateElasticsearchCheckPayload) SetPassword(v string) + func (o *CreateElasticsearchCheckPayload) SetServer(v string) + func (o *CreateElasticsearchCheckPayload) SetUsername(v string) + func (o *CreateElasticsearchCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateElasticsearchCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateElasticsearchCheckPayload) ToMap() (map[string]interface{}, error) + type CreateHttpCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateHttpCheck400Response(v *[]string) CreateHttpCheck400Response + func MapmapOfStringarrayOfStringAsCreateHttpCheck400Response(v *map[string][]string) CreateHttpCheck400Response + func (dst *CreateHttpCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateHttpCheck400Response) GetActualInstance() interface{} + func (obj CreateHttpCheck400Response) GetActualInstanceValue() interface{} + func (src CreateHttpCheck400Response) MarshalJSON() ([]byte, error) + type CreateHttpCheckPayload struct + Url string + func NewCreateHttpCheckPayload(url string) *CreateHttpCheckPayload + func NewCreateHttpCheckPayloadWithDefaults() *CreateHttpCheckPayload + func (o *CreateHttpCheckPayload) GetUrl() string + func (o *CreateHttpCheckPayload) GetUrlOk() (*string, bool) + func (o *CreateHttpCheckPayload) SetUrl(v string) + func (o *CreateHttpCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateHttpCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateHttpCheckPayload) ToMap() (map[string]interface{}, error) + type CreateInstancePayload struct + GrafanaAdminEnabled *bool + Name *string + Parameter map[string]interface{} + PlanId string + func NewCreateInstancePayload(planId string) *CreateInstancePayload + func NewCreateInstancePayloadWithDefaults() *CreateInstancePayload + func (o *CreateInstancePayload) GetGrafanaAdminEnabled() bool + func (o *CreateInstancePayload) GetGrafanaAdminEnabledOk() (*bool, bool) + func (o *CreateInstancePayload) GetName() string + func (o *CreateInstancePayload) GetNameOk() (*string, bool) + func (o *CreateInstancePayload) GetParameter() map[string]interface{} + func (o *CreateInstancePayload) GetParameterOk() (map[string]interface{}, bool) + func (o *CreateInstancePayload) GetPlanId() string + func (o *CreateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *CreateInstancePayload) HasGrafanaAdminEnabled() bool + func (o *CreateInstancePayload) HasName() bool + func (o *CreateInstancePayload) HasParameter() bool + func (o *CreateInstancePayload) SetGrafanaAdminEnabled(v bool) + func (o *CreateInstancePayload) SetName(v string) + func (o *CreateInstancePayload) SetParameter(v map[string]interface{}) + func (o *CreateInstancePayload) SetPlanId(v string) + func (o *CreateInstancePayload) UnmarshalJSON(data []byte) (err error) + func (o CreateInstancePayload) MarshalJSON() ([]byte, error) + func (o CreateInstancePayload) ToMap() (map[string]interface{}, error) + type CreateInstanceResponse struct + DashboardUrl string + InstanceId string + Message string + func NewCreateInstanceResponse(dashboardUrl string, instanceId string, message string) *CreateInstanceResponse + func NewCreateInstanceResponseWithDefaults() *CreateInstanceResponse + func (o *CreateInstanceResponse) GetDashboardUrl() string + func (o *CreateInstanceResponse) GetDashboardUrlOk() (*string, bool) + func (o *CreateInstanceResponse) GetInstanceId() string + func (o *CreateInstanceResponse) GetInstanceIdOk() (*string, bool) + func (o *CreateInstanceResponse) GetMessage() string + func (o *CreateInstanceResponse) GetMessageOk() (*string, bool) + func (o *CreateInstanceResponse) SetDashboardUrl(v string) + func (o *CreateInstanceResponse) SetInstanceId(v string) + func (o *CreateInstanceResponse) SetMessage(v string) + func (o *CreateInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateInstanceResponse) MarshalJSON() ([]byte, error) + func (o CreateInstanceResponse) ToMap() (map[string]interface{}, error) + type CreateLogsAlertgroupsPayload struct + Interval *string + Name string + Rules []CreateLogsAlertgroupsPayloadRulesInner + func NewCreateLogsAlertgroupsPayload(name string, rules []CreateLogsAlertgroupsPayloadRulesInner) *CreateLogsAlertgroupsPayload + func NewCreateLogsAlertgroupsPayloadWithDefaults() *CreateLogsAlertgroupsPayload + func (o *CreateLogsAlertgroupsPayload) GetInterval() string + func (o *CreateLogsAlertgroupsPayload) GetIntervalOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayload) GetName() string + func (o *CreateLogsAlertgroupsPayload) GetNameOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayload) GetRules() []CreateLogsAlertgroupsPayloadRulesInner + func (o *CreateLogsAlertgroupsPayload) GetRulesOk() ([]CreateLogsAlertgroupsPayloadRulesInner, bool) + func (o *CreateLogsAlertgroupsPayload) HasInterval() bool + func (o *CreateLogsAlertgroupsPayload) SetInterval(v string) + func (o *CreateLogsAlertgroupsPayload) SetName(v string) + func (o *CreateLogsAlertgroupsPayload) SetRules(v []CreateLogsAlertgroupsPayloadRulesInner) + func (o *CreateLogsAlertgroupsPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateLogsAlertgroupsPayload) MarshalJSON() ([]byte, error) + func (o CreateLogsAlertgroupsPayload) ToMap() (map[string]interface{}, error) + type CreateLogsAlertgroupsPayloadRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewCreateLogsAlertgroupsPayloadRulesInner(expr string) *CreateLogsAlertgroupsPayloadRulesInner + func NewCreateLogsAlertgroupsPayloadRulesInnerWithDefaults() *CreateLogsAlertgroupsPayloadRulesInner + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetAlert() string + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetAlertOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetAnnotations() map[string]interface{} + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetExpr() string + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetExprOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetFor() string + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetForOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetLabels() map[string]interface{} + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetRecord() string + func (o *CreateLogsAlertgroupsPayloadRulesInner) GetRecordOk() (*string, bool) + func (o *CreateLogsAlertgroupsPayloadRulesInner) HasAlert() bool + func (o *CreateLogsAlertgroupsPayloadRulesInner) HasAnnotations() bool + func (o *CreateLogsAlertgroupsPayloadRulesInner) HasFor() bool + func (o *CreateLogsAlertgroupsPayloadRulesInner) HasLabels() bool + func (o *CreateLogsAlertgroupsPayloadRulesInner) HasRecord() bool + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetAlert(v string) + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetAnnotations(v map[string]interface{}) + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetExpr(v string) + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetFor(v string) + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetLabels(v map[string]interface{}) + func (o *CreateLogsAlertgroupsPayloadRulesInner) SetRecord(v string) + func (o *CreateLogsAlertgroupsPayloadRulesInner) UnmarshalJSON(data []byte) (err error) + func (o CreateLogsAlertgroupsPayloadRulesInner) MarshalJSON() ([]byte, error) + func (o CreateLogsAlertgroupsPayloadRulesInner) ToMap() (map[string]interface{}, error) + type CreateMongodbCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateMongodbCheck400Response(v *[]string) CreateMongodbCheck400Response + func MapmapOfStringarrayOfStringAsCreateMongodbCheck400Response(v *map[string][]string) CreateMongodbCheck400Response + func (dst *CreateMongodbCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateMongodbCheck400Response) GetActualInstance() interface{} + func (obj CreateMongodbCheck400Response) GetActualInstanceValue() interface{} + func (src CreateMongodbCheck400Response) MarshalJSON() ([]byte, error) + type CreateMongodbCheckPayload struct + Server string + func NewCreateMongodbCheckPayload(server string) *CreateMongodbCheckPayload + func NewCreateMongodbCheckPayloadWithDefaults() *CreateMongodbCheckPayload + func (o *CreateMongodbCheckPayload) GetServer() string + func (o *CreateMongodbCheckPayload) GetServerOk() (*string, bool) + func (o *CreateMongodbCheckPayload) SetServer(v string) + func (o *CreateMongodbCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateMongodbCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateMongodbCheckPayload) ToMap() (map[string]interface{}, error) + type CreateMysqlCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateMysqlCheck400Response(v *[]string) CreateMysqlCheck400Response + func MapmapOfStringarrayOfStringAsCreateMysqlCheck400Response(v *map[string][]string) CreateMysqlCheck400Response + func (dst *CreateMysqlCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateMysqlCheck400Response) GetActualInstance() interface{} + func (obj CreateMysqlCheck400Response) GetActualInstanceValue() interface{} + func (src CreateMysqlCheck400Response) MarshalJSON() ([]byte, error) + type CreateMysqlCheckPayload struct + Server string + func NewCreateMysqlCheckPayload(server string) *CreateMysqlCheckPayload + func NewCreateMysqlCheckPayloadWithDefaults() *CreateMysqlCheckPayload + func (o *CreateMysqlCheckPayload) GetServer() string + func (o *CreateMysqlCheckPayload) GetServerOk() (*string, bool) + func (o *CreateMysqlCheckPayload) SetServer(v string) + func (o *CreateMysqlCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateMysqlCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateMysqlCheckPayload) ToMap() (map[string]interface{}, error) + type CreateNetworkCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateNetworkCheck400Response(v *[]string) CreateNetworkCheck400Response + func MapmapOfStringarrayOfStringAsCreateNetworkCheck400Response(v *map[string][]string) CreateNetworkCheck400Response + func (dst *CreateNetworkCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateNetworkCheck400Response) GetActualInstance() interface{} + func (obj CreateNetworkCheck400Response) GetActualInstanceValue() interface{} + func (src CreateNetworkCheck400Response) MarshalJSON() ([]byte, error) + type CreateNetworkCheckPayload struct + Address string + func NewCreateNetworkCheckPayload(address string) *CreateNetworkCheckPayload + func NewCreateNetworkCheckPayloadWithDefaults() *CreateNetworkCheckPayload + func (o *CreateNetworkCheckPayload) GetAddress() string + func (o *CreateNetworkCheckPayload) GetAddressOk() (*string, bool) + func (o *CreateNetworkCheckPayload) SetAddress(v string) + func (o *CreateNetworkCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateNetworkCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateNetworkCheckPayload) ToMap() (map[string]interface{}, error) + type CreatePingCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreatePingCheck400Response(v *[]string) CreatePingCheck400Response + func MapmapOfStringarrayOfStringAsCreatePingCheck400Response(v *map[string][]string) CreatePingCheck400Response + func (dst *CreatePingCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreatePingCheck400Response) GetActualInstance() interface{} + func (obj CreatePingCheck400Response) GetActualInstanceValue() interface{} + func (src CreatePingCheck400Response) MarshalJSON() ([]byte, error) + type CreatePingCheckPayload struct + Url string + func NewCreatePingCheckPayload(url string) *CreatePingCheckPayload + func NewCreatePingCheckPayloadWithDefaults() *CreatePingCheckPayload + func (o *CreatePingCheckPayload) GetUrl() string + func (o *CreatePingCheckPayload) GetUrlOk() (*string, bool) + func (o *CreatePingCheckPayload) SetUrl(v string) + func (o *CreatePingCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreatePingCheckPayload) MarshalJSON() ([]byte, error) + func (o CreatePingCheckPayload) ToMap() (map[string]interface{}, error) + type CreatePostgresqlCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreatePostgresqlCheck400Response(v *[]string) CreatePostgresqlCheck400Response + func MapmapOfStringarrayOfStringAsCreatePostgresqlCheck400Response(v *map[string][]string) CreatePostgresqlCheck400Response + func (dst *CreatePostgresqlCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreatePostgresqlCheck400Response) GetActualInstance() interface{} + func (obj CreatePostgresqlCheck400Response) GetActualInstanceValue() interface{} + func (src CreatePostgresqlCheck400Response) MarshalJSON() ([]byte, error) + type CreatePostgresqlCheckPayload struct + Address string + func NewCreatePostgresqlCheckPayload(address string) *CreatePostgresqlCheckPayload + func NewCreatePostgresqlCheckPayloadWithDefaults() *CreatePostgresqlCheckPayload + func (o *CreatePostgresqlCheckPayload) GetAddress() string + func (o *CreatePostgresqlCheckPayload) GetAddressOk() (*string, bool) + func (o *CreatePostgresqlCheckPayload) SetAddress(v string) + func (o *CreatePostgresqlCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreatePostgresqlCheckPayload) MarshalJSON() ([]byte, error) + func (o CreatePostgresqlCheckPayload) ToMap() (map[string]interface{}, error) + type CreateRabbitmqCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateRabbitmqCheck400Response(v *[]string) CreateRabbitmqCheck400Response + func MapmapOfStringarrayOfStringAsCreateRabbitmqCheck400Response(v *map[string][]string) CreateRabbitmqCheck400Response + func (dst *CreateRabbitmqCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateRabbitmqCheck400Response) GetActualInstance() interface{} + func (obj CreateRabbitmqCheck400Response) GetActualInstanceValue() interface{} + func (src CreateRabbitmqCheck400Response) MarshalJSON() ([]byte, error) + type CreateRabbitmqCheckPayload struct + Password *string + Url string + Username *string + func NewCreateRabbitmqCheckPayload(url string) *CreateRabbitmqCheckPayload + func NewCreateRabbitmqCheckPayloadWithDefaults() *CreateRabbitmqCheckPayload + func (o *CreateRabbitmqCheckPayload) GetPassword() string + func (o *CreateRabbitmqCheckPayload) GetPasswordOk() (*string, bool) + func (o *CreateRabbitmqCheckPayload) GetUrl() string + func (o *CreateRabbitmqCheckPayload) GetUrlOk() (*string, bool) + func (o *CreateRabbitmqCheckPayload) GetUsername() string + func (o *CreateRabbitmqCheckPayload) GetUsernameOk() (*string, bool) + func (o *CreateRabbitmqCheckPayload) HasPassword() bool + func (o *CreateRabbitmqCheckPayload) HasUsername() bool + func (o *CreateRabbitmqCheckPayload) SetPassword(v string) + func (o *CreateRabbitmqCheckPayload) SetUrl(v string) + func (o *CreateRabbitmqCheckPayload) SetUsername(v string) + func (o *CreateRabbitmqCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateRabbitmqCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateRabbitmqCheckPayload) ToMap() (map[string]interface{}, error) + type CreateRedisCheck400Response struct + ArrayOfString *[]string + MapmapOfStringarrayOfString *map[string][]string + func ArrayOfStringAsCreateRedisCheck400Response(v *[]string) CreateRedisCheck400Response + func MapmapOfStringarrayOfStringAsCreateRedisCheck400Response(v *map[string][]string) CreateRedisCheck400Response + func (dst *CreateRedisCheck400Response) UnmarshalJSON(data []byte) error + func (obj *CreateRedisCheck400Response) GetActualInstance() interface{} + func (obj CreateRedisCheck400Response) GetActualInstanceValue() interface{} + func (src CreateRedisCheck400Response) MarshalJSON() ([]byte, error) + type CreateRedisCheckPayload struct + Password *string + Server string + Username *string + func NewCreateRedisCheckPayload(server string) *CreateRedisCheckPayload + func NewCreateRedisCheckPayloadWithDefaults() *CreateRedisCheckPayload + func (o *CreateRedisCheckPayload) GetPassword() string + func (o *CreateRedisCheckPayload) GetPasswordOk() (*string, bool) + func (o *CreateRedisCheckPayload) GetServer() string + func (o *CreateRedisCheckPayload) GetServerOk() (*string, bool) + func (o *CreateRedisCheckPayload) GetUsername() string + func (o *CreateRedisCheckPayload) GetUsernameOk() (*string, bool) + func (o *CreateRedisCheckPayload) HasPassword() bool + func (o *CreateRedisCheckPayload) HasUsername() bool + func (o *CreateRedisCheckPayload) SetPassword(v string) + func (o *CreateRedisCheckPayload) SetServer(v string) + func (o *CreateRedisCheckPayload) SetUsername(v string) + func (o *CreateRedisCheckPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateRedisCheckPayload) MarshalJSON() ([]byte, error) + func (o CreateRedisCheckPayload) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayload struct + BasicAuth *CreateScrapeConfigPayloadBasicAuth + BearerToken *string + HonorLabels *bool + HonorTimeStamps *bool + HttpSdConfigs []CreateScrapeConfigPayloadHttpSdConfigsInner + JobName string + MetricsPath *string + MetricsRelabelConfigs []CreateScrapeConfigPayloadMetricsRelabelConfigsInner + Oauth2 *CreateScrapeConfigPayloadOauth2 + Params map[string]interface{} + SampleLimit *float32 + Scheme string + ScrapeInterval string + ScrapeTimeout string + StaticConfigs []CreateScrapeConfigPayloadStaticConfigsInner + TlsConfig *CreateScrapeConfigPayloadTlsConfig + func NewCreateScrapeConfigPayload(jobName string, scheme string, scrapeInterval string, scrapeTimeout string, ...) *CreateScrapeConfigPayload + func NewCreateScrapeConfigPayloadWithDefaults() *CreateScrapeConfigPayload + func (o *CreateScrapeConfigPayload) GetBasicAuth() CreateScrapeConfigPayloadBasicAuth + func (o *CreateScrapeConfigPayload) GetBasicAuthOk() (*CreateScrapeConfigPayloadBasicAuth, bool) + func (o *CreateScrapeConfigPayload) GetBearerToken() string + func (o *CreateScrapeConfigPayload) GetBearerTokenOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetHonorLabels() bool + func (o *CreateScrapeConfigPayload) GetHonorLabelsOk() (*bool, bool) + func (o *CreateScrapeConfigPayload) GetHonorTimeStamps() bool + func (o *CreateScrapeConfigPayload) GetHonorTimeStampsOk() (*bool, bool) + func (o *CreateScrapeConfigPayload) GetHttpSdConfigs() []CreateScrapeConfigPayloadHttpSdConfigsInner + func (o *CreateScrapeConfigPayload) GetHttpSdConfigsOk() ([]CreateScrapeConfigPayloadHttpSdConfigsInner, bool) + func (o *CreateScrapeConfigPayload) GetJobName() string + func (o *CreateScrapeConfigPayload) GetJobNameOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetMetricsPath() string + func (o *CreateScrapeConfigPayload) GetMetricsPathOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetMetricsRelabelConfigs() []CreateScrapeConfigPayloadMetricsRelabelConfigsInner + func (o *CreateScrapeConfigPayload) GetMetricsRelabelConfigsOk() ([]CreateScrapeConfigPayloadMetricsRelabelConfigsInner, bool) + func (o *CreateScrapeConfigPayload) GetOauth2() CreateScrapeConfigPayloadOauth2 + func (o *CreateScrapeConfigPayload) GetOauth2Ok() (*CreateScrapeConfigPayloadOauth2, bool) + func (o *CreateScrapeConfigPayload) GetParams() map[string]interface{} + func (o *CreateScrapeConfigPayload) GetParamsOk() (map[string]interface{}, bool) + func (o *CreateScrapeConfigPayload) GetSampleLimit() float32 + func (o *CreateScrapeConfigPayload) GetSampleLimitOk() (*float32, bool) + func (o *CreateScrapeConfigPayload) GetScheme() string + func (o *CreateScrapeConfigPayload) GetSchemeOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetScrapeInterval() string + func (o *CreateScrapeConfigPayload) GetScrapeIntervalOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetScrapeTimeout() string + func (o *CreateScrapeConfigPayload) GetScrapeTimeoutOk() (*string, bool) + func (o *CreateScrapeConfigPayload) GetStaticConfigs() []CreateScrapeConfigPayloadStaticConfigsInner + func (o *CreateScrapeConfigPayload) GetStaticConfigsOk() ([]CreateScrapeConfigPayloadStaticConfigsInner, bool) + func (o *CreateScrapeConfigPayload) GetTlsConfig() CreateScrapeConfigPayloadTlsConfig + func (o *CreateScrapeConfigPayload) GetTlsConfigOk() (*CreateScrapeConfigPayloadTlsConfig, bool) + func (o *CreateScrapeConfigPayload) HasBasicAuth() bool + func (o *CreateScrapeConfigPayload) HasBearerToken() bool + func (o *CreateScrapeConfigPayload) HasHonorLabels() bool + func (o *CreateScrapeConfigPayload) HasHonorTimeStamps() bool + func (o *CreateScrapeConfigPayload) HasHttpSdConfigs() bool + func (o *CreateScrapeConfigPayload) HasMetricsPath() bool + func (o *CreateScrapeConfigPayload) HasMetricsRelabelConfigs() bool + func (o *CreateScrapeConfigPayload) HasOauth2() bool + func (o *CreateScrapeConfigPayload) HasParams() bool + func (o *CreateScrapeConfigPayload) HasSampleLimit() bool + func (o *CreateScrapeConfigPayload) HasTlsConfig() bool + func (o *CreateScrapeConfigPayload) SetBasicAuth(v CreateScrapeConfigPayloadBasicAuth) + func (o *CreateScrapeConfigPayload) SetBearerToken(v string) + func (o *CreateScrapeConfigPayload) SetHonorLabels(v bool) + func (o *CreateScrapeConfigPayload) SetHonorTimeStamps(v bool) + func (o *CreateScrapeConfigPayload) SetHttpSdConfigs(v []CreateScrapeConfigPayloadHttpSdConfigsInner) + func (o *CreateScrapeConfigPayload) SetJobName(v string) + func (o *CreateScrapeConfigPayload) SetMetricsPath(v string) + func (o *CreateScrapeConfigPayload) SetMetricsRelabelConfigs(v []CreateScrapeConfigPayloadMetricsRelabelConfigsInner) + func (o *CreateScrapeConfigPayload) SetOauth2(v CreateScrapeConfigPayloadOauth2) + func (o *CreateScrapeConfigPayload) SetParams(v map[string]interface{}) + func (o *CreateScrapeConfigPayload) SetSampleLimit(v float32) + func (o *CreateScrapeConfigPayload) SetScheme(v string) + func (o *CreateScrapeConfigPayload) SetScrapeInterval(v string) + func (o *CreateScrapeConfigPayload) SetScrapeTimeout(v string) + func (o *CreateScrapeConfigPayload) SetStaticConfigs(v []CreateScrapeConfigPayloadStaticConfigsInner) + func (o *CreateScrapeConfigPayload) SetTlsConfig(v CreateScrapeConfigPayloadTlsConfig) + func (o *CreateScrapeConfigPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateScrapeConfigPayload) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayload) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadBasicAuth struct + Password *string + Username *string + func NewCreateScrapeConfigPayloadBasicAuth() *CreateScrapeConfigPayloadBasicAuth + func NewCreateScrapeConfigPayloadBasicAuthWithDefaults() *CreateScrapeConfigPayloadBasicAuth + func (o *CreateScrapeConfigPayloadBasicAuth) GetPassword() string + func (o *CreateScrapeConfigPayloadBasicAuth) GetPasswordOk() (*string, bool) + func (o *CreateScrapeConfigPayloadBasicAuth) GetUsername() string + func (o *CreateScrapeConfigPayloadBasicAuth) GetUsernameOk() (*string, bool) + func (o *CreateScrapeConfigPayloadBasicAuth) HasPassword() bool + func (o *CreateScrapeConfigPayloadBasicAuth) HasUsername() bool + func (o *CreateScrapeConfigPayloadBasicAuth) SetPassword(v string) + func (o *CreateScrapeConfigPayloadBasicAuth) SetUsername(v string) + func (o CreateScrapeConfigPayloadBasicAuth) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadBasicAuth) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadHttpSdConfigsInner struct + BasicAuth *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + Oauth2 *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + RefreshInterval *string + TlsConfig *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + Url string + func NewCreateScrapeConfigPayloadHttpSdConfigsInner(url string) *CreateScrapeConfigPayloadHttpSdConfigsInner + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerWithDefaults() *CreateScrapeConfigPayloadHttpSdConfigsInner + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetBasicAuth() CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetBasicAuthOk() (*CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetOauth2() CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetOauth2Ok() (*CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetRefreshInterval() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetRefreshIntervalOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetTlsConfig() CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetTlsConfigOk() (*CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetUrl() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) GetUrlOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) HasBasicAuth() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) HasOauth2() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) HasRefreshInterval() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) HasTlsConfig() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) SetBasicAuth(v CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) SetOauth2(v CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) SetRefreshInterval(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) SetTlsConfig(v CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) SetUrl(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInner) UnmarshalJSON(data []byte) (err error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInner) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth struct + Password *string + Username *string + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth() *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuthWithDefaults() *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) GetPassword() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) GetPasswordOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) GetUsername() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) GetUsernameOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) HasPassword() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) HasUsername() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) SetPassword(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) SetUsername(v string) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 struct + ClientId string + ClientSecret string + Scopes []string + TlsConfig *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + TokenUrl string + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2(clientId string, clientSecret string, tokenUrl string) *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2WithDefaults() *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetClientId() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetClientIdOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetClientSecret() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetClientSecretOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetScopes() []string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetScopesOk() ([]string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetTlsConfig() CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetTlsConfigOk() (*CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetTokenUrl() string + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) GetTokenUrlOk() (*string, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) HasScopes() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) HasTlsConfig() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) SetClientId(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) SetClientSecret(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) SetScopes(v []string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) SetTlsConfig(v CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) SetTokenUrl(v string) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) UnmarshalJSON(data []byte) (err error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig struct + InsecureSkipVerify *bool + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig() *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfigWithDefaults() *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) GetInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) HasInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) SetInsecureSkipVerify(v bool) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig struct + InsecureSkipVerify *bool + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig() *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + func NewCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfigWithDefaults() *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) GetInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) HasInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) SetInsecureSkipVerify(v bool) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadMetricsRelabelConfigsInner struct + Action *string + Modulus *float32 + Regex *string + Replacement *string + Separator *string + SourceLabels []string + TargetLabel *string + func NewCreateScrapeConfigPayloadMetricsRelabelConfigsInner() *CreateScrapeConfigPayloadMetricsRelabelConfigsInner + func NewCreateScrapeConfigPayloadMetricsRelabelConfigsInnerWithDefaults() *CreateScrapeConfigPayloadMetricsRelabelConfigsInner + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetAction() string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetActionOk() (*string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetModulus() float32 + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetModulusOk() (*float32, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetRegex() string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetRegexOk() (*string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetReplacement() string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetReplacementOk() (*string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSeparator() string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSeparatorOk() (*string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSourceLabels() []string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSourceLabelsOk() ([]string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetTargetLabel() string + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) GetTargetLabelOk() (*string, bool) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasAction() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasModulus() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasRegex() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasReplacement() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasSeparator() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasSourceLabels() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) HasTargetLabel() bool + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetAction(v string) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetModulus(v float32) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetRegex(v string) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetReplacement(v string) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetSeparator(v string) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetSourceLabels(v []string) + func (o *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) SetTargetLabel(v string) + func (o CreateScrapeConfigPayloadMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadMetricsRelabelConfigsInner) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadOauth2 struct + ClientId string + ClientSecret string + Scopes []string + TlsConfig *CreateScrapeConfigPayloadOauth2TlsConfig + TokenUrl string + func NewCreateScrapeConfigPayloadOauth2(clientId string, clientSecret string, tokenUrl string) *CreateScrapeConfigPayloadOauth2 + func NewCreateScrapeConfigPayloadOauth2WithDefaults() *CreateScrapeConfigPayloadOauth2 + func (o *CreateScrapeConfigPayloadOauth2) GetClientId() string + func (o *CreateScrapeConfigPayloadOauth2) GetClientIdOk() (*string, bool) + func (o *CreateScrapeConfigPayloadOauth2) GetClientSecret() string + func (o *CreateScrapeConfigPayloadOauth2) GetClientSecretOk() (*string, bool) + func (o *CreateScrapeConfigPayloadOauth2) GetScopes() []string + func (o *CreateScrapeConfigPayloadOauth2) GetScopesOk() ([]string, bool) + func (o *CreateScrapeConfigPayloadOauth2) GetTlsConfig() CreateScrapeConfigPayloadOauth2TlsConfig + func (o *CreateScrapeConfigPayloadOauth2) GetTlsConfigOk() (*CreateScrapeConfigPayloadOauth2TlsConfig, bool) + func (o *CreateScrapeConfigPayloadOauth2) GetTokenUrl() string + func (o *CreateScrapeConfigPayloadOauth2) GetTokenUrlOk() (*string, bool) + func (o *CreateScrapeConfigPayloadOauth2) HasScopes() bool + func (o *CreateScrapeConfigPayloadOauth2) HasTlsConfig() bool + func (o *CreateScrapeConfigPayloadOauth2) SetClientId(v string) + func (o *CreateScrapeConfigPayloadOauth2) SetClientSecret(v string) + func (o *CreateScrapeConfigPayloadOauth2) SetScopes(v []string) + func (o *CreateScrapeConfigPayloadOauth2) SetTlsConfig(v CreateScrapeConfigPayloadOauth2TlsConfig) + func (o *CreateScrapeConfigPayloadOauth2) SetTokenUrl(v string) + func (o *CreateScrapeConfigPayloadOauth2) UnmarshalJSON(data []byte) (err error) + func (o CreateScrapeConfigPayloadOauth2) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadOauth2) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadOauth2TlsConfig struct + InsecureSkipVerify *bool + func NewCreateScrapeConfigPayloadOauth2TlsConfig() *CreateScrapeConfigPayloadOauth2TlsConfig + func NewCreateScrapeConfigPayloadOauth2TlsConfigWithDefaults() *CreateScrapeConfigPayloadOauth2TlsConfig + func (o *CreateScrapeConfigPayloadOauth2TlsConfig) GetInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadOauth2TlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *CreateScrapeConfigPayloadOauth2TlsConfig) HasInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadOauth2TlsConfig) SetInsecureSkipVerify(v bool) + func (o CreateScrapeConfigPayloadOauth2TlsConfig) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadOauth2TlsConfig) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadStaticConfigsInner struct + Labels map[string]interface{} + Targets []string + func NewCreateScrapeConfigPayloadStaticConfigsInner(targets []string) *CreateScrapeConfigPayloadStaticConfigsInner + func NewCreateScrapeConfigPayloadStaticConfigsInnerWithDefaults() *CreateScrapeConfigPayloadStaticConfigsInner + func (o *CreateScrapeConfigPayloadStaticConfigsInner) GetLabels() map[string]interface{} + func (o *CreateScrapeConfigPayloadStaticConfigsInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateScrapeConfigPayloadStaticConfigsInner) GetTargets() []string + func (o *CreateScrapeConfigPayloadStaticConfigsInner) GetTargetsOk() ([]string, bool) + func (o *CreateScrapeConfigPayloadStaticConfigsInner) HasLabels() bool + func (o *CreateScrapeConfigPayloadStaticConfigsInner) SetLabels(v map[string]interface{}) + func (o *CreateScrapeConfigPayloadStaticConfigsInner) SetTargets(v []string) + func (o *CreateScrapeConfigPayloadStaticConfigsInner) UnmarshalJSON(data []byte) (err error) + func (o CreateScrapeConfigPayloadStaticConfigsInner) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadStaticConfigsInner) ToMap() (map[string]interface{}, error) + type CreateScrapeConfigPayloadTlsConfig struct + InsecureSkipVerify *bool + func NewCreateScrapeConfigPayloadTlsConfig() *CreateScrapeConfigPayloadTlsConfig + func NewCreateScrapeConfigPayloadTlsConfigWithDefaults() *CreateScrapeConfigPayloadTlsConfig + func (o *CreateScrapeConfigPayloadTlsConfig) GetInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadTlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *CreateScrapeConfigPayloadTlsConfig) HasInsecureSkipVerify() bool + func (o *CreateScrapeConfigPayloadTlsConfig) SetInsecureSkipVerify(v bool) + func (o CreateScrapeConfigPayloadTlsConfig) MarshalJSON() ([]byte, error) + func (o CreateScrapeConfigPayloadTlsConfig) ToMap() (map[string]interface{}, error) + type Credentials struct + Description *string + Password string + Username string + func NewCredentials(password string, username string) *Credentials + func NewCredentialsWithDefaults() *Credentials + func (o *Credentials) GetDescription() string + func (o *Credentials) GetDescriptionOk() (*string, bool) + func (o *Credentials) GetPassword() string + func (o *Credentials) GetPasswordOk() (*string, bool) + func (o *Credentials) GetUsername() string + func (o *Credentials) GetUsernameOk() (*string, bool) + func (o *Credentials) HasDescription() bool + func (o *Credentials) SetDescription(v string) + func (o *Credentials) SetPassword(v string) + func (o *Credentials) SetUsername(v string) + func (o *Credentials) UnmarshalJSON(data []byte) (err error) + func (o Credentials) MarshalJSON() ([]byte, error) + func (o Credentials) ToMap() (map[string]interface{}, error) + type CredentialsRemoteWriteConfig struct + CredentialsMaxLimit int32 + MaxLimit int32 + Message string + func NewCredentialsRemoteWriteConfig(credentialsMaxLimit int32, maxLimit int32, message string) *CredentialsRemoteWriteConfig + func NewCredentialsRemoteWriteConfigWithDefaults() *CredentialsRemoteWriteConfig + func (o *CredentialsRemoteWriteConfig) GetCredentialsMaxLimit() int32 + func (o *CredentialsRemoteWriteConfig) GetCredentialsMaxLimitOk() (*int32, bool) + func (o *CredentialsRemoteWriteConfig) GetMaxLimit() int32 + func (o *CredentialsRemoteWriteConfig) GetMaxLimitOk() (*int32, bool) + func (o *CredentialsRemoteWriteConfig) GetMessage() string + func (o *CredentialsRemoteWriteConfig) GetMessageOk() (*string, bool) + func (o *CredentialsRemoteWriteConfig) SetCredentialsMaxLimit(v int32) + func (o *CredentialsRemoteWriteConfig) SetMaxLimit(v int32) + func (o *CredentialsRemoteWriteConfig) SetMessage(v string) + func (o *CredentialsRemoteWriteConfig) UnmarshalJSON(data []byte) (err error) + func (o CredentialsRemoteWriteConfig) MarshalJSON() ([]byte, error) + func (o CredentialsRemoteWriteConfig) ToMap() (map[string]interface{}, error) + type CredentialsRemoteWriteDeleteResponse struct + MaxLimit int32 + Message string + func NewCredentialsRemoteWriteDeleteResponse(maxLimit int32, message string) *CredentialsRemoteWriteDeleteResponse + func NewCredentialsRemoteWriteDeleteResponseWithDefaults() *CredentialsRemoteWriteDeleteResponse + func (o *CredentialsRemoteWriteDeleteResponse) GetMaxLimit() int32 + func (o *CredentialsRemoteWriteDeleteResponse) GetMaxLimitOk() (*int32, bool) + func (o *CredentialsRemoteWriteDeleteResponse) GetMessage() string + func (o *CredentialsRemoteWriteDeleteResponse) GetMessageOk() (*string, bool) + func (o *CredentialsRemoteWriteDeleteResponse) SetMaxLimit(v int32) + func (o *CredentialsRemoteWriteDeleteResponse) SetMessage(v string) + func (o *CredentialsRemoteWriteDeleteResponse) UnmarshalJSON(data []byte) (err error) + func (o CredentialsRemoteWriteDeleteResponse) MarshalJSON() ([]byte, error) + func (o CredentialsRemoteWriteDeleteResponse) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateAlertConfigReceiver func(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigReceiverRequest + CreateAlertConfigReceiverExecute func(r ApiCreateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + CreateAlertConfigRoute func(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigRouteRequest + CreateAlertConfigRouteExecute func(r ApiCreateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + CreateAlertRecord func(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertRecordRequest + CreateAlertRecordExecute func(r ApiCreateAlertRecordRequest) (*AlertRecordsResponse, error) + CreateAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiCreateAlertgroupsRequest + CreateAlertgroupsExecute func(r ApiCreateAlertgroupsRequest) (*AlertGroupsResponse, error) + CreateAlertrules func(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertrulesRequest + CreateAlertrulesExecute func(r ApiCreateAlertrulesRequest) (*AlertRulesResponse, error) + CreateBackup func(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + CreateBackupExecute func(r ApiCreateBackupRequest) (*Message, error) + CreateBackupSchedule func(ctx context.Context, instanceId string, projectId string) ApiCreateBackupScheduleRequest + CreateBackupScheduleExecute func(r ApiCreateBackupScheduleRequest) (*BackupSchedulePostResponse, error) + CreateCertCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateCertCheckRequest + CreateCertCheckExecute func(r ApiCreateCertCheckRequest) (*CertCheckResponse, error) + CreateCredentials func(ctx context.Context, instanceId string, projectId string) ApiCreateCredentialsRequest + CreateCredentialsExecute func(r ApiCreateCredentialsRequest) (*CreateCredentialsResponse, error) + CreateElasticsearchCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateElasticsearchCheckRequest + CreateElasticsearchCheckExecute func(r ApiCreateElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + CreateHttpCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateHttpCheckRequest + CreateHttpCheckExecute func(r ApiCreateHttpCheckRequest) (*HttpCheckResponse, error) + CreateInstance func(ctx context.Context, projectId string) ApiCreateInstanceRequest + CreateInstanceExecute func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateLogsAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiCreateLogsAlertgroupsRequest + CreateLogsAlertgroupsExecute func(r ApiCreateLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + CreateMongodbCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateMongodbCheckRequest + CreateMongodbCheckExecute func(r ApiCreateMongodbCheckRequest) (*MongodbCheckResponse, error) + CreateMysqlCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateMysqlCheckRequest + CreateMysqlCheckExecute func(r ApiCreateMysqlCheckRequest) (*MysqlCheckResponse, error) + CreateNetworkCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateNetworkCheckRequest + CreateNetworkCheckExecute func(r ApiCreateNetworkCheckRequest) (*NetworkCheckResponse, error) + CreatePingCheck func(ctx context.Context, instanceId string, projectId string) ApiCreatePingCheckRequest + CreatePingCheckExecute func(r ApiCreatePingCheckRequest) (*PingCheckResponse, error) + CreatePostgresqlCheck func(ctx context.Context, instanceId string, projectId string) ApiCreatePostgresqlCheckRequest + CreatePostgresqlCheckExecute func(r ApiCreatePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + CreateRabbitmqCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateRabbitmqCheckRequest + CreateRabbitmqCheckExecute func(r ApiCreateRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + CreateRedisCheck func(ctx context.Context, instanceId string, projectId string) ApiCreateRedisCheckRequest + CreateRedisCheckExecute func(r ApiCreateRedisCheckRequest) (*RedisCheckResponse, error) + CreateScrapeConfig func(ctx context.Context, instanceId string, projectId string) ApiCreateScrapeConfigRequest + CreateScrapeConfigExecute func(r ApiCreateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + DeleteAlertConfigReceiver func(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigReceiverRequest + DeleteAlertConfigReceiverExecute func(r ApiDeleteAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + DeleteAlertConfigRoute func(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigRouteRequest + DeleteAlertConfigRouteExecute func(r ApiDeleteAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + DeleteAlertRecord func(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiDeleteAlertRecordRequest + DeleteAlertRecordExecute func(r ApiDeleteAlertRecordRequest) (*AlertRecordsResponse, error) + DeleteAlertRecords func(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertRecordsRequest + DeleteAlertRecordsExecute func(r ApiDeleteAlertRecordsRequest) (*AlertRecordsResponse, error) + DeleteAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertgroupRequest + DeleteAlertgroupExecute func(r ApiDeleteAlertgroupRequest) (*AlertGroupsResponse, error) + DeleteAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiDeleteAlertgroupsRequest + DeleteAlertgroupsExecute func(r ApiDeleteAlertgroupsRequest) (*AlertGroupsResponse, error) + DeleteAlertrule func(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiDeleteAlertruleRequest + DeleteAlertruleExecute func(r ApiDeleteAlertruleRequest) (*AlertRulesResponse, error) + DeleteAlertrules func(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertrulesRequest + DeleteAlertrulesExecute func(r ApiDeleteAlertrulesRequest) (*AlertRulesResponse, error) + DeleteCertCheck func(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteCertCheckRequest + DeleteCertCheckExecute func(r ApiDeleteCertCheckRequest) (*CertCheckResponse, error) + DeleteCredentials func(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRequest + DeleteCredentialsExecute func(r ApiDeleteCredentialsRequest) (*Message, error) + DeleteCredentialsRemoteWriteConfig func(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRemoteWriteConfigRequest + DeleteCredentialsRemoteWriteConfigExecute func(r ApiDeleteCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteDeleteResponse, error) + DeleteElasticsearchCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteElasticsearchCheckRequest + DeleteElasticsearchCheckExecute func(r ApiDeleteElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + DeleteHttpCheck func(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteHttpCheckRequest + DeleteHttpCheckExecute func(r ApiDeleteHttpCheckRequest) (*HttpCheckResponse, error) + DeleteInstance func(ctx context.Context, instanceId string, projectId string) ApiDeleteInstanceRequest + DeleteInstanceExecute func(r ApiDeleteInstanceRequest) (*InstanceResponse, error) + DeleteLogsAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteLogsAlertgroupRequest + DeleteLogsAlertgroupExecute func(r ApiDeleteLogsAlertgroupRequest) (*AlertGroupsResponse, error) + DeleteMongodbCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMongodbCheckRequest + DeleteMongodbCheckExecute func(r ApiDeleteMongodbCheckRequest) (*MongodbCheckResponse, error) + DeleteMysqlCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMysqlCheckRequest + DeleteMysqlCheckExecute func(r ApiDeleteMysqlCheckRequest) (*MysqlCheckResponse, error) + DeleteNetworkCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteNetworkCheckRequest + DeleteNetworkCheckExecute func(r ApiDeleteNetworkCheckRequest) (*NetworkCheckResponse, error) + DeletePingCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePingCheckRequest + DeletePingCheckExecute func(r ApiDeletePingCheckRequest) (*PingCheckResponse, error) + DeletePostgresqlCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePostgresqlCheckRequest + DeletePostgresqlCheckExecute func(r ApiDeletePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + DeleteRabbitmqCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRabbitmqCheckRequest + DeleteRabbitmqCheckExecute func(r ApiDeleteRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + DeleteRedisCheck func(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRedisCheckRequest + DeleteRedisCheckExecute func(r ApiDeleteRedisCheckRequest) (*RedisCheckResponse, error) + DeleteScrapeConfig func(ctx context.Context, instanceId string, jobName string, projectId string) ApiDeleteScrapeConfigRequest + DeleteScrapeConfigExecute func(r ApiDeleteScrapeConfigRequest) (*DeleteScrapeConfigResponse, error) + DeleteScrapeConfigs func(ctx context.Context, instanceId string, projectId string) ApiDeleteScrapeConfigsRequest + DeleteScrapeConfigsExecute func(r ApiDeleteScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + GetAlertConfigReceiver func(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigReceiverRequest + GetAlertConfigReceiverExecute func(r ApiGetAlertConfigReceiverRequest) (*Receiver, error) + GetAlertConfigRoute func(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigRouteRequest + GetAlertConfigRouteExecute func(r ApiGetAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + GetAlertConfigs func(ctx context.Context, instanceId string, projectId string) ApiGetAlertConfigsRequest + GetAlertConfigsExecute func(r ApiGetAlertConfigsRequest) (*GetAlertConfigsResponse, error) + GetAlertRecord func(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiGetAlertRecordRequest + GetAlertRecordExecute func(r ApiGetAlertRecordRequest) (*AlertRecordResponse, error) + GetAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetAlertgroupRequest + GetAlertgroupExecute func(r ApiGetAlertgroupRequest) (*AlertGroupResponse, error) + GetAlertrule func(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiGetAlertruleRequest + GetAlertruleExecute func(r ApiGetAlertruleRequest) (*AlertRuleResponse, error) + GetCredentials func(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRequest + GetCredentialsExecute func(r ApiGetCredentialsRequest) (*GetCredentialsResponse, error) + GetCredentialsRemoteWriteConfig func(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRemoteWriteConfigRequest + GetCredentialsRemoteWriteConfigExecute func(r ApiGetCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + GetGrafanaConfigs func(ctx context.Context, instanceId string, projectId string) ApiGetGrafanaConfigsRequest + GetGrafanaConfigsExecute func(r ApiGetGrafanaConfigsRequest) (*GrafanaConfigs, error) + GetInstance func(ctx context.Context, instanceId string, projectId string) ApiGetInstanceRequest + GetInstanceExecute func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetLogsAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetLogsAlertgroupRequest + GetLogsAlertgroupExecute func(r ApiGetLogsAlertgroupRequest) (*AlertGroupResponse, error) + GetLogsConfigs func(ctx context.Context, instanceId string, projectId string) ApiGetLogsConfigsRequest + GetLogsConfigsExecute func(r ApiGetLogsConfigsRequest) (*LogsConfigResponse, error) + GetMetricsStorageRetention func(ctx context.Context, instanceId string, projectId string) ApiGetMetricsStorageRetentionRequest + GetMetricsStorageRetentionExecute func(r ApiGetMetricsStorageRetentionRequest) (*GetMetricsStorageRetentionResponse, error) + GetScrapeConfig func(ctx context.Context, instanceId string, jobName string, projectId string) ApiGetScrapeConfigRequest + GetScrapeConfigExecute func(r ApiGetScrapeConfigRequest) (*GetScrapeConfigResponse, error) + GetTracesConfigs func(ctx context.Context, instanceId string, projectId string) ApiGetTracesConfigsRequest + GetTracesConfigsExecute func(r ApiGetTracesConfigsRequest) (*TracesConfigResponse, error) + ListACL func(ctx context.Context, instanceId string, projectId string) ApiListACLRequest + ListACLExecute func(r ApiListACLRequest) (*ListACLResponse, error) + ListAlertConfigReceivers func(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigReceiversRequest + ListAlertConfigReceiversExecute func(r ApiListAlertConfigReceiversRequest) (*AlertConfigReceiversResponse, error) + ListAlertConfigRoutes func(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigRoutesRequest + ListAlertConfigRoutesExecute func(r ApiListAlertConfigRoutesRequest) (*AlertConfigRouteResponse, error) + ListAlertRecords func(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertRecordsRequest + ListAlertRecordsExecute func(r ApiListAlertRecordsRequest) (*AlertRecordsResponse, error) + ListAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiListAlertgroupsRequest + ListAlertgroupsExecute func(r ApiListAlertgroupsRequest) (*AlertGroupsResponse, error) + ListAlertrules func(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertrulesRequest + ListAlertrulesExecute func(r ApiListAlertrulesRequest) (*AlertRulesResponse, error) + ListBackupRetentions func(ctx context.Context, instanceId string, projectId string) ApiListBackupRetentionsRequest + ListBackupRetentionsExecute func(r ApiListBackupRetentionsRequest) (*BackupRetentionResponse, error) + ListBackupSchedules func(ctx context.Context, instanceId string, projectId string) ApiListBackupSchedulesRequest + ListBackupSchedulesExecute func(r ApiListBackupSchedulesRequest) (*BackupScheduleResponse, error) + ListBackups func(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + ListBackupsExecute func(r ApiListBackupsRequest) (*BackupResponse, error) + ListCertChecks func(ctx context.Context, instanceId string, projectId string) ApiListCertChecksRequest + ListCertChecksExecute func(r ApiListCertChecksRequest) (*CertCheckResponse, error) + ListCredentials func(ctx context.Context, instanceId string, projectId string) ApiListCredentialsRequest + ListCredentialsExecute func(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + ListElasticsearchChecks func(ctx context.Context, instanceId string, projectId string) ApiListElasticsearchChecksRequest + ListElasticsearchChecksExecute func(r ApiListElasticsearchChecksRequest) (*ElasticsearchCheckResponse, error) + ListHttpChecks func(ctx context.Context, instanceId string, projectId string) ApiListHttpChecksRequest + ListHttpChecksExecute func(r ApiListHttpChecksRequest) (*HttpCheckResponse, error) + ListInstances func(ctx context.Context, projectId string) ApiListInstancesRequest + ListInstancesExecute func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListLogsAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiListLogsAlertgroupsRequest + ListLogsAlertgroupsExecute func(r ApiListLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + ListMongodbChecks func(ctx context.Context, instanceId string, projectId string) ApiListMongodbChecksRequest + ListMongodbChecksExecute func(r ApiListMongodbChecksRequest) (*MongodbCheckResponse, error) + ListMysqlChecks func(ctx context.Context, instanceId string, projectId string) ApiListMysqlChecksRequest + ListMysqlChecksExecute func(r ApiListMysqlChecksRequest) (*MysqlCheckResponse, error) + ListNetworkChecks func(ctx context.Context, instanceId string, projectId string) ApiListNetworkChecksRequest + ListNetworkChecksExecute func(r ApiListNetworkChecksRequest) (*NetworkCheckResponse, error) + ListOfferings func(ctx context.Context, projectId string) ApiListOfferingsRequest + ListOfferingsExecute func(r ApiListOfferingsRequest) (*Offerings, error) + ListPingChecks func(ctx context.Context, instanceId string, projectId string) ApiListPingChecksRequest + ListPingChecksExecute func(r ApiListPingChecksRequest) (*PingCheckResponse, error) + ListPlans func(ctx context.Context, projectId string) ApiListPlansRequest + ListPlansExecute func(r ApiListPlansRequest) (*PlansResponse, error) + ListPostgresqlChecks func(ctx context.Context, instanceId string, projectId string) ApiListPostgresqlChecksRequest + ListPostgresqlChecksExecute func(r ApiListPostgresqlChecksRequest) (*PostgresqlCheckResponse, error) + ListRabbitmqChecks func(ctx context.Context, instanceId string, projectId string) ApiListRabbitmqChecksRequest + ListRabbitmqChecksExecute func(r ApiListRabbitmqChecksRequest) (*RabbitmqCheckResponse, error) + ListRedisChecks func(ctx context.Context, instanceId string, projectId string) ApiListRedisChecksRequest + ListRedisChecksExecute func(r ApiListRedisChecksRequest) (*RedisCheckResponse, error) + ListScrapeConfigs func(ctx context.Context, instanceId string, projectId string) ApiListScrapeConfigsRequest + ListScrapeConfigsExecute func(r ApiListScrapeConfigsRequest) (*ListScrapeConfigsResponse, error) + PartialUpdateAlertRecords func(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertRecordsRequest + PartialUpdateAlertRecordsExecute func(r ApiPartialUpdateAlertRecordsRequest) (*AlertRecordsResponse, error) + PartialUpdateAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateAlertgroupsRequest + PartialUpdateAlertgroupsExecute func(r ApiPartialUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + PartialUpdateAlertrules func(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertrulesRequest + PartialUpdateAlertrulesExecute func(r ApiPartialUpdateAlertrulesRequest) (*AlertRulesResponse, error) + PartialUpdateScrapeConfigs func(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateScrapeConfigsRequest + PartialUpdateScrapeConfigsExecute func(r ApiPartialUpdateScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + RestoreBackup func(ctx context.Context, backupDate string, instanceId string, projectId string) ApiRestoreBackupRequest + RestoreBackupExecute func(r ApiRestoreBackupRequest) (*Message, error) + UpdateACL func(ctx context.Context, instanceId string, projectId string) ApiUpdateACLRequest + UpdateACLExecute func(r ApiUpdateACLRequest) (*Message, error) + UpdateAlertConfigReceiver func(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigReceiverRequest + UpdateAlertConfigReceiverExecute func(r ApiUpdateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + UpdateAlertConfigRoute func(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigRouteRequest + UpdateAlertConfigRouteExecute func(r ApiUpdateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + UpdateAlertConfigs func(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertConfigsRequest + UpdateAlertConfigsExecute func(r ApiUpdateAlertConfigsRequest) (*UpdateAlertConfigsResponse, error) + UpdateAlertRecord func(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiUpdateAlertRecordRequest + UpdateAlertRecordExecute func(r ApiUpdateAlertRecordRequest) (*AlertRecordsResponse, error) + UpdateAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateAlertgroupRequest + UpdateAlertgroupExecute func(r ApiUpdateAlertgroupRequest) (*AlertGroupsResponse, error) + UpdateAlertgroups func(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertgroupsRequest + UpdateAlertgroupsExecute func(r ApiUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + UpdateAlertrule func(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiUpdateAlertruleRequest + UpdateAlertruleExecute func(r ApiUpdateAlertruleRequest) (*AlertRulesResponse, error) + UpdateCredentialsRemoteWriteConfig func(ctx context.Context, instanceId string, projectId string, username string) ApiUpdateCredentialsRemoteWriteConfigRequest + UpdateCredentialsRemoteWriteConfigExecute func(r ApiUpdateCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + UpdateGrafanaConfigs func(ctx context.Context, instanceId string, projectId string) ApiUpdateGrafanaConfigsRequest + UpdateGrafanaConfigsExecute func(r ApiUpdateGrafanaConfigsRequest) (*Message, error) + UpdateInstance func(ctx context.Context, instanceId string, projectId string) ApiUpdateInstanceRequest + UpdateInstanceExecute func(r ApiUpdateInstanceRequest) (*InstanceResponse, error) + UpdateLogsAlertgroup func(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateLogsAlertgroupRequest + UpdateLogsAlertgroupExecute func(r ApiUpdateLogsAlertgroupRequest) (*AlertGroupsResponse, error) + UpdateLogsConfigs func(ctx context.Context, instanceId string, projectId string) ApiUpdateLogsConfigsRequest + UpdateLogsConfigsExecute func(r ApiUpdateLogsConfigsRequest) (*Message, error) + UpdateMetricsStorageRetention func(ctx context.Context, instanceId string, projectId string) ApiUpdateMetricsStorageRetentionRequest + UpdateMetricsStorageRetentionExecute func(r ApiUpdateMetricsStorageRetentionRequest) (*Message, error) + UpdateScrapeConfig func(ctx context.Context, instanceId string, jobName string, projectId string) ApiUpdateScrapeConfigRequest + UpdateScrapeConfigExecute func(r ApiUpdateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + UpdateTracesConfigs func(ctx context.Context, instanceId string, projectId string) ApiUpdateTracesConfigsRequest + UpdateTracesConfigsExecute func(r ApiUpdateTracesConfigsRequest) (*Message, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateAlertConfigReceiver(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigReceiverRequest + func (a *DefaultAPIService) CreateAlertConfigReceiverExecute(r ApiCreateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a *DefaultAPIService) CreateAlertConfigRoute(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigRouteRequest + func (a *DefaultAPIService) CreateAlertConfigRouteExecute(r ApiCreateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a *DefaultAPIService) CreateAlertRecord(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertRecordRequest + func (a *DefaultAPIService) CreateAlertRecordExecute(r ApiCreateAlertRecordRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) CreateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiCreateAlertgroupsRequest + func (a *DefaultAPIService) CreateAlertgroupsExecute(r ApiCreateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) CreateAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertrulesRequest + func (a *DefaultAPIService) CreateAlertrulesExecute(r ApiCreateAlertrulesRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) CreateBackup(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + func (a *DefaultAPIService) CreateBackupExecute(r ApiCreateBackupRequest) (*Message, error) + func (a *DefaultAPIService) CreateBackupSchedule(ctx context.Context, instanceId string, projectId string) ApiCreateBackupScheduleRequest + func (a *DefaultAPIService) CreateBackupScheduleExecute(r ApiCreateBackupScheduleRequest) (*BackupSchedulePostResponse, error) + func (a *DefaultAPIService) CreateCertCheck(ctx context.Context, instanceId string, projectId string) ApiCreateCertCheckRequest + func (a *DefaultAPIService) CreateCertCheckExecute(r ApiCreateCertCheckRequest) (*CertCheckResponse, error) + func (a *DefaultAPIService) CreateCredentials(ctx context.Context, instanceId string, projectId string) ApiCreateCredentialsRequest + func (a *DefaultAPIService) CreateCredentialsExecute(r ApiCreateCredentialsRequest) (*CreateCredentialsResponse, error) + func (a *DefaultAPIService) CreateElasticsearchCheck(ctx context.Context, instanceId string, projectId string) ApiCreateElasticsearchCheckRequest + func (a *DefaultAPIService) CreateElasticsearchCheckExecute(r ApiCreateElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + func (a *DefaultAPIService) CreateHttpCheck(ctx context.Context, instanceId string, projectId string) ApiCreateHttpCheckRequest + func (a *DefaultAPIService) CreateHttpCheckExecute(r ApiCreateHttpCheckRequest) (*HttpCheckResponse, error) + func (a *DefaultAPIService) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a *DefaultAPIService) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a *DefaultAPIService) CreateLogsAlertgroups(ctx context.Context, instanceId string, projectId string) ApiCreateLogsAlertgroupsRequest + func (a *DefaultAPIService) CreateLogsAlertgroupsExecute(r ApiCreateLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) CreateMongodbCheck(ctx context.Context, instanceId string, projectId string) ApiCreateMongodbCheckRequest + func (a *DefaultAPIService) CreateMongodbCheckExecute(r ApiCreateMongodbCheckRequest) (*MongodbCheckResponse, error) + func (a *DefaultAPIService) CreateMysqlCheck(ctx context.Context, instanceId string, projectId string) ApiCreateMysqlCheckRequest + func (a *DefaultAPIService) CreateMysqlCheckExecute(r ApiCreateMysqlCheckRequest) (*MysqlCheckResponse, error) + func (a *DefaultAPIService) CreateNetworkCheck(ctx context.Context, instanceId string, projectId string) ApiCreateNetworkCheckRequest + func (a *DefaultAPIService) CreateNetworkCheckExecute(r ApiCreateNetworkCheckRequest) (*NetworkCheckResponse, error) + func (a *DefaultAPIService) CreatePingCheck(ctx context.Context, instanceId string, projectId string) ApiCreatePingCheckRequest + func (a *DefaultAPIService) CreatePingCheckExecute(r ApiCreatePingCheckRequest) (*PingCheckResponse, error) + func (a *DefaultAPIService) CreatePostgresqlCheck(ctx context.Context, instanceId string, projectId string) ApiCreatePostgresqlCheckRequest + func (a *DefaultAPIService) CreatePostgresqlCheckExecute(r ApiCreatePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + func (a *DefaultAPIService) CreateRabbitmqCheck(ctx context.Context, instanceId string, projectId string) ApiCreateRabbitmqCheckRequest + func (a *DefaultAPIService) CreateRabbitmqCheckExecute(r ApiCreateRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + func (a *DefaultAPIService) CreateRedisCheck(ctx context.Context, instanceId string, projectId string) ApiCreateRedisCheckRequest + func (a *DefaultAPIService) CreateRedisCheckExecute(r ApiCreateRedisCheckRequest) (*RedisCheckResponse, error) + func (a *DefaultAPIService) CreateScrapeConfig(ctx context.Context, instanceId string, projectId string) ApiCreateScrapeConfigRequest + func (a *DefaultAPIService) CreateScrapeConfigExecute(r ApiCreateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + func (a *DefaultAPIService) DeleteAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigReceiverRequest + func (a *DefaultAPIService) DeleteAlertConfigReceiverExecute(r ApiDeleteAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a *DefaultAPIService) DeleteAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigRouteRequest + func (a *DefaultAPIService) DeleteAlertConfigRouteExecute(r ApiDeleteAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a *DefaultAPIService) DeleteAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiDeleteAlertRecordRequest + func (a *DefaultAPIService) DeleteAlertRecordExecute(r ApiDeleteAlertRecordRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) DeleteAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertRecordsRequest + func (a *DefaultAPIService) DeleteAlertRecordsExecute(r ApiDeleteAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) DeleteAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertgroupRequest + func (a *DefaultAPIService) DeleteAlertgroupExecute(r ApiDeleteAlertgroupRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) DeleteAlertgroups(ctx context.Context, instanceId string, projectId string) ApiDeleteAlertgroupsRequest + func (a *DefaultAPIService) DeleteAlertgroupsExecute(r ApiDeleteAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) DeleteAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiDeleteAlertruleRequest + func (a *DefaultAPIService) DeleteAlertruleExecute(r ApiDeleteAlertruleRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) DeleteAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertrulesRequest + func (a *DefaultAPIService) DeleteAlertrulesExecute(r ApiDeleteAlertrulesRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) DeleteCertCheck(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteCertCheckRequest + func (a *DefaultAPIService) DeleteCertCheckExecute(r ApiDeleteCertCheckRequest) (*CertCheckResponse, error) + func (a *DefaultAPIService) DeleteCredentials(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRequest + func (a *DefaultAPIService) DeleteCredentialsExecute(r ApiDeleteCredentialsRequest) (*Message, error) + func (a *DefaultAPIService) DeleteCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRemoteWriteConfigRequest + func (a *DefaultAPIService) DeleteCredentialsRemoteWriteConfigExecute(r ApiDeleteCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteDeleteResponse, error) + func (a *DefaultAPIService) DeleteElasticsearchCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteElasticsearchCheckRequest + func (a *DefaultAPIService) DeleteElasticsearchCheckExecute(r ApiDeleteElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + func (a *DefaultAPIService) DeleteHttpCheck(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteHttpCheckRequest + func (a *DefaultAPIService) DeleteHttpCheckExecute(r ApiDeleteHttpCheckRequest) (*HttpCheckResponse, error) + func (a *DefaultAPIService) DeleteInstance(ctx context.Context, instanceId string, projectId string) ApiDeleteInstanceRequest + func (a *DefaultAPIService) DeleteInstanceExecute(r ApiDeleteInstanceRequest) (*InstanceResponse, error) + func (a *DefaultAPIService) DeleteLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteLogsAlertgroupRequest + func (a *DefaultAPIService) DeleteLogsAlertgroupExecute(r ApiDeleteLogsAlertgroupRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) DeleteMongodbCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMongodbCheckRequest + func (a *DefaultAPIService) DeleteMongodbCheckExecute(r ApiDeleteMongodbCheckRequest) (*MongodbCheckResponse, error) + func (a *DefaultAPIService) DeleteMysqlCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMysqlCheckRequest + func (a *DefaultAPIService) DeleteMysqlCheckExecute(r ApiDeleteMysqlCheckRequest) (*MysqlCheckResponse, error) + func (a *DefaultAPIService) DeleteNetworkCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteNetworkCheckRequest + func (a *DefaultAPIService) DeleteNetworkCheckExecute(r ApiDeleteNetworkCheckRequest) (*NetworkCheckResponse, error) + func (a *DefaultAPIService) DeletePingCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePingCheckRequest + func (a *DefaultAPIService) DeletePingCheckExecute(r ApiDeletePingCheckRequest) (*PingCheckResponse, error) + func (a *DefaultAPIService) DeletePostgresqlCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePostgresqlCheckRequest + func (a *DefaultAPIService) DeletePostgresqlCheckExecute(r ApiDeletePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + func (a *DefaultAPIService) DeleteRabbitmqCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRabbitmqCheckRequest + func (a *DefaultAPIService) DeleteRabbitmqCheckExecute(r ApiDeleteRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + func (a *DefaultAPIService) DeleteRedisCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRedisCheckRequest + func (a *DefaultAPIService) DeleteRedisCheckExecute(r ApiDeleteRedisCheckRequest) (*RedisCheckResponse, error) + func (a *DefaultAPIService) DeleteScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiDeleteScrapeConfigRequest + func (a *DefaultAPIService) DeleteScrapeConfigExecute(r ApiDeleteScrapeConfigRequest) (*DeleteScrapeConfigResponse, error) + func (a *DefaultAPIService) DeleteScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiDeleteScrapeConfigsRequest + func (a *DefaultAPIService) DeleteScrapeConfigsExecute(r ApiDeleteScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + func (a *DefaultAPIService) GetAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigReceiverRequest + func (a *DefaultAPIService) GetAlertConfigReceiverExecute(r ApiGetAlertConfigReceiverRequest) (*Receiver, error) + func (a *DefaultAPIService) GetAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigRouteRequest + func (a *DefaultAPIService) GetAlertConfigRouteExecute(r ApiGetAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a *DefaultAPIService) GetAlertConfigs(ctx context.Context, instanceId string, projectId string) ApiGetAlertConfigsRequest + func (a *DefaultAPIService) GetAlertConfigsExecute(r ApiGetAlertConfigsRequest) (*GetAlertConfigsResponse, error) + func (a *DefaultAPIService) GetAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiGetAlertRecordRequest + func (a *DefaultAPIService) GetAlertRecordExecute(r ApiGetAlertRecordRequest) (*AlertRecordResponse, error) + func (a *DefaultAPIService) GetAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetAlertgroupRequest + func (a *DefaultAPIService) GetAlertgroupExecute(r ApiGetAlertgroupRequest) (*AlertGroupResponse, error) + func (a *DefaultAPIService) GetAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiGetAlertruleRequest + func (a *DefaultAPIService) GetAlertruleExecute(r ApiGetAlertruleRequest) (*AlertRuleResponse, error) + func (a *DefaultAPIService) GetCredentials(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRequest + func (a *DefaultAPIService) GetCredentialsExecute(r ApiGetCredentialsRequest) (*GetCredentialsResponse, error) + func (a *DefaultAPIService) GetCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRemoteWriteConfigRequest + func (a *DefaultAPIService) GetCredentialsRemoteWriteConfigExecute(r ApiGetCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + func (a *DefaultAPIService) GetGrafanaConfigs(ctx context.Context, instanceId string, projectId string) ApiGetGrafanaConfigsRequest + func (a *DefaultAPIService) GetGrafanaConfigsExecute(r ApiGetGrafanaConfigsRequest) (*GrafanaConfigs, error) + func (a *DefaultAPIService) GetInstance(ctx context.Context, instanceId string, projectId string) ApiGetInstanceRequest + func (a *DefaultAPIService) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a *DefaultAPIService) GetLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetLogsAlertgroupRequest + func (a *DefaultAPIService) GetLogsAlertgroupExecute(r ApiGetLogsAlertgroupRequest) (*AlertGroupResponse, error) + func (a *DefaultAPIService) GetLogsConfigs(ctx context.Context, instanceId string, projectId string) ApiGetLogsConfigsRequest + func (a *DefaultAPIService) GetLogsConfigsExecute(r ApiGetLogsConfigsRequest) (*LogsConfigResponse, error) + func (a *DefaultAPIService) GetMetricsStorageRetention(ctx context.Context, instanceId string, projectId string) ApiGetMetricsStorageRetentionRequest + func (a *DefaultAPIService) GetMetricsStorageRetentionExecute(r ApiGetMetricsStorageRetentionRequest) (*GetMetricsStorageRetentionResponse, error) + func (a *DefaultAPIService) GetScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiGetScrapeConfigRequest + func (a *DefaultAPIService) GetScrapeConfigExecute(r ApiGetScrapeConfigRequest) (*GetScrapeConfigResponse, error) + func (a *DefaultAPIService) GetTracesConfigs(ctx context.Context, instanceId string, projectId string) ApiGetTracesConfigsRequest + func (a *DefaultAPIService) GetTracesConfigsExecute(r ApiGetTracesConfigsRequest) (*TracesConfigResponse, error) + func (a *DefaultAPIService) ListACL(ctx context.Context, instanceId string, projectId string) ApiListACLRequest + func (a *DefaultAPIService) ListACLExecute(r ApiListACLRequest) (*ListACLResponse, error) + func (a *DefaultAPIService) ListAlertConfigReceivers(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigReceiversRequest + func (a *DefaultAPIService) ListAlertConfigReceiversExecute(r ApiListAlertConfigReceiversRequest) (*AlertConfigReceiversResponse, error) + func (a *DefaultAPIService) ListAlertConfigRoutes(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigRoutesRequest + func (a *DefaultAPIService) ListAlertConfigRoutesExecute(r ApiListAlertConfigRoutesRequest) (*AlertConfigRouteResponse, error) + func (a *DefaultAPIService) ListAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertRecordsRequest + func (a *DefaultAPIService) ListAlertRecordsExecute(r ApiListAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) ListAlertgroups(ctx context.Context, instanceId string, projectId string) ApiListAlertgroupsRequest + func (a *DefaultAPIService) ListAlertgroupsExecute(r ApiListAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) ListAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertrulesRequest + func (a *DefaultAPIService) ListAlertrulesExecute(r ApiListAlertrulesRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) ListBackupRetentions(ctx context.Context, instanceId string, projectId string) ApiListBackupRetentionsRequest + func (a *DefaultAPIService) ListBackupRetentionsExecute(r ApiListBackupRetentionsRequest) (*BackupRetentionResponse, error) + func (a *DefaultAPIService) ListBackupSchedules(ctx context.Context, instanceId string, projectId string) ApiListBackupSchedulesRequest + func (a *DefaultAPIService) ListBackupSchedulesExecute(r ApiListBackupSchedulesRequest) (*BackupScheduleResponse, error) + func (a *DefaultAPIService) ListBackups(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + func (a *DefaultAPIService) ListBackupsExecute(r ApiListBackupsRequest) (*BackupResponse, error) + func (a *DefaultAPIService) ListCertChecks(ctx context.Context, instanceId string, projectId string) ApiListCertChecksRequest + func (a *DefaultAPIService) ListCertChecksExecute(r ApiListCertChecksRequest) (*CertCheckResponse, error) + func (a *DefaultAPIService) ListCredentials(ctx context.Context, instanceId string, projectId string) ApiListCredentialsRequest + func (a *DefaultAPIService) ListCredentialsExecute(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + func (a *DefaultAPIService) ListElasticsearchChecks(ctx context.Context, instanceId string, projectId string) ApiListElasticsearchChecksRequest + func (a *DefaultAPIService) ListElasticsearchChecksExecute(r ApiListElasticsearchChecksRequest) (*ElasticsearchCheckResponse, error) + func (a *DefaultAPIService) ListHttpChecks(ctx context.Context, instanceId string, projectId string) ApiListHttpChecksRequest + func (a *DefaultAPIService) ListHttpChecksExecute(r ApiListHttpChecksRequest) (*HttpCheckResponse, error) + func (a *DefaultAPIService) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a *DefaultAPIService) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a *DefaultAPIService) ListLogsAlertgroups(ctx context.Context, instanceId string, projectId string) ApiListLogsAlertgroupsRequest + func (a *DefaultAPIService) ListLogsAlertgroupsExecute(r ApiListLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) ListMongodbChecks(ctx context.Context, instanceId string, projectId string) ApiListMongodbChecksRequest + func (a *DefaultAPIService) ListMongodbChecksExecute(r ApiListMongodbChecksRequest) (*MongodbCheckResponse, error) + func (a *DefaultAPIService) ListMysqlChecks(ctx context.Context, instanceId string, projectId string) ApiListMysqlChecksRequest + func (a *DefaultAPIService) ListMysqlChecksExecute(r ApiListMysqlChecksRequest) (*MysqlCheckResponse, error) + func (a *DefaultAPIService) ListNetworkChecks(ctx context.Context, instanceId string, projectId string) ApiListNetworkChecksRequest + func (a *DefaultAPIService) ListNetworkChecksExecute(r ApiListNetworkChecksRequest) (*NetworkCheckResponse, error) + func (a *DefaultAPIService) ListOfferings(ctx context.Context, projectId string) ApiListOfferingsRequest + func (a *DefaultAPIService) ListOfferingsExecute(r ApiListOfferingsRequest) (*Offerings, error) + func (a *DefaultAPIService) ListPingChecks(ctx context.Context, instanceId string, projectId string) ApiListPingChecksRequest + func (a *DefaultAPIService) ListPingChecksExecute(r ApiListPingChecksRequest) (*PingCheckResponse, error) + func (a *DefaultAPIService) ListPlans(ctx context.Context, projectId string) ApiListPlansRequest + func (a *DefaultAPIService) ListPlansExecute(r ApiListPlansRequest) (*PlansResponse, error) + func (a *DefaultAPIService) ListPostgresqlChecks(ctx context.Context, instanceId string, projectId string) ApiListPostgresqlChecksRequest + func (a *DefaultAPIService) ListPostgresqlChecksExecute(r ApiListPostgresqlChecksRequest) (*PostgresqlCheckResponse, error) + func (a *DefaultAPIService) ListRabbitmqChecks(ctx context.Context, instanceId string, projectId string) ApiListRabbitmqChecksRequest + func (a *DefaultAPIService) ListRabbitmqChecksExecute(r ApiListRabbitmqChecksRequest) (*RabbitmqCheckResponse, error) + func (a *DefaultAPIService) ListRedisChecks(ctx context.Context, instanceId string, projectId string) ApiListRedisChecksRequest + func (a *DefaultAPIService) ListRedisChecksExecute(r ApiListRedisChecksRequest) (*RedisCheckResponse, error) + func (a *DefaultAPIService) ListScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiListScrapeConfigsRequest + func (a *DefaultAPIService) ListScrapeConfigsExecute(r ApiListScrapeConfigsRequest) (*ListScrapeConfigsResponse, error) + func (a *DefaultAPIService) PartialUpdateAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertRecordsRequest + func (a *DefaultAPIService) PartialUpdateAlertRecordsExecute(r ApiPartialUpdateAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) PartialUpdateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateAlertgroupsRequest + func (a *DefaultAPIService) PartialUpdateAlertgroupsExecute(r ApiPartialUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) PartialUpdateAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertrulesRequest + func (a *DefaultAPIService) PartialUpdateAlertrulesExecute(r ApiPartialUpdateAlertrulesRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) PartialUpdateScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateScrapeConfigsRequest + func (a *DefaultAPIService) PartialUpdateScrapeConfigsExecute(r ApiPartialUpdateScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + func (a *DefaultAPIService) RestoreBackup(ctx context.Context, backupDate string, instanceId string, projectId string) ApiRestoreBackupRequest + func (a *DefaultAPIService) RestoreBackupExecute(r ApiRestoreBackupRequest) (*Message, error) + func (a *DefaultAPIService) UpdateACL(ctx context.Context, instanceId string, projectId string) ApiUpdateACLRequest + func (a *DefaultAPIService) UpdateACLExecute(r ApiUpdateACLRequest) (*Message, error) + func (a *DefaultAPIService) UpdateAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigReceiverRequest + func (a *DefaultAPIService) UpdateAlertConfigReceiverExecute(r ApiUpdateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a *DefaultAPIService) UpdateAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigRouteRequest + func (a *DefaultAPIService) UpdateAlertConfigRouteExecute(r ApiUpdateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a *DefaultAPIService) UpdateAlertConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertConfigsRequest + func (a *DefaultAPIService) UpdateAlertConfigsExecute(r ApiUpdateAlertConfigsRequest) (*UpdateAlertConfigsResponse, error) + func (a *DefaultAPIService) UpdateAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiUpdateAlertRecordRequest + func (a *DefaultAPIService) UpdateAlertRecordExecute(r ApiUpdateAlertRecordRequest) (*AlertRecordsResponse, error) + func (a *DefaultAPIService) UpdateAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateAlertgroupRequest + func (a *DefaultAPIService) UpdateAlertgroupExecute(r ApiUpdateAlertgroupRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) UpdateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertgroupsRequest + func (a *DefaultAPIService) UpdateAlertgroupsExecute(r ApiUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) UpdateAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiUpdateAlertruleRequest + func (a *DefaultAPIService) UpdateAlertruleExecute(r ApiUpdateAlertruleRequest) (*AlertRulesResponse, error) + func (a *DefaultAPIService) UpdateCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiUpdateCredentialsRemoteWriteConfigRequest + func (a *DefaultAPIService) UpdateCredentialsRemoteWriteConfigExecute(r ApiUpdateCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + func (a *DefaultAPIService) UpdateGrafanaConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateGrafanaConfigsRequest + func (a *DefaultAPIService) UpdateGrafanaConfigsExecute(r ApiUpdateGrafanaConfigsRequest) (*Message, error) + func (a *DefaultAPIService) UpdateInstance(ctx context.Context, instanceId string, projectId string) ApiUpdateInstanceRequest + func (a *DefaultAPIService) UpdateInstanceExecute(r ApiUpdateInstanceRequest) (*InstanceResponse, error) + func (a *DefaultAPIService) UpdateLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateLogsAlertgroupRequest + func (a *DefaultAPIService) UpdateLogsAlertgroupExecute(r ApiUpdateLogsAlertgroupRequest) (*AlertGroupsResponse, error) + func (a *DefaultAPIService) UpdateLogsConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateLogsConfigsRequest + func (a *DefaultAPIService) UpdateLogsConfigsExecute(r ApiUpdateLogsConfigsRequest) (*Message, error) + func (a *DefaultAPIService) UpdateMetricsStorageRetention(ctx context.Context, instanceId string, projectId string) ApiUpdateMetricsStorageRetentionRequest + func (a *DefaultAPIService) UpdateMetricsStorageRetentionExecute(r ApiUpdateMetricsStorageRetentionRequest) (*Message, error) + func (a *DefaultAPIService) UpdateScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiUpdateScrapeConfigRequest + func (a *DefaultAPIService) UpdateScrapeConfigExecute(r ApiUpdateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + func (a *DefaultAPIService) UpdateTracesConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateTracesConfigsRequest + func (a *DefaultAPIService) UpdateTracesConfigsExecute(r ApiUpdateTracesConfigsRequest) (*Message, error) + type DefaultAPIServiceMock struct + CreateAlertConfigReceiverExecuteMock *func(r ApiCreateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + CreateAlertConfigRouteExecuteMock *func(r ApiCreateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + CreateAlertRecordExecuteMock *func(r ApiCreateAlertRecordRequest) (*AlertRecordsResponse, error) + CreateAlertgroupsExecuteMock *func(r ApiCreateAlertgroupsRequest) (*AlertGroupsResponse, error) + CreateAlertrulesExecuteMock *func(r ApiCreateAlertrulesRequest) (*AlertRulesResponse, error) + CreateBackupExecuteMock *func(r ApiCreateBackupRequest) (*Message, error) + CreateBackupScheduleExecuteMock *func(r ApiCreateBackupScheduleRequest) (*BackupSchedulePostResponse, error) + CreateCertCheckExecuteMock *func(r ApiCreateCertCheckRequest) (*CertCheckResponse, error) + CreateCredentialsExecuteMock *func(r ApiCreateCredentialsRequest) (*CreateCredentialsResponse, error) + CreateElasticsearchCheckExecuteMock *func(r ApiCreateElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + CreateHttpCheckExecuteMock *func(r ApiCreateHttpCheckRequest) (*HttpCheckResponse, error) + CreateInstanceExecuteMock *func(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + CreateLogsAlertgroupsExecuteMock *func(r ApiCreateLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + CreateMongodbCheckExecuteMock *func(r ApiCreateMongodbCheckRequest) (*MongodbCheckResponse, error) + CreateMysqlCheckExecuteMock *func(r ApiCreateMysqlCheckRequest) (*MysqlCheckResponse, error) + CreateNetworkCheckExecuteMock *func(r ApiCreateNetworkCheckRequest) (*NetworkCheckResponse, error) + CreatePingCheckExecuteMock *func(r ApiCreatePingCheckRequest) (*PingCheckResponse, error) + CreatePostgresqlCheckExecuteMock *func(r ApiCreatePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + CreateRabbitmqCheckExecuteMock *func(r ApiCreateRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + CreateRedisCheckExecuteMock *func(r ApiCreateRedisCheckRequest) (*RedisCheckResponse, error) + CreateScrapeConfigExecuteMock *func(r ApiCreateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + DeleteAlertConfigReceiverExecuteMock *func(r ApiDeleteAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + DeleteAlertConfigRouteExecuteMock *func(r ApiDeleteAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + DeleteAlertRecordExecuteMock *func(r ApiDeleteAlertRecordRequest) (*AlertRecordsResponse, error) + DeleteAlertRecordsExecuteMock *func(r ApiDeleteAlertRecordsRequest) (*AlertRecordsResponse, error) + DeleteAlertgroupExecuteMock *func(r ApiDeleteAlertgroupRequest) (*AlertGroupsResponse, error) + DeleteAlertgroupsExecuteMock *func(r ApiDeleteAlertgroupsRequest) (*AlertGroupsResponse, error) + DeleteAlertruleExecuteMock *func(r ApiDeleteAlertruleRequest) (*AlertRulesResponse, error) + DeleteAlertrulesExecuteMock *func(r ApiDeleteAlertrulesRequest) (*AlertRulesResponse, error) + DeleteCertCheckExecuteMock *func(r ApiDeleteCertCheckRequest) (*CertCheckResponse, error) + DeleteCredentialsExecuteMock *func(r ApiDeleteCredentialsRequest) (*Message, error) + DeleteCredentialsRemoteWriteConfigExecuteMock *func(r ApiDeleteCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteDeleteResponse, error) + DeleteElasticsearchCheckExecuteMock *func(r ApiDeleteElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + DeleteHttpCheckExecuteMock *func(r ApiDeleteHttpCheckRequest) (*HttpCheckResponse, error) + DeleteInstanceExecuteMock *func(r ApiDeleteInstanceRequest) (*InstanceResponse, error) + DeleteLogsAlertgroupExecuteMock *func(r ApiDeleteLogsAlertgroupRequest) (*AlertGroupsResponse, error) + DeleteMongodbCheckExecuteMock *func(r ApiDeleteMongodbCheckRequest) (*MongodbCheckResponse, error) + DeleteMysqlCheckExecuteMock *func(r ApiDeleteMysqlCheckRequest) (*MysqlCheckResponse, error) + DeleteNetworkCheckExecuteMock *func(r ApiDeleteNetworkCheckRequest) (*NetworkCheckResponse, error) + DeletePingCheckExecuteMock *func(r ApiDeletePingCheckRequest) (*PingCheckResponse, error) + DeletePostgresqlCheckExecuteMock *func(r ApiDeletePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + DeleteRabbitmqCheckExecuteMock *func(r ApiDeleteRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + DeleteRedisCheckExecuteMock *func(r ApiDeleteRedisCheckRequest) (*RedisCheckResponse, error) + DeleteScrapeConfigExecuteMock *func(r ApiDeleteScrapeConfigRequest) (*DeleteScrapeConfigResponse, error) + DeleteScrapeConfigsExecuteMock *func(r ApiDeleteScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + GetAlertConfigReceiverExecuteMock *func(r ApiGetAlertConfigReceiverRequest) (*Receiver, error) + GetAlertConfigRouteExecuteMock *func(r ApiGetAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + GetAlertConfigsExecuteMock *func(r ApiGetAlertConfigsRequest) (*GetAlertConfigsResponse, error) + GetAlertRecordExecuteMock *func(r ApiGetAlertRecordRequest) (*AlertRecordResponse, error) + GetAlertgroupExecuteMock *func(r ApiGetAlertgroupRequest) (*AlertGroupResponse, error) + GetAlertruleExecuteMock *func(r ApiGetAlertruleRequest) (*AlertRuleResponse, error) + GetCredentialsExecuteMock *func(r ApiGetCredentialsRequest) (*GetCredentialsResponse, error) + GetCredentialsRemoteWriteConfigExecuteMock *func(r ApiGetCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + GetGrafanaConfigsExecuteMock *func(r ApiGetGrafanaConfigsRequest) (*GrafanaConfigs, error) + GetInstanceExecuteMock *func(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + GetLogsAlertgroupExecuteMock *func(r ApiGetLogsAlertgroupRequest) (*AlertGroupResponse, error) + GetLogsConfigsExecuteMock *func(r ApiGetLogsConfigsRequest) (*LogsConfigResponse, error) + GetMetricsStorageRetentionExecuteMock *func(r ApiGetMetricsStorageRetentionRequest) (*GetMetricsStorageRetentionResponse, error) + GetScrapeConfigExecuteMock *func(r ApiGetScrapeConfigRequest) (*GetScrapeConfigResponse, error) + GetTracesConfigsExecuteMock *func(r ApiGetTracesConfigsRequest) (*TracesConfigResponse, error) + ListACLExecuteMock *func(r ApiListACLRequest) (*ListACLResponse, error) + ListAlertConfigReceiversExecuteMock *func(r ApiListAlertConfigReceiversRequest) (*AlertConfigReceiversResponse, error) + ListAlertConfigRoutesExecuteMock *func(r ApiListAlertConfigRoutesRequest) (*AlertConfigRouteResponse, error) + ListAlertRecordsExecuteMock *func(r ApiListAlertRecordsRequest) (*AlertRecordsResponse, error) + ListAlertgroupsExecuteMock *func(r ApiListAlertgroupsRequest) (*AlertGroupsResponse, error) + ListAlertrulesExecuteMock *func(r ApiListAlertrulesRequest) (*AlertRulesResponse, error) + ListBackupRetentionsExecuteMock *func(r ApiListBackupRetentionsRequest) (*BackupRetentionResponse, error) + ListBackupSchedulesExecuteMock *func(r ApiListBackupSchedulesRequest) (*BackupScheduleResponse, error) + ListBackupsExecuteMock *func(r ApiListBackupsRequest) (*BackupResponse, error) + ListCertChecksExecuteMock *func(r ApiListCertChecksRequest) (*CertCheckResponse, error) + ListCredentialsExecuteMock *func(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + ListElasticsearchChecksExecuteMock *func(r ApiListElasticsearchChecksRequest) (*ElasticsearchCheckResponse, error) + ListHttpChecksExecuteMock *func(r ApiListHttpChecksRequest) (*HttpCheckResponse, error) + ListInstancesExecuteMock *func(r ApiListInstancesRequest) (*ListInstancesResponse, error) + ListLogsAlertgroupsExecuteMock *func(r ApiListLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + ListMongodbChecksExecuteMock *func(r ApiListMongodbChecksRequest) (*MongodbCheckResponse, error) + ListMysqlChecksExecuteMock *func(r ApiListMysqlChecksRequest) (*MysqlCheckResponse, error) + ListNetworkChecksExecuteMock *func(r ApiListNetworkChecksRequest) (*NetworkCheckResponse, error) + ListOfferingsExecuteMock *func(r ApiListOfferingsRequest) (*Offerings, error) + ListPingChecksExecuteMock *func(r ApiListPingChecksRequest) (*PingCheckResponse, error) + ListPlansExecuteMock *func(r ApiListPlansRequest) (*PlansResponse, error) + ListPostgresqlChecksExecuteMock *func(r ApiListPostgresqlChecksRequest) (*PostgresqlCheckResponse, error) + ListRabbitmqChecksExecuteMock *func(r ApiListRabbitmqChecksRequest) (*RabbitmqCheckResponse, error) + ListRedisChecksExecuteMock *func(r ApiListRedisChecksRequest) (*RedisCheckResponse, error) + ListScrapeConfigsExecuteMock *func(r ApiListScrapeConfigsRequest) (*ListScrapeConfigsResponse, error) + PartialUpdateAlertRecordsExecuteMock *func(r ApiPartialUpdateAlertRecordsRequest) (*AlertRecordsResponse, error) + PartialUpdateAlertgroupsExecuteMock *func(r ApiPartialUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + PartialUpdateAlertrulesExecuteMock *func(r ApiPartialUpdateAlertrulesRequest) (*AlertRulesResponse, error) + PartialUpdateScrapeConfigsExecuteMock *func(r ApiPartialUpdateScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + RestoreBackupExecuteMock *func(r ApiRestoreBackupRequest) (*Message, error) + UpdateACLExecuteMock *func(r ApiUpdateACLRequest) (*Message, error) + UpdateAlertConfigReceiverExecuteMock *func(r ApiUpdateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + UpdateAlertConfigRouteExecuteMock *func(r ApiUpdateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + UpdateAlertConfigsExecuteMock *func(r ApiUpdateAlertConfigsRequest) (*UpdateAlertConfigsResponse, error) + UpdateAlertRecordExecuteMock *func(r ApiUpdateAlertRecordRequest) (*AlertRecordsResponse, error) + UpdateAlertgroupExecuteMock *func(r ApiUpdateAlertgroupRequest) (*AlertGroupsResponse, error) + UpdateAlertgroupsExecuteMock *func(r ApiUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + UpdateAlertruleExecuteMock *func(r ApiUpdateAlertruleRequest) (*AlertRulesResponse, error) + UpdateCredentialsRemoteWriteConfigExecuteMock *func(r ApiUpdateCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + UpdateGrafanaConfigsExecuteMock *func(r ApiUpdateGrafanaConfigsRequest) (*Message, error) + UpdateInstanceExecuteMock *func(r ApiUpdateInstanceRequest) (*InstanceResponse, error) + UpdateLogsAlertgroupExecuteMock *func(r ApiUpdateLogsAlertgroupRequest) (*AlertGroupsResponse, error) + UpdateLogsConfigsExecuteMock *func(r ApiUpdateLogsConfigsRequest) (*Message, error) + UpdateMetricsStorageRetentionExecuteMock *func(r ApiUpdateMetricsStorageRetentionRequest) (*Message, error) + UpdateScrapeConfigExecuteMock *func(r ApiUpdateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + UpdateTracesConfigsExecuteMock *func(r ApiUpdateTracesConfigsRequest) (*Message, error) + func (a DefaultAPIServiceMock) CreateAlertConfigReceiver(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigReceiverRequest + func (a DefaultAPIServiceMock) CreateAlertConfigReceiverExecute(r ApiCreateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a DefaultAPIServiceMock) CreateAlertConfigRoute(ctx context.Context, instanceId string, projectId string) ApiCreateAlertConfigRouteRequest + func (a DefaultAPIServiceMock) CreateAlertConfigRouteExecute(r ApiCreateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a DefaultAPIServiceMock) CreateAlertRecord(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertRecordRequest + func (a DefaultAPIServiceMock) CreateAlertRecordExecute(r ApiCreateAlertRecordRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) CreateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiCreateAlertgroupsRequest + func (a DefaultAPIServiceMock) CreateAlertgroupsExecute(r ApiCreateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) CreateAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiCreateAlertrulesRequest + func (a DefaultAPIServiceMock) CreateAlertrulesExecute(r ApiCreateAlertrulesRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) CreateBackup(ctx context.Context, instanceId string, projectId string) ApiCreateBackupRequest + func (a DefaultAPIServiceMock) CreateBackupExecute(r ApiCreateBackupRequest) (*Message, error) + func (a DefaultAPIServiceMock) CreateBackupSchedule(ctx context.Context, instanceId string, projectId string) ApiCreateBackupScheduleRequest + func (a DefaultAPIServiceMock) CreateBackupScheduleExecute(r ApiCreateBackupScheduleRequest) (*BackupSchedulePostResponse, error) + func (a DefaultAPIServiceMock) CreateCertCheck(ctx context.Context, instanceId string, projectId string) ApiCreateCertCheckRequest + func (a DefaultAPIServiceMock) CreateCertCheckExecute(r ApiCreateCertCheckRequest) (*CertCheckResponse, error) + func (a DefaultAPIServiceMock) CreateCredentials(ctx context.Context, instanceId string, projectId string) ApiCreateCredentialsRequest + func (a DefaultAPIServiceMock) CreateCredentialsExecute(r ApiCreateCredentialsRequest) (*CreateCredentialsResponse, error) + func (a DefaultAPIServiceMock) CreateElasticsearchCheck(ctx context.Context, instanceId string, projectId string) ApiCreateElasticsearchCheckRequest + func (a DefaultAPIServiceMock) CreateElasticsearchCheckExecute(r ApiCreateElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + func (a DefaultAPIServiceMock) CreateHttpCheck(ctx context.Context, instanceId string, projectId string) ApiCreateHttpCheckRequest + func (a DefaultAPIServiceMock) CreateHttpCheckExecute(r ApiCreateHttpCheckRequest) (*HttpCheckResponse, error) + func (a DefaultAPIServiceMock) CreateInstance(ctx context.Context, projectId string) ApiCreateInstanceRequest + func (a DefaultAPIServiceMock) CreateInstanceExecute(r ApiCreateInstanceRequest) (*CreateInstanceResponse, error) + func (a DefaultAPIServiceMock) CreateLogsAlertgroups(ctx context.Context, instanceId string, projectId string) ApiCreateLogsAlertgroupsRequest + func (a DefaultAPIServiceMock) CreateLogsAlertgroupsExecute(r ApiCreateLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) CreateMongodbCheck(ctx context.Context, instanceId string, projectId string) ApiCreateMongodbCheckRequest + func (a DefaultAPIServiceMock) CreateMongodbCheckExecute(r ApiCreateMongodbCheckRequest) (*MongodbCheckResponse, error) + func (a DefaultAPIServiceMock) CreateMysqlCheck(ctx context.Context, instanceId string, projectId string) ApiCreateMysqlCheckRequest + func (a DefaultAPIServiceMock) CreateMysqlCheckExecute(r ApiCreateMysqlCheckRequest) (*MysqlCheckResponse, error) + func (a DefaultAPIServiceMock) CreateNetworkCheck(ctx context.Context, instanceId string, projectId string) ApiCreateNetworkCheckRequest + func (a DefaultAPIServiceMock) CreateNetworkCheckExecute(r ApiCreateNetworkCheckRequest) (*NetworkCheckResponse, error) + func (a DefaultAPIServiceMock) CreatePingCheck(ctx context.Context, instanceId string, projectId string) ApiCreatePingCheckRequest + func (a DefaultAPIServiceMock) CreatePingCheckExecute(r ApiCreatePingCheckRequest) (*PingCheckResponse, error) + func (a DefaultAPIServiceMock) CreatePostgresqlCheck(ctx context.Context, instanceId string, projectId string) ApiCreatePostgresqlCheckRequest + func (a DefaultAPIServiceMock) CreatePostgresqlCheckExecute(r ApiCreatePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + func (a DefaultAPIServiceMock) CreateRabbitmqCheck(ctx context.Context, instanceId string, projectId string) ApiCreateRabbitmqCheckRequest + func (a DefaultAPIServiceMock) CreateRabbitmqCheckExecute(r ApiCreateRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + func (a DefaultAPIServiceMock) CreateRedisCheck(ctx context.Context, instanceId string, projectId string) ApiCreateRedisCheckRequest + func (a DefaultAPIServiceMock) CreateRedisCheckExecute(r ApiCreateRedisCheckRequest) (*RedisCheckResponse, error) + func (a DefaultAPIServiceMock) CreateScrapeConfig(ctx context.Context, instanceId string, projectId string) ApiCreateScrapeConfigRequest + func (a DefaultAPIServiceMock) CreateScrapeConfigExecute(r ApiCreateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigReceiverRequest + func (a DefaultAPIServiceMock) DeleteAlertConfigReceiverExecute(r ApiDeleteAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiDeleteAlertConfigRouteRequest + func (a DefaultAPIServiceMock) DeleteAlertConfigRouteExecute(r ApiDeleteAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiDeleteAlertRecordRequest + func (a DefaultAPIServiceMock) DeleteAlertRecordExecute(r ApiDeleteAlertRecordRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertRecordsRequest + func (a DefaultAPIServiceMock) DeleteAlertRecordsExecute(r ApiDeleteAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertgroupRequest + func (a DefaultAPIServiceMock) DeleteAlertgroupExecute(r ApiDeleteAlertgroupRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertgroups(ctx context.Context, instanceId string, projectId string) ApiDeleteAlertgroupsRequest + func (a DefaultAPIServiceMock) DeleteAlertgroupsExecute(r ApiDeleteAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiDeleteAlertruleRequest + func (a DefaultAPIServiceMock) DeleteAlertruleExecute(r ApiDeleteAlertruleRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) DeleteAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteAlertrulesRequest + func (a DefaultAPIServiceMock) DeleteAlertrulesExecute(r ApiDeleteAlertrulesRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) DeleteCertCheck(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteCertCheckRequest + func (a DefaultAPIServiceMock) DeleteCertCheckExecute(r ApiDeleteCertCheckRequest) (*CertCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteCredentials(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRequest + func (a DefaultAPIServiceMock) DeleteCredentialsExecute(r ApiDeleteCredentialsRequest) (*Message, error) + func (a DefaultAPIServiceMock) DeleteCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiDeleteCredentialsRemoteWriteConfigRequest + func (a DefaultAPIServiceMock) DeleteCredentialsRemoteWriteConfigExecute(r ApiDeleteCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteDeleteResponse, error) + func (a DefaultAPIServiceMock) DeleteElasticsearchCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteElasticsearchCheckRequest + func (a DefaultAPIServiceMock) DeleteElasticsearchCheckExecute(r ApiDeleteElasticsearchCheckRequest) (*ElasticsearchCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteHttpCheck(ctx context.Context, instanceId string, projectId string, id string) ApiDeleteHttpCheckRequest + func (a DefaultAPIServiceMock) DeleteHttpCheckExecute(r ApiDeleteHttpCheckRequest) (*HttpCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteInstance(ctx context.Context, instanceId string, projectId string) ApiDeleteInstanceRequest + func (a DefaultAPIServiceMock) DeleteInstanceExecute(r ApiDeleteInstanceRequest) (*InstanceResponse, error) + func (a DefaultAPIServiceMock) DeleteLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiDeleteLogsAlertgroupRequest + func (a DefaultAPIServiceMock) DeleteLogsAlertgroupExecute(r ApiDeleteLogsAlertgroupRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) DeleteMongodbCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMongodbCheckRequest + func (a DefaultAPIServiceMock) DeleteMongodbCheckExecute(r ApiDeleteMongodbCheckRequest) (*MongodbCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteMysqlCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteMysqlCheckRequest + func (a DefaultAPIServiceMock) DeleteMysqlCheckExecute(r ApiDeleteMysqlCheckRequest) (*MysqlCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteNetworkCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteNetworkCheckRequest + func (a DefaultAPIServiceMock) DeleteNetworkCheckExecute(r ApiDeleteNetworkCheckRequest) (*NetworkCheckResponse, error) + func (a DefaultAPIServiceMock) DeletePingCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePingCheckRequest + func (a DefaultAPIServiceMock) DeletePingCheckExecute(r ApiDeletePingCheckRequest) (*PingCheckResponse, error) + func (a DefaultAPIServiceMock) DeletePostgresqlCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeletePostgresqlCheckRequest + func (a DefaultAPIServiceMock) DeletePostgresqlCheckExecute(r ApiDeletePostgresqlCheckRequest) (*PostgresqlCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteRabbitmqCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRabbitmqCheckRequest + func (a DefaultAPIServiceMock) DeleteRabbitmqCheckExecute(r ApiDeleteRabbitmqCheckRequest) (*RabbitmqCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteRedisCheck(ctx context.Context, id string, instanceId string, projectId string) ApiDeleteRedisCheckRequest + func (a DefaultAPIServiceMock) DeleteRedisCheckExecute(r ApiDeleteRedisCheckRequest) (*RedisCheckResponse, error) + func (a DefaultAPIServiceMock) DeleteScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiDeleteScrapeConfigRequest + func (a DefaultAPIServiceMock) DeleteScrapeConfigExecute(r ApiDeleteScrapeConfigRequest) (*DeleteScrapeConfigResponse, error) + func (a DefaultAPIServiceMock) DeleteScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiDeleteScrapeConfigsRequest + func (a DefaultAPIServiceMock) DeleteScrapeConfigsExecute(r ApiDeleteScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + func (a DefaultAPIServiceMock) GetAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigReceiverRequest + func (a DefaultAPIServiceMock) GetAlertConfigReceiverExecute(r ApiGetAlertConfigReceiverRequest) (*Receiver, error) + func (a DefaultAPIServiceMock) GetAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiGetAlertConfigRouteRequest + func (a DefaultAPIServiceMock) GetAlertConfigRouteExecute(r ApiGetAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a DefaultAPIServiceMock) GetAlertConfigs(ctx context.Context, instanceId string, projectId string) ApiGetAlertConfigsRequest + func (a DefaultAPIServiceMock) GetAlertConfigsExecute(r ApiGetAlertConfigsRequest) (*GetAlertConfigsResponse, error) + func (a DefaultAPIServiceMock) GetAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiGetAlertRecordRequest + func (a DefaultAPIServiceMock) GetAlertRecordExecute(r ApiGetAlertRecordRequest) (*AlertRecordResponse, error) + func (a DefaultAPIServiceMock) GetAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetAlertgroupRequest + func (a DefaultAPIServiceMock) GetAlertgroupExecute(r ApiGetAlertgroupRequest) (*AlertGroupResponse, error) + func (a DefaultAPIServiceMock) GetAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiGetAlertruleRequest + func (a DefaultAPIServiceMock) GetAlertruleExecute(r ApiGetAlertruleRequest) (*AlertRuleResponse, error) + func (a DefaultAPIServiceMock) GetCredentials(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRequest + func (a DefaultAPIServiceMock) GetCredentialsExecute(r ApiGetCredentialsRequest) (*GetCredentialsResponse, error) + func (a DefaultAPIServiceMock) GetCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiGetCredentialsRemoteWriteConfigRequest + func (a DefaultAPIServiceMock) GetCredentialsRemoteWriteConfigExecute(r ApiGetCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + func (a DefaultAPIServiceMock) GetGrafanaConfigs(ctx context.Context, instanceId string, projectId string) ApiGetGrafanaConfigsRequest + func (a DefaultAPIServiceMock) GetGrafanaConfigsExecute(r ApiGetGrafanaConfigsRequest) (*GrafanaConfigs, error) + func (a DefaultAPIServiceMock) GetInstance(ctx context.Context, instanceId string, projectId string) ApiGetInstanceRequest + func (a DefaultAPIServiceMock) GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceResponse, error) + func (a DefaultAPIServiceMock) GetLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiGetLogsAlertgroupRequest + func (a DefaultAPIServiceMock) GetLogsAlertgroupExecute(r ApiGetLogsAlertgroupRequest) (*AlertGroupResponse, error) + func (a DefaultAPIServiceMock) GetLogsConfigs(ctx context.Context, instanceId string, projectId string) ApiGetLogsConfigsRequest + func (a DefaultAPIServiceMock) GetLogsConfigsExecute(r ApiGetLogsConfigsRequest) (*LogsConfigResponse, error) + func (a DefaultAPIServiceMock) GetMetricsStorageRetention(ctx context.Context, instanceId string, projectId string) ApiGetMetricsStorageRetentionRequest + func (a DefaultAPIServiceMock) GetMetricsStorageRetentionExecute(r ApiGetMetricsStorageRetentionRequest) (*GetMetricsStorageRetentionResponse, error) + func (a DefaultAPIServiceMock) GetScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiGetScrapeConfigRequest + func (a DefaultAPIServiceMock) GetScrapeConfigExecute(r ApiGetScrapeConfigRequest) (*GetScrapeConfigResponse, error) + func (a DefaultAPIServiceMock) GetTracesConfigs(ctx context.Context, instanceId string, projectId string) ApiGetTracesConfigsRequest + func (a DefaultAPIServiceMock) GetTracesConfigsExecute(r ApiGetTracesConfigsRequest) (*TracesConfigResponse, error) + func (a DefaultAPIServiceMock) ListACL(ctx context.Context, instanceId string, projectId string) ApiListACLRequest + func (a DefaultAPIServiceMock) ListACLExecute(r ApiListACLRequest) (*ListACLResponse, error) + func (a DefaultAPIServiceMock) ListAlertConfigReceivers(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigReceiversRequest + func (a DefaultAPIServiceMock) ListAlertConfigReceiversExecute(r ApiListAlertConfigReceiversRequest) (*AlertConfigReceiversResponse, error) + func (a DefaultAPIServiceMock) ListAlertConfigRoutes(ctx context.Context, instanceId string, projectId string) ApiListAlertConfigRoutesRequest + func (a DefaultAPIServiceMock) ListAlertConfigRoutesExecute(r ApiListAlertConfigRoutesRequest) (*AlertConfigRouteResponse, error) + func (a DefaultAPIServiceMock) ListAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertRecordsRequest + func (a DefaultAPIServiceMock) ListAlertRecordsExecute(r ApiListAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) ListAlertgroups(ctx context.Context, instanceId string, projectId string) ApiListAlertgroupsRequest + func (a DefaultAPIServiceMock) ListAlertgroupsExecute(r ApiListAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) ListAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiListAlertrulesRequest + func (a DefaultAPIServiceMock) ListAlertrulesExecute(r ApiListAlertrulesRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) ListBackupRetentions(ctx context.Context, instanceId string, projectId string) ApiListBackupRetentionsRequest + func (a DefaultAPIServiceMock) ListBackupRetentionsExecute(r ApiListBackupRetentionsRequest) (*BackupRetentionResponse, error) + func (a DefaultAPIServiceMock) ListBackupSchedules(ctx context.Context, instanceId string, projectId string) ApiListBackupSchedulesRequest + func (a DefaultAPIServiceMock) ListBackupSchedulesExecute(r ApiListBackupSchedulesRequest) (*BackupScheduleResponse, error) + func (a DefaultAPIServiceMock) ListBackups(ctx context.Context, instanceId string, projectId string) ApiListBackupsRequest + func (a DefaultAPIServiceMock) ListBackupsExecute(r ApiListBackupsRequest) (*BackupResponse, error) + func (a DefaultAPIServiceMock) ListCertChecks(ctx context.Context, instanceId string, projectId string) ApiListCertChecksRequest + func (a DefaultAPIServiceMock) ListCertChecksExecute(r ApiListCertChecksRequest) (*CertCheckResponse, error) + func (a DefaultAPIServiceMock) ListCredentials(ctx context.Context, instanceId string, projectId string) ApiListCredentialsRequest + func (a DefaultAPIServiceMock) ListCredentialsExecute(r ApiListCredentialsRequest) (*ListCredentialsResponse, error) + func (a DefaultAPIServiceMock) ListElasticsearchChecks(ctx context.Context, instanceId string, projectId string) ApiListElasticsearchChecksRequest + func (a DefaultAPIServiceMock) ListElasticsearchChecksExecute(r ApiListElasticsearchChecksRequest) (*ElasticsearchCheckResponse, error) + func (a DefaultAPIServiceMock) ListHttpChecks(ctx context.Context, instanceId string, projectId string) ApiListHttpChecksRequest + func (a DefaultAPIServiceMock) ListHttpChecksExecute(r ApiListHttpChecksRequest) (*HttpCheckResponse, error) + func (a DefaultAPIServiceMock) ListInstances(ctx context.Context, projectId string) ApiListInstancesRequest + func (a DefaultAPIServiceMock) ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesResponse, error) + func (a DefaultAPIServiceMock) ListLogsAlertgroups(ctx context.Context, instanceId string, projectId string) ApiListLogsAlertgroupsRequest + func (a DefaultAPIServiceMock) ListLogsAlertgroupsExecute(r ApiListLogsAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) ListMongodbChecks(ctx context.Context, instanceId string, projectId string) ApiListMongodbChecksRequest + func (a DefaultAPIServiceMock) ListMongodbChecksExecute(r ApiListMongodbChecksRequest) (*MongodbCheckResponse, error) + func (a DefaultAPIServiceMock) ListMysqlChecks(ctx context.Context, instanceId string, projectId string) ApiListMysqlChecksRequest + func (a DefaultAPIServiceMock) ListMysqlChecksExecute(r ApiListMysqlChecksRequest) (*MysqlCheckResponse, error) + func (a DefaultAPIServiceMock) ListNetworkChecks(ctx context.Context, instanceId string, projectId string) ApiListNetworkChecksRequest + func (a DefaultAPIServiceMock) ListNetworkChecksExecute(r ApiListNetworkChecksRequest) (*NetworkCheckResponse, error) + func (a DefaultAPIServiceMock) ListOfferings(ctx context.Context, projectId string) ApiListOfferingsRequest + func (a DefaultAPIServiceMock) ListOfferingsExecute(r ApiListOfferingsRequest) (*Offerings, error) + func (a DefaultAPIServiceMock) ListPingChecks(ctx context.Context, instanceId string, projectId string) ApiListPingChecksRequest + func (a DefaultAPIServiceMock) ListPingChecksExecute(r ApiListPingChecksRequest) (*PingCheckResponse, error) + func (a DefaultAPIServiceMock) ListPlans(ctx context.Context, projectId string) ApiListPlansRequest + func (a DefaultAPIServiceMock) ListPlansExecute(r ApiListPlansRequest) (*PlansResponse, error) + func (a DefaultAPIServiceMock) ListPostgresqlChecks(ctx context.Context, instanceId string, projectId string) ApiListPostgresqlChecksRequest + func (a DefaultAPIServiceMock) ListPostgresqlChecksExecute(r ApiListPostgresqlChecksRequest) (*PostgresqlCheckResponse, error) + func (a DefaultAPIServiceMock) ListRabbitmqChecks(ctx context.Context, instanceId string, projectId string) ApiListRabbitmqChecksRequest + func (a DefaultAPIServiceMock) ListRabbitmqChecksExecute(r ApiListRabbitmqChecksRequest) (*RabbitmqCheckResponse, error) + func (a DefaultAPIServiceMock) ListRedisChecks(ctx context.Context, instanceId string, projectId string) ApiListRedisChecksRequest + func (a DefaultAPIServiceMock) ListRedisChecksExecute(r ApiListRedisChecksRequest) (*RedisCheckResponse, error) + func (a DefaultAPIServiceMock) ListScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiListScrapeConfigsRequest + func (a DefaultAPIServiceMock) ListScrapeConfigsExecute(r ApiListScrapeConfigsRequest) (*ListScrapeConfigsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateAlertRecords(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertRecordsRequest + func (a DefaultAPIServiceMock) PartialUpdateAlertRecordsExecute(r ApiPartialUpdateAlertRecordsRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateAlertgroupsRequest + func (a DefaultAPIServiceMock) PartialUpdateAlertgroupsExecute(r ApiPartialUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateAlertrules(ctx context.Context, groupName string, instanceId string, projectId string) ApiPartialUpdateAlertrulesRequest + func (a DefaultAPIServiceMock) PartialUpdateAlertrulesExecute(r ApiPartialUpdateAlertrulesRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateScrapeConfigs(ctx context.Context, instanceId string, projectId string) ApiPartialUpdateScrapeConfigsRequest + func (a DefaultAPIServiceMock) PartialUpdateScrapeConfigsExecute(r ApiPartialUpdateScrapeConfigsRequest) (*ScrapeConfigsResponse, error) + func (a DefaultAPIServiceMock) RestoreBackup(ctx context.Context, backupDate string, instanceId string, projectId string) ApiRestoreBackupRequest + func (a DefaultAPIServiceMock) RestoreBackupExecute(r ApiRestoreBackupRequest) (*Message, error) + func (a DefaultAPIServiceMock) UpdateACL(ctx context.Context, instanceId string, projectId string) ApiUpdateACLRequest + func (a DefaultAPIServiceMock) UpdateACLExecute(r ApiUpdateACLRequest) (*Message, error) + func (a DefaultAPIServiceMock) UpdateAlertConfigReceiver(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigReceiverRequest + func (a DefaultAPIServiceMock) UpdateAlertConfigReceiverExecute(r ApiUpdateAlertConfigReceiverRequest) (*AlertConfigReceiversResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertConfigRoute(ctx context.Context, instanceId string, projectId string, receiver string) ApiUpdateAlertConfigRouteRequest + func (a DefaultAPIServiceMock) UpdateAlertConfigRouteExecute(r ApiUpdateAlertConfigRouteRequest) (*AlertConfigRouteResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertConfigsRequest + func (a DefaultAPIServiceMock) UpdateAlertConfigsExecute(r ApiUpdateAlertConfigsRequest) (*UpdateAlertConfigsResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertRecord(ctx context.Context, alertRecord string, groupName string, instanceId string, ...) ApiUpdateAlertRecordRequest + func (a DefaultAPIServiceMock) UpdateAlertRecordExecute(r ApiUpdateAlertRecordRequest) (*AlertRecordsResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateAlertgroupRequest + func (a DefaultAPIServiceMock) UpdateAlertgroupExecute(r ApiUpdateAlertgroupRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertgroups(ctx context.Context, instanceId string, projectId string) ApiUpdateAlertgroupsRequest + func (a DefaultAPIServiceMock) UpdateAlertgroupsExecute(r ApiUpdateAlertgroupsRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) UpdateAlertrule(ctx context.Context, alertName string, groupName string, instanceId string, ...) ApiUpdateAlertruleRequest + func (a DefaultAPIServiceMock) UpdateAlertruleExecute(r ApiUpdateAlertruleRequest) (*AlertRulesResponse, error) + func (a DefaultAPIServiceMock) UpdateCredentialsRemoteWriteConfig(ctx context.Context, instanceId string, projectId string, username string) ApiUpdateCredentialsRemoteWriteConfigRequest + func (a DefaultAPIServiceMock) UpdateCredentialsRemoteWriteConfigExecute(r ApiUpdateCredentialsRemoteWriteConfigRequest) (*CredentialsRemoteWriteConfig, error) + func (a DefaultAPIServiceMock) UpdateGrafanaConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateGrafanaConfigsRequest + func (a DefaultAPIServiceMock) UpdateGrafanaConfigsExecute(r ApiUpdateGrafanaConfigsRequest) (*Message, error) + func (a DefaultAPIServiceMock) UpdateInstance(ctx context.Context, instanceId string, projectId string) ApiUpdateInstanceRequest + func (a DefaultAPIServiceMock) UpdateInstanceExecute(r ApiUpdateInstanceRequest) (*InstanceResponse, error) + func (a DefaultAPIServiceMock) UpdateLogsAlertgroup(ctx context.Context, groupName string, instanceId string, projectId string) ApiUpdateLogsAlertgroupRequest + func (a DefaultAPIServiceMock) UpdateLogsAlertgroupExecute(r ApiUpdateLogsAlertgroupRequest) (*AlertGroupsResponse, error) + func (a DefaultAPIServiceMock) UpdateLogsConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateLogsConfigsRequest + func (a DefaultAPIServiceMock) UpdateLogsConfigsExecute(r ApiUpdateLogsConfigsRequest) (*Message, error) + func (a DefaultAPIServiceMock) UpdateMetricsStorageRetention(ctx context.Context, instanceId string, projectId string) ApiUpdateMetricsStorageRetentionRequest + func (a DefaultAPIServiceMock) UpdateMetricsStorageRetentionExecute(r ApiUpdateMetricsStorageRetentionRequest) (*Message, error) + func (a DefaultAPIServiceMock) UpdateScrapeConfig(ctx context.Context, instanceId string, jobName string, projectId string) ApiUpdateScrapeConfigRequest + func (a DefaultAPIServiceMock) UpdateScrapeConfigExecute(r ApiUpdateScrapeConfigRequest) (*ScrapeConfigsResponse, error) + func (a DefaultAPIServiceMock) UpdateTracesConfigs(ctx context.Context, instanceId string, projectId string) ApiUpdateTracesConfigsRequest + func (a DefaultAPIServiceMock) UpdateTracesConfigsExecute(r ApiUpdateTracesConfigsRequest) (*Message, error) + type DeleteScrapeConfigResponse struct + Data []Job + Message string + func NewDeleteScrapeConfigResponse(data []Job, message string) *DeleteScrapeConfigResponse + func NewDeleteScrapeConfigResponseWithDefaults() *DeleteScrapeConfigResponse + func (o *DeleteScrapeConfigResponse) GetData() []Job + func (o *DeleteScrapeConfigResponse) GetDataOk() ([]Job, bool) + func (o *DeleteScrapeConfigResponse) GetMessage() string + func (o *DeleteScrapeConfigResponse) GetMessageOk() (*string, bool) + func (o *DeleteScrapeConfigResponse) SetData(v []Job) + func (o *DeleteScrapeConfigResponse) SetMessage(v string) + func (o *DeleteScrapeConfigResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteScrapeConfigResponse) MarshalJSON() ([]byte, error) + func (o DeleteScrapeConfigResponse) ToMap() (map[string]interface{}, error) + type ElasticsearchCheckChildResponse struct + Id string + Password *string + Server string + Username *string + func NewElasticsearchCheckChildResponse(id string, server string) *ElasticsearchCheckChildResponse + func NewElasticsearchCheckChildResponseWithDefaults() *ElasticsearchCheckChildResponse + func (o *ElasticsearchCheckChildResponse) GetId() string + func (o *ElasticsearchCheckChildResponse) GetIdOk() (*string, bool) + func (o *ElasticsearchCheckChildResponse) GetPassword() string + func (o *ElasticsearchCheckChildResponse) GetPasswordOk() (*string, bool) + func (o *ElasticsearchCheckChildResponse) GetServer() string + func (o *ElasticsearchCheckChildResponse) GetServerOk() (*string, bool) + func (o *ElasticsearchCheckChildResponse) GetUsername() string + func (o *ElasticsearchCheckChildResponse) GetUsernameOk() (*string, bool) + func (o *ElasticsearchCheckChildResponse) HasPassword() bool + func (o *ElasticsearchCheckChildResponse) HasUsername() bool + func (o *ElasticsearchCheckChildResponse) SetId(v string) + func (o *ElasticsearchCheckChildResponse) SetPassword(v string) + func (o *ElasticsearchCheckChildResponse) SetServer(v string) + func (o *ElasticsearchCheckChildResponse) SetUsername(v string) + func (o *ElasticsearchCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o ElasticsearchCheckChildResponse) MarshalJSON() ([]byte, error) + func (o ElasticsearchCheckChildResponse) ToMap() (map[string]interface{}, error) + type ElasticsearchCheckResponse struct + ElasticsearchCheck *ElasticsearchCheckChildResponse + ElasticsearchChecks []ElasticsearchCheckChildResponse + Message string + func NewElasticsearchCheckResponse(elasticsearchChecks []ElasticsearchCheckChildResponse, message string) *ElasticsearchCheckResponse + func NewElasticsearchCheckResponseWithDefaults() *ElasticsearchCheckResponse + func (o *ElasticsearchCheckResponse) GetElasticsearchCheck() ElasticsearchCheckChildResponse + func (o *ElasticsearchCheckResponse) GetElasticsearchCheckOk() (*ElasticsearchCheckChildResponse, bool) + func (o *ElasticsearchCheckResponse) GetElasticsearchChecks() []ElasticsearchCheckChildResponse + func (o *ElasticsearchCheckResponse) GetElasticsearchChecksOk() ([]ElasticsearchCheckChildResponse, bool) + func (o *ElasticsearchCheckResponse) GetMessage() string + func (o *ElasticsearchCheckResponse) GetMessageOk() (*string, bool) + func (o *ElasticsearchCheckResponse) HasElasticsearchCheck() bool + func (o *ElasticsearchCheckResponse) SetElasticsearchCheck(v ElasticsearchCheckChildResponse) + func (o *ElasticsearchCheckResponse) SetElasticsearchChecks(v []ElasticsearchCheckChildResponse) + func (o *ElasticsearchCheckResponse) SetMessage(v string) + func (o *ElasticsearchCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o ElasticsearchCheckResponse) MarshalJSON() ([]byte, error) + func (o ElasticsearchCheckResponse) ToMap() (map[string]interface{}, error) + type EmailConfig struct + AuthIdentity *string + AuthPassword *string + AuthUsername *string + From *string + SendResolved *bool + Smarthost *string + To string + func NewEmailConfig(to string) *EmailConfig + func NewEmailConfigWithDefaults() *EmailConfig + func (o *EmailConfig) GetAuthIdentity() string + func (o *EmailConfig) GetAuthIdentityOk() (*string, bool) + func (o *EmailConfig) GetAuthPassword() string + func (o *EmailConfig) GetAuthPasswordOk() (*string, bool) + func (o *EmailConfig) GetAuthUsername() string + func (o *EmailConfig) GetAuthUsernameOk() (*string, bool) + func (o *EmailConfig) GetFrom() string + func (o *EmailConfig) GetFromOk() (*string, bool) + func (o *EmailConfig) GetSendResolved() bool + func (o *EmailConfig) GetSendResolvedOk() (*bool, bool) + func (o *EmailConfig) GetSmarthost() string + func (o *EmailConfig) GetSmarthostOk() (*string, bool) + func (o *EmailConfig) GetTo() string + func (o *EmailConfig) GetToOk() (*string, bool) + func (o *EmailConfig) HasAuthIdentity() bool + func (o *EmailConfig) HasAuthPassword() bool + func (o *EmailConfig) HasAuthUsername() bool + func (o *EmailConfig) HasFrom() bool + func (o *EmailConfig) HasSendResolved() bool + func (o *EmailConfig) HasSmarthost() bool + func (o *EmailConfig) SetAuthIdentity(v string) + func (o *EmailConfig) SetAuthPassword(v string) + func (o *EmailConfig) SetAuthUsername(v string) + func (o *EmailConfig) SetFrom(v string) + func (o *EmailConfig) SetSendResolved(v bool) + func (o *EmailConfig) SetSmarthost(v string) + func (o *EmailConfig) SetTo(v string) + func (o *EmailConfig) UnmarshalJSON(data []byte) (err error) + func (o EmailConfig) MarshalJSON() ([]byte, error) + func (o EmailConfig) ToMap() (map[string]interface{}, error) + type Error struct + Errors []map[string]string + Message string + func NewError(message string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetErrors() []map[string]string + func (o *Error) GetErrorsOk() ([]map[string]string, bool) + func (o *Error) GetMessage() string + func (o *Error) GetMessageOk() (*string, bool) + func (o *Error) HasErrors() bool + func (o *Error) SetErrors(v []map[string]string) + func (o *Error) SetMessage(v string) + func (o *Error) UnmarshalJSON(data []byte) (err error) + func (o Error) MarshalJSON() ([]byte, error) + func (o Error) ToMap() (map[string]interface{}, error) + type GetAlertConfigsResponse struct + Data Alert + Message string + func NewGetAlertConfigsResponse(data Alert, message string) *GetAlertConfigsResponse + func NewGetAlertConfigsResponseWithDefaults() *GetAlertConfigsResponse + func (o *GetAlertConfigsResponse) GetData() Alert + func (o *GetAlertConfigsResponse) GetDataOk() (*Alert, bool) + func (o *GetAlertConfigsResponse) GetMessage() string + func (o *GetAlertConfigsResponse) GetMessageOk() (*string, bool) + func (o *GetAlertConfigsResponse) SetData(v Alert) + func (o *GetAlertConfigsResponse) SetMessage(v string) + func (o *GetAlertConfigsResponse) UnmarshalJSON(data []byte) (err error) + func (o GetAlertConfigsResponse) MarshalJSON() ([]byte, error) + func (o GetAlertConfigsResponse) ToMap() (map[string]interface{}, error) + type GetCredentialsResponse struct + CredentialsInfo *map[string]string + Id string + Message string + Name string + func NewGetCredentialsResponse(id string, message string, name string) *GetCredentialsResponse + func NewGetCredentialsResponseWithDefaults() *GetCredentialsResponse + func (o *GetCredentialsResponse) GetCredentialsInfo() map[string]string + func (o *GetCredentialsResponse) GetCredentialsInfoOk() (*map[string]string, bool) + func (o *GetCredentialsResponse) GetId() string + func (o *GetCredentialsResponse) GetIdOk() (*string, bool) + func (o *GetCredentialsResponse) GetMessage() string + func (o *GetCredentialsResponse) GetMessageOk() (*string, bool) + func (o *GetCredentialsResponse) GetName() string + func (o *GetCredentialsResponse) GetNameOk() (*string, bool) + func (o *GetCredentialsResponse) HasCredentialsInfo() bool + func (o *GetCredentialsResponse) SetCredentialsInfo(v map[string]string) + func (o *GetCredentialsResponse) SetId(v string) + func (o *GetCredentialsResponse) SetMessage(v string) + func (o *GetCredentialsResponse) SetName(v string) + func (o *GetCredentialsResponse) UnmarshalJSON(data []byte) (err error) + func (o GetCredentialsResponse) MarshalJSON() ([]byte, error) + func (o GetCredentialsResponse) ToMap() (map[string]interface{}, error) + type GetInstanceResponse struct + DashboardUrl string + Error NullableString + Id string + Instance InstanceSensitiveData + IsUpdatable *bool + Message string + Name *string + Parameters *map[string]string + PlanId string + PlanName string + PlanSchema *string + ServiceName string + Status string + func NewGetInstanceResponse(dashboardUrl string, id string, instance InstanceSensitiveData, message string, ...) *GetInstanceResponse + func NewGetInstanceResponseWithDefaults() *GetInstanceResponse + func (o *GetInstanceResponse) GetDashboardUrl() string + func (o *GetInstanceResponse) GetDashboardUrlOk() (*string, bool) + func (o *GetInstanceResponse) GetError() string + func (o *GetInstanceResponse) GetErrorOk() (*string, bool) + func (o *GetInstanceResponse) GetId() string + func (o *GetInstanceResponse) GetIdOk() (*string, bool) + func (o *GetInstanceResponse) GetInstance() InstanceSensitiveData + func (o *GetInstanceResponse) GetInstanceOk() (*InstanceSensitiveData, bool) + func (o *GetInstanceResponse) GetIsUpdatable() bool + func (o *GetInstanceResponse) GetIsUpdatableOk() (*bool, bool) + func (o *GetInstanceResponse) GetMessage() string + func (o *GetInstanceResponse) GetMessageOk() (*string, bool) + func (o *GetInstanceResponse) GetName() string + func (o *GetInstanceResponse) GetNameOk() (*string, bool) + func (o *GetInstanceResponse) GetParameters() map[string]string + func (o *GetInstanceResponse) GetParametersOk() (*map[string]string, bool) + func (o *GetInstanceResponse) GetPlanId() string + func (o *GetInstanceResponse) GetPlanIdOk() (*string, bool) + func (o *GetInstanceResponse) GetPlanName() string + func (o *GetInstanceResponse) GetPlanNameOk() (*string, bool) + func (o *GetInstanceResponse) GetPlanSchema() string + func (o *GetInstanceResponse) GetPlanSchemaOk() (*string, bool) + func (o *GetInstanceResponse) GetServiceName() string + func (o *GetInstanceResponse) GetServiceNameOk() (*string, bool) + func (o *GetInstanceResponse) GetStatus() string + func (o *GetInstanceResponse) GetStatusOk() (*string, bool) + func (o *GetInstanceResponse) HasError() bool + func (o *GetInstanceResponse) HasIsUpdatable() bool + func (o *GetInstanceResponse) HasName() bool + func (o *GetInstanceResponse) HasParameters() bool + func (o *GetInstanceResponse) HasPlanSchema() bool + func (o *GetInstanceResponse) SetDashboardUrl(v string) + func (o *GetInstanceResponse) SetError(v string) + func (o *GetInstanceResponse) SetErrorNil() + func (o *GetInstanceResponse) SetId(v string) + func (o *GetInstanceResponse) SetInstance(v InstanceSensitiveData) + func (o *GetInstanceResponse) SetIsUpdatable(v bool) + func (o *GetInstanceResponse) SetMessage(v string) + func (o *GetInstanceResponse) SetName(v string) + func (o *GetInstanceResponse) SetParameters(v map[string]string) + func (o *GetInstanceResponse) SetPlanId(v string) + func (o *GetInstanceResponse) SetPlanName(v string) + func (o *GetInstanceResponse) SetPlanSchema(v string) + func (o *GetInstanceResponse) SetServiceName(v string) + func (o *GetInstanceResponse) SetStatus(v string) + func (o *GetInstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o *GetInstanceResponse) UnsetError() + func (o GetInstanceResponse) MarshalJSON() ([]byte, error) + func (o GetInstanceResponse) ToMap() (map[string]interface{}, error) + type GetMetricsStorageRetentionResponse struct + Message string + MetricsRetentionTime1h string + MetricsRetentionTime5m string + MetricsRetentionTimeRaw string + func NewGetMetricsStorageRetentionResponse(message string, metricsRetentionTime1h string, metricsRetentionTime5m string, ...) *GetMetricsStorageRetentionResponse + func NewGetMetricsStorageRetentionResponseWithDefaults() *GetMetricsStorageRetentionResponse + func (o *GetMetricsStorageRetentionResponse) GetMessage() string + func (o *GetMetricsStorageRetentionResponse) GetMessageOk() (*string, bool) + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTime1h() string + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTime1hOk() (*string, bool) + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTime5m() string + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTime5mOk() (*string, bool) + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTimeRaw() string + func (o *GetMetricsStorageRetentionResponse) GetMetricsRetentionTimeRawOk() (*string, bool) + func (o *GetMetricsStorageRetentionResponse) SetMessage(v string) + func (o *GetMetricsStorageRetentionResponse) SetMetricsRetentionTime1h(v string) + func (o *GetMetricsStorageRetentionResponse) SetMetricsRetentionTime5m(v string) + func (o *GetMetricsStorageRetentionResponse) SetMetricsRetentionTimeRaw(v string) + func (o *GetMetricsStorageRetentionResponse) UnmarshalJSON(data []byte) (err error) + func (o GetMetricsStorageRetentionResponse) MarshalJSON() ([]byte, error) + func (o GetMetricsStorageRetentionResponse) ToMap() (map[string]interface{}, error) + type GetScrapeConfigResponse struct + Data Job + Message string + func NewGetScrapeConfigResponse(data Job, message string) *GetScrapeConfigResponse + func NewGetScrapeConfigResponseWithDefaults() *GetScrapeConfigResponse + func (o *GetScrapeConfigResponse) GetData() Job + func (o *GetScrapeConfigResponse) GetDataOk() (*Job, bool) + func (o *GetScrapeConfigResponse) GetMessage() string + func (o *GetScrapeConfigResponse) GetMessageOk() (*string, bool) + func (o *GetScrapeConfigResponse) SetData(v Job) + func (o *GetScrapeConfigResponse) SetMessage(v string) + func (o *GetScrapeConfigResponse) UnmarshalJSON(data []byte) (err error) + func (o GetScrapeConfigResponse) MarshalJSON() ([]byte, error) + func (o GetScrapeConfigResponse) ToMap() (map[string]interface{}, error) + type Global struct + OpsgenieApiKey *string + OpsgenieApiUrl *string + ResolveTimeout *string + SmtpAuthIdentity *string + SmtpAuthPassword *string + SmtpAuthUsername *string + SmtpFrom *string + SmtpSmarthost *string + func NewGlobal() *Global + func NewGlobalWithDefaults() *Global + func (o *Global) GetOpsgenieApiKey() string + func (o *Global) GetOpsgenieApiKeyOk() (*string, bool) + func (o *Global) GetOpsgenieApiUrl() string + func (o *Global) GetOpsgenieApiUrlOk() (*string, bool) + func (o *Global) GetResolveTimeout() string + func (o *Global) GetResolveTimeoutOk() (*string, bool) + func (o *Global) GetSmtpAuthIdentity() string + func (o *Global) GetSmtpAuthIdentityOk() (*string, bool) + func (o *Global) GetSmtpAuthPassword() string + func (o *Global) GetSmtpAuthPasswordOk() (*string, bool) + func (o *Global) GetSmtpAuthUsername() string + func (o *Global) GetSmtpAuthUsernameOk() (*string, bool) + func (o *Global) GetSmtpFrom() string + func (o *Global) GetSmtpFromOk() (*string, bool) + func (o *Global) GetSmtpSmarthost() string + func (o *Global) GetSmtpSmarthostOk() (*string, bool) + func (o *Global) HasOpsgenieApiKey() bool + func (o *Global) HasOpsgenieApiUrl() bool + func (o *Global) HasResolveTimeout() bool + func (o *Global) HasSmtpAuthIdentity() bool + func (o *Global) HasSmtpAuthPassword() bool + func (o *Global) HasSmtpAuthUsername() bool + func (o *Global) HasSmtpFrom() bool + func (o *Global) HasSmtpSmarthost() bool + func (o *Global) SetOpsgenieApiKey(v string) + func (o *Global) SetOpsgenieApiUrl(v string) + func (o *Global) SetResolveTimeout(v string) + func (o *Global) SetSmtpAuthIdentity(v string) + func (o *Global) SetSmtpAuthPassword(v string) + func (o *Global) SetSmtpAuthUsername(v string) + func (o *Global) SetSmtpFrom(v string) + func (o *Global) SetSmtpSmarthost(v string) + func (o Global) MarshalJSON() ([]byte, error) + func (o Global) ToMap() (map[string]interface{}, error) + type GrafanaConfigs struct + GenericOauth *GrafanaOauth + Message string + PublicReadAccess *bool + UseStackitSso *bool + func NewGrafanaConfigs(message string) *GrafanaConfigs + func NewGrafanaConfigsWithDefaults() *GrafanaConfigs + func (o *GrafanaConfigs) GetGenericOauth() GrafanaOauth + func (o *GrafanaConfigs) GetGenericOauthOk() (*GrafanaOauth, bool) + func (o *GrafanaConfigs) GetMessage() string + func (o *GrafanaConfigs) GetMessageOk() (*string, bool) + func (o *GrafanaConfigs) GetPublicReadAccess() bool + func (o *GrafanaConfigs) GetPublicReadAccessOk() (*bool, bool) + func (o *GrafanaConfigs) GetUseStackitSso() bool + func (o *GrafanaConfigs) GetUseStackitSsoOk() (*bool, bool) + func (o *GrafanaConfigs) HasGenericOauth() bool + func (o *GrafanaConfigs) HasPublicReadAccess() bool + func (o *GrafanaConfigs) HasUseStackitSso() bool + func (o *GrafanaConfigs) SetGenericOauth(v GrafanaOauth) + func (o *GrafanaConfigs) SetMessage(v string) + func (o *GrafanaConfigs) SetPublicReadAccess(v bool) + func (o *GrafanaConfigs) SetUseStackitSso(v bool) + func (o *GrafanaConfigs) UnmarshalJSON(data []byte) (err error) + func (o GrafanaConfigs) MarshalJSON() ([]byte, error) + func (o GrafanaConfigs) ToMap() (map[string]interface{}, error) + type GrafanaOauth struct + AllowAssignGrafanaAdmin *bool + ApiUrl string + AuthUrl string + Enabled bool + Name *string + OauthClientId string + OauthClientSecret string + RoleAttributePath string + RoleAttributeStrict *bool + Scopes *string + TokenUrl string + UsePkce *bool + func NewGrafanaOauth(apiUrl string, authUrl string, enabled bool, oauthClientId string, ...) *GrafanaOauth + func NewGrafanaOauthWithDefaults() *GrafanaOauth + func (o *GrafanaOauth) GetAllowAssignGrafanaAdmin() bool + func (o *GrafanaOauth) GetAllowAssignGrafanaAdminOk() (*bool, bool) + func (o *GrafanaOauth) GetApiUrl() string + func (o *GrafanaOauth) GetApiUrlOk() (*string, bool) + func (o *GrafanaOauth) GetAuthUrl() string + func (o *GrafanaOauth) GetAuthUrlOk() (*string, bool) + func (o *GrafanaOauth) GetEnabled() bool + func (o *GrafanaOauth) GetEnabledOk() (*bool, bool) + func (o *GrafanaOauth) GetName() string + func (o *GrafanaOauth) GetNameOk() (*string, bool) + func (o *GrafanaOauth) GetOauthClientId() string + func (o *GrafanaOauth) GetOauthClientIdOk() (*string, bool) + func (o *GrafanaOauth) GetOauthClientSecret() string + func (o *GrafanaOauth) GetOauthClientSecretOk() (*string, bool) + func (o *GrafanaOauth) GetRoleAttributePath() string + func (o *GrafanaOauth) GetRoleAttributePathOk() (*string, bool) + func (o *GrafanaOauth) GetRoleAttributeStrict() bool + func (o *GrafanaOauth) GetRoleAttributeStrictOk() (*bool, bool) + func (o *GrafanaOauth) GetScopes() string + func (o *GrafanaOauth) GetScopesOk() (*string, bool) + func (o *GrafanaOauth) GetTokenUrl() string + func (o *GrafanaOauth) GetTokenUrlOk() (*string, bool) + func (o *GrafanaOauth) GetUsePkce() bool + func (o *GrafanaOauth) GetUsePkceOk() (*bool, bool) + func (o *GrafanaOauth) HasAllowAssignGrafanaAdmin() bool + func (o *GrafanaOauth) HasName() bool + func (o *GrafanaOauth) HasRoleAttributeStrict() bool + func (o *GrafanaOauth) HasScopes() bool + func (o *GrafanaOauth) HasUsePkce() bool + func (o *GrafanaOauth) SetAllowAssignGrafanaAdmin(v bool) + func (o *GrafanaOauth) SetApiUrl(v string) + func (o *GrafanaOauth) SetAuthUrl(v string) + func (o *GrafanaOauth) SetEnabled(v bool) + func (o *GrafanaOauth) SetName(v string) + func (o *GrafanaOauth) SetOauthClientId(v string) + func (o *GrafanaOauth) SetOauthClientSecret(v string) + func (o *GrafanaOauth) SetRoleAttributePath(v string) + func (o *GrafanaOauth) SetRoleAttributeStrict(v bool) + func (o *GrafanaOauth) SetScopes(v string) + func (o *GrafanaOauth) SetTokenUrl(v string) + func (o *GrafanaOauth) SetUsePkce(v bool) + func (o *GrafanaOauth) UnmarshalJSON(data []byte) (err error) + func (o GrafanaOauth) MarshalJSON() ([]byte, error) + func (o GrafanaOauth) ToMap() (map[string]interface{}, error) + type HTTPServiceSD struct + BasicAuth *BasicAuth + Oauth2 *OAuth2 + RefreshInterval *string + TlsConfig *TLSConfig + Url string + func NewHTTPServiceSD(url string) *HTTPServiceSD + func NewHTTPServiceSDWithDefaults() *HTTPServiceSD + func (o *HTTPServiceSD) GetBasicAuth() BasicAuth + func (o *HTTPServiceSD) GetBasicAuthOk() (*BasicAuth, bool) + func (o *HTTPServiceSD) GetOauth2() OAuth2 + func (o *HTTPServiceSD) GetOauth2Ok() (*OAuth2, bool) + func (o *HTTPServiceSD) GetRefreshInterval() string + func (o *HTTPServiceSD) GetRefreshIntervalOk() (*string, bool) + func (o *HTTPServiceSD) GetTlsConfig() TLSConfig + func (o *HTTPServiceSD) GetTlsConfigOk() (*TLSConfig, bool) + func (o *HTTPServiceSD) GetUrl() string + func (o *HTTPServiceSD) GetUrlOk() (*string, bool) + func (o *HTTPServiceSD) HasBasicAuth() bool + func (o *HTTPServiceSD) HasOauth2() bool + func (o *HTTPServiceSD) HasRefreshInterval() bool + func (o *HTTPServiceSD) HasTlsConfig() bool + func (o *HTTPServiceSD) SetBasicAuth(v BasicAuth) + func (o *HTTPServiceSD) SetOauth2(v OAuth2) + func (o *HTTPServiceSD) SetRefreshInterval(v string) + func (o *HTTPServiceSD) SetTlsConfig(v TLSConfig) + func (o *HTTPServiceSD) SetUrl(v string) + func (o *HTTPServiceSD) UnmarshalJSON(data []byte) (err error) + func (o HTTPServiceSD) MarshalJSON() ([]byte, error) + func (o HTTPServiceSD) ToMap() (map[string]interface{}, error) + type HttpCheckChildResponse struct + Id string + Url string + func NewHttpCheckChildResponse(id string, url string) *HttpCheckChildResponse + func NewHttpCheckChildResponseWithDefaults() *HttpCheckChildResponse + func (o *HttpCheckChildResponse) GetId() string + func (o *HttpCheckChildResponse) GetIdOk() (*string, bool) + func (o *HttpCheckChildResponse) GetUrl() string + func (o *HttpCheckChildResponse) GetUrlOk() (*string, bool) + func (o *HttpCheckChildResponse) SetId(v string) + func (o *HttpCheckChildResponse) SetUrl(v string) + func (o *HttpCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o HttpCheckChildResponse) MarshalJSON() ([]byte, error) + func (o HttpCheckChildResponse) ToMap() (map[string]interface{}, error) + type HttpCheckResponse struct + HttpCheck *HttpCheckChildResponse + HttpChecks []HttpCheckChildResponse + Message string + func NewHttpCheckResponse(httpChecks []HttpCheckChildResponse, message string) *HttpCheckResponse + func NewHttpCheckResponseWithDefaults() *HttpCheckResponse + func (o *HttpCheckResponse) GetHttpCheck() HttpCheckChildResponse + func (o *HttpCheckResponse) GetHttpCheckOk() (*HttpCheckChildResponse, bool) + func (o *HttpCheckResponse) GetHttpChecks() []HttpCheckChildResponse + func (o *HttpCheckResponse) GetHttpChecksOk() ([]HttpCheckChildResponse, bool) + func (o *HttpCheckResponse) GetMessage() string + func (o *HttpCheckResponse) GetMessageOk() (*string, bool) + func (o *HttpCheckResponse) HasHttpCheck() bool + func (o *HttpCheckResponse) SetHttpCheck(v HttpCheckChildResponse) + func (o *HttpCheckResponse) SetHttpChecks(v []HttpCheckChildResponse) + func (o *HttpCheckResponse) SetMessage(v string) + func (o *HttpCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o HttpCheckResponse) MarshalJSON() ([]byte, error) + func (o HttpCheckResponse) ToMap() (map[string]interface{}, error) + type InhibitRules struct + Equal []string + SourceMatch *map[string]string + SourceMatchRe *map[string]string + SourceMatchers []string + TargetMatch *map[string]string + TargetMatchRe *map[string]string + TargetMatchers []string + func NewInhibitRules() *InhibitRules + func NewInhibitRulesWithDefaults() *InhibitRules + func (o *InhibitRules) GetEqual() []string + func (o *InhibitRules) GetEqualOk() ([]string, bool) + func (o *InhibitRules) GetSourceMatch() map[string]string + func (o *InhibitRules) GetSourceMatchOk() (*map[string]string, bool) + func (o *InhibitRules) GetSourceMatchRe() map[string]string + func (o *InhibitRules) GetSourceMatchReOk() (*map[string]string, bool) + func (o *InhibitRules) GetSourceMatchers() []string + func (o *InhibitRules) GetSourceMatchersOk() ([]string, bool) + func (o *InhibitRules) GetTargetMatch() map[string]string + func (o *InhibitRules) GetTargetMatchOk() (*map[string]string, bool) + func (o *InhibitRules) GetTargetMatchRe() map[string]string + func (o *InhibitRules) GetTargetMatchReOk() (*map[string]string, bool) + func (o *InhibitRules) GetTargetMatchers() []string + func (o *InhibitRules) GetTargetMatchersOk() ([]string, bool) + func (o *InhibitRules) HasEqual() bool + func (o *InhibitRules) HasSourceMatch() bool + func (o *InhibitRules) HasSourceMatchRe() bool + func (o *InhibitRules) HasSourceMatchers() bool + func (o *InhibitRules) HasTargetMatch() bool + func (o *InhibitRules) HasTargetMatchRe() bool + func (o *InhibitRules) HasTargetMatchers() bool + func (o *InhibitRules) SetEqual(v []string) + func (o *InhibitRules) SetSourceMatch(v map[string]string) + func (o *InhibitRules) SetSourceMatchRe(v map[string]string) + func (o *InhibitRules) SetSourceMatchers(v []string) + func (o *InhibitRules) SetTargetMatch(v map[string]string) + func (o *InhibitRules) SetTargetMatchRe(v map[string]string) + func (o *InhibitRules) SetTargetMatchers(v []string) + func (o InhibitRules) MarshalJSON() ([]byte, error) + func (o InhibitRules) ToMap() (map[string]interface{}, error) + type Instance struct + Cluster string + GrafanaPublicReadAccess bool + GrafanaUseStackitSso bool + Instance string + MetricsRetentionTime1h int32 + MetricsRetentionTime5m int32 + MetricsRetentionTimeRaw int32 + Name *string + Plan PlanModel + State *string + func NewInstance(cluster string, grafanaPublicReadAccess bool, grafanaUseStackitSso bool, ...) *Instance + func NewInstanceWithDefaults() *Instance + func (o *Instance) GetCluster() string + func (o *Instance) GetClusterOk() (*string, bool) + func (o *Instance) GetGrafanaPublicReadAccess() bool + func (o *Instance) GetGrafanaPublicReadAccessOk() (*bool, bool) + func (o *Instance) GetGrafanaUseStackitSso() bool + func (o *Instance) GetGrafanaUseStackitSsoOk() (*bool, bool) + func (o *Instance) GetInstance() string + func (o *Instance) GetInstanceOk() (*string, bool) + func (o *Instance) GetMetricsRetentionTime1h() int32 + func (o *Instance) GetMetricsRetentionTime1hOk() (*int32, bool) + func (o *Instance) GetMetricsRetentionTime5m() int32 + func (o *Instance) GetMetricsRetentionTime5mOk() (*int32, bool) + func (o *Instance) GetMetricsRetentionTimeRaw() int32 + func (o *Instance) GetMetricsRetentionTimeRawOk() (*int32, bool) + func (o *Instance) GetName() string + func (o *Instance) GetNameOk() (*string, bool) + func (o *Instance) GetPlan() PlanModel + func (o *Instance) GetPlanOk() (*PlanModel, bool) + func (o *Instance) GetState() string + func (o *Instance) GetStateOk() (*string, bool) + func (o *Instance) HasName() bool + func (o *Instance) HasState() bool + func (o *Instance) SetCluster(v string) + func (o *Instance) SetGrafanaPublicReadAccess(v bool) + func (o *Instance) SetGrafanaUseStackitSso(v bool) + func (o *Instance) SetInstance(v string) + func (o *Instance) SetMetricsRetentionTime1h(v int32) + func (o *Instance) SetMetricsRetentionTime5m(v int32) + func (o *Instance) SetMetricsRetentionTimeRaw(v int32) + func (o *Instance) SetName(v string) + func (o *Instance) SetPlan(v PlanModel) + func (o *Instance) SetState(v string) + func (o *Instance) UnmarshalJSON(data []byte) (err error) + func (o Instance) MarshalJSON() ([]byte, error) + func (o Instance) ToMap() (map[string]interface{}, error) + type InstanceResponse struct + Message string + func NewInstanceResponse(message string) *InstanceResponse + func NewInstanceResponseWithDefaults() *InstanceResponse + func (o *InstanceResponse) GetMessage() string + func (o *InstanceResponse) GetMessageOk() (*string, bool) + func (o *InstanceResponse) SetMessage(v string) + func (o *InstanceResponse) UnmarshalJSON(data []byte) (err error) + func (o InstanceResponse) MarshalJSON() ([]byte, error) + func (o InstanceResponse) ToMap() (map[string]interface{}, error) + type InstanceSensitiveData struct + AlertingUrl string + Cluster string + DashboardUrl string + GrafanaAdminEnabled bool + GrafanaAdminPassword string + GrafanaAdminUser string + GrafanaPublicReadAccess bool + GrafanaUrl string + GrafanaUseStackitSso bool + Instance string + JaegerHttpTracesUrl *string + JaegerHttpUrl string + JaegerTracesUrl string + JaegerUiUrl string + LogsPushUrl string + LogsUrl string + MetricsEndpointUrl string + MetricsRetentionTime1h int32 + MetricsRetentionTime5m int32 + MetricsRetentionTimeRaw int32 + MetricsUrl string + Name *string + OtlpGrpcTracesUrl string + OtlpHttpTracesUrl string + OtlpTracesUrl string + Plan PlanModel + PushMetricsUrl string + TargetsUrl string + ZipkinSpansUrl string + func NewInstanceSensitiveData(alertingUrl string, cluster string, dashboardUrl string, ...) *InstanceSensitiveData + func NewInstanceSensitiveDataWithDefaults() *InstanceSensitiveData + func (o *InstanceSensitiveData) GetAlertingUrl() string + func (o *InstanceSensitiveData) GetAlertingUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetCluster() string + func (o *InstanceSensitiveData) GetClusterOk() (*string, bool) + func (o *InstanceSensitiveData) GetDashboardUrl() string + func (o *InstanceSensitiveData) GetDashboardUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetGrafanaAdminEnabled() bool + func (o *InstanceSensitiveData) GetGrafanaAdminEnabledOk() (*bool, bool) + func (o *InstanceSensitiveData) GetGrafanaAdminPassword() string + func (o *InstanceSensitiveData) GetGrafanaAdminPasswordOk() (*string, bool) + func (o *InstanceSensitiveData) GetGrafanaAdminUser() string + func (o *InstanceSensitiveData) GetGrafanaAdminUserOk() (*string, bool) + func (o *InstanceSensitiveData) GetGrafanaPublicReadAccess() bool + func (o *InstanceSensitiveData) GetGrafanaPublicReadAccessOk() (*bool, bool) + func (o *InstanceSensitiveData) GetGrafanaUrl() string + func (o *InstanceSensitiveData) GetGrafanaUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetGrafanaUseStackitSso() bool + func (o *InstanceSensitiveData) GetGrafanaUseStackitSsoOk() (*bool, bool) + func (o *InstanceSensitiveData) GetInstance() string + func (o *InstanceSensitiveData) GetInstanceOk() (*string, bool) + func (o *InstanceSensitiveData) GetJaegerHttpTracesUrl() string + func (o *InstanceSensitiveData) GetJaegerHttpTracesUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetJaegerHttpUrl() string + func (o *InstanceSensitiveData) GetJaegerHttpUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetJaegerTracesUrl() string + func (o *InstanceSensitiveData) GetJaegerTracesUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetJaegerUiUrl() string + func (o *InstanceSensitiveData) GetJaegerUiUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetLogsPushUrl() string + func (o *InstanceSensitiveData) GetLogsPushUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetLogsUrl() string + func (o *InstanceSensitiveData) GetLogsUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetMetricsEndpointUrl() string + func (o *InstanceSensitiveData) GetMetricsEndpointUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetMetricsRetentionTime1h() int32 + func (o *InstanceSensitiveData) GetMetricsRetentionTime1hOk() (*int32, bool) + func (o *InstanceSensitiveData) GetMetricsRetentionTime5m() int32 + func (o *InstanceSensitiveData) GetMetricsRetentionTime5mOk() (*int32, bool) + func (o *InstanceSensitiveData) GetMetricsRetentionTimeRaw() int32 + func (o *InstanceSensitiveData) GetMetricsRetentionTimeRawOk() (*int32, bool) + func (o *InstanceSensitiveData) GetMetricsUrl() string + func (o *InstanceSensitiveData) GetMetricsUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetName() string + func (o *InstanceSensitiveData) GetNameOk() (*string, bool) + func (o *InstanceSensitiveData) GetOtlpGrpcTracesUrl() string + func (o *InstanceSensitiveData) GetOtlpGrpcTracesUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetOtlpHttpTracesUrl() string + func (o *InstanceSensitiveData) GetOtlpHttpTracesUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetOtlpTracesUrl() string + func (o *InstanceSensitiveData) GetOtlpTracesUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetPlan() PlanModel + func (o *InstanceSensitiveData) GetPlanOk() (*PlanModel, bool) + func (o *InstanceSensitiveData) GetPushMetricsUrl() string + func (o *InstanceSensitiveData) GetPushMetricsUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetTargetsUrl() string + func (o *InstanceSensitiveData) GetTargetsUrlOk() (*string, bool) + func (o *InstanceSensitiveData) GetZipkinSpansUrl() string + func (o *InstanceSensitiveData) GetZipkinSpansUrlOk() (*string, bool) + func (o *InstanceSensitiveData) HasJaegerHttpTracesUrl() bool + func (o *InstanceSensitiveData) HasName() bool + func (o *InstanceSensitiveData) SetAlertingUrl(v string) + func (o *InstanceSensitiveData) SetCluster(v string) + func (o *InstanceSensitiveData) SetDashboardUrl(v string) + func (o *InstanceSensitiveData) SetGrafanaAdminEnabled(v bool) + func (o *InstanceSensitiveData) SetGrafanaAdminPassword(v string) + func (o *InstanceSensitiveData) SetGrafanaAdminUser(v string) + func (o *InstanceSensitiveData) SetGrafanaPublicReadAccess(v bool) + func (o *InstanceSensitiveData) SetGrafanaUrl(v string) + func (o *InstanceSensitiveData) SetGrafanaUseStackitSso(v bool) + func (o *InstanceSensitiveData) SetInstance(v string) + func (o *InstanceSensitiveData) SetJaegerHttpTracesUrl(v string) + func (o *InstanceSensitiveData) SetJaegerHttpUrl(v string) + func (o *InstanceSensitiveData) SetJaegerTracesUrl(v string) + func (o *InstanceSensitiveData) SetJaegerUiUrl(v string) + func (o *InstanceSensitiveData) SetLogsPushUrl(v string) + func (o *InstanceSensitiveData) SetLogsUrl(v string) + func (o *InstanceSensitiveData) SetMetricsEndpointUrl(v string) + func (o *InstanceSensitiveData) SetMetricsRetentionTime1h(v int32) + func (o *InstanceSensitiveData) SetMetricsRetentionTime5m(v int32) + func (o *InstanceSensitiveData) SetMetricsRetentionTimeRaw(v int32) + func (o *InstanceSensitiveData) SetMetricsUrl(v string) + func (o *InstanceSensitiveData) SetName(v string) + func (o *InstanceSensitiveData) SetOtlpGrpcTracesUrl(v string) + func (o *InstanceSensitiveData) SetOtlpHttpTracesUrl(v string) + func (o *InstanceSensitiveData) SetOtlpTracesUrl(v string) + func (o *InstanceSensitiveData) SetPlan(v PlanModel) + func (o *InstanceSensitiveData) SetPushMetricsUrl(v string) + func (o *InstanceSensitiveData) SetTargetsUrl(v string) + func (o *InstanceSensitiveData) SetZipkinSpansUrl(v string) + func (o *InstanceSensitiveData) UnmarshalJSON(data []byte) (err error) + func (o InstanceSensitiveData) MarshalJSON() ([]byte, error) + func (o InstanceSensitiveData) ToMap() (map[string]interface{}, error) + type Job struct + BasicAuth *BasicAuth + BearerToken *string + HonorLabels *bool + HonorTimeStamps *bool + HttpSdConfigs []HTTPServiceSD + JobName string + MetricsPath *string + MetricsRelabelConfigs []MetricsRelabelConfig + Oauth2 *OAuth2 + Params *map[string][]string + SampleLimit *int32 + Scheme *string + ScrapeInterval string + ScrapeTimeout string + StaticConfigs []StaticConfigs + TlsConfig *TLSConfig + func NewJob(jobName string, scrapeInterval string, scrapeTimeout string, ...) *Job + func NewJobWithDefaults() *Job + func (o *Job) GetBasicAuth() BasicAuth + func (o *Job) GetBasicAuthOk() (*BasicAuth, bool) + func (o *Job) GetBearerToken() string + func (o *Job) GetBearerTokenOk() (*string, bool) + func (o *Job) GetHonorLabels() bool + func (o *Job) GetHonorLabelsOk() (*bool, bool) + func (o *Job) GetHonorTimeStamps() bool + func (o *Job) GetHonorTimeStampsOk() (*bool, bool) + func (o *Job) GetHttpSdConfigs() []HTTPServiceSD + func (o *Job) GetHttpSdConfigsOk() ([]HTTPServiceSD, bool) + func (o *Job) GetJobName() string + func (o *Job) GetJobNameOk() (*string, bool) + func (o *Job) GetMetricsPath() string + func (o *Job) GetMetricsPathOk() (*string, bool) + func (o *Job) GetMetricsRelabelConfigs() []MetricsRelabelConfig + func (o *Job) GetMetricsRelabelConfigsOk() ([]MetricsRelabelConfig, bool) + func (o *Job) GetOauth2() OAuth2 + func (o *Job) GetOauth2Ok() (*OAuth2, bool) + func (o *Job) GetParams() map[string][]string + func (o *Job) GetParamsOk() (*map[string][]string, bool) + func (o *Job) GetSampleLimit() int32 + func (o *Job) GetSampleLimitOk() (*int32, bool) + func (o *Job) GetScheme() string + func (o *Job) GetSchemeOk() (*string, bool) + func (o *Job) GetScrapeInterval() string + func (o *Job) GetScrapeIntervalOk() (*string, bool) + func (o *Job) GetScrapeTimeout() string + func (o *Job) GetScrapeTimeoutOk() (*string, bool) + func (o *Job) GetStaticConfigs() []StaticConfigs + func (o *Job) GetStaticConfigsOk() ([]StaticConfigs, bool) + func (o *Job) GetTlsConfig() TLSConfig + func (o *Job) GetTlsConfigOk() (*TLSConfig, bool) + func (o *Job) HasBasicAuth() bool + func (o *Job) HasBearerToken() bool + func (o *Job) HasHonorLabels() bool + func (o *Job) HasHonorTimeStamps() bool + func (o *Job) HasHttpSdConfigs() bool + func (o *Job) HasMetricsPath() bool + func (o *Job) HasMetricsRelabelConfigs() bool + func (o *Job) HasOauth2() bool + func (o *Job) HasParams() bool + func (o *Job) HasSampleLimit() bool + func (o *Job) HasScheme() bool + func (o *Job) HasTlsConfig() bool + func (o *Job) SetBasicAuth(v BasicAuth) + func (o *Job) SetBearerToken(v string) + func (o *Job) SetHonorLabels(v bool) + func (o *Job) SetHonorTimeStamps(v bool) + func (o *Job) SetHttpSdConfigs(v []HTTPServiceSD) + func (o *Job) SetJobName(v string) + func (o *Job) SetMetricsPath(v string) + func (o *Job) SetMetricsRelabelConfigs(v []MetricsRelabelConfig) + func (o *Job) SetOauth2(v OAuth2) + func (o *Job) SetParams(v map[string][]string) + func (o *Job) SetSampleLimit(v int32) + func (o *Job) SetScheme(v string) + func (o *Job) SetScrapeInterval(v string) + func (o *Job) SetScrapeTimeout(v string) + func (o *Job) SetStaticConfigs(v []StaticConfigs) + func (o *Job) SetTlsConfig(v TLSConfig) + func (o *Job) UnmarshalJSON(data []byte) (err error) + func (o Job) MarshalJSON() ([]byte, error) + func (o Job) ToMap() (map[string]interface{}, error) + type ListACLResponse struct + Acl []string + Message string + func NewListACLResponse(acl []string, message string) *ListACLResponse + func NewListACLResponseWithDefaults() *ListACLResponse + func (o *ListACLResponse) GetAcl() []string + func (o *ListACLResponse) GetAclOk() ([]string, bool) + func (o *ListACLResponse) GetMessage() string + func (o *ListACLResponse) GetMessageOk() (*string, bool) + func (o *ListACLResponse) SetAcl(v []string) + func (o *ListACLResponse) SetMessage(v string) + func (o *ListACLResponse) UnmarshalJSON(data []byte) (err error) + func (o ListACLResponse) MarshalJSON() ([]byte, error) + func (o ListACLResponse) ToMap() (map[string]interface{}, error) + type ListCredentialsResponse struct + Credentials []ServiceKeysList + Message string + func NewListCredentialsResponse(credentials []ServiceKeysList, message string) *ListCredentialsResponse + func NewListCredentialsResponseWithDefaults() *ListCredentialsResponse + func (o *ListCredentialsResponse) GetCredentials() []ServiceKeysList + func (o *ListCredentialsResponse) GetCredentialsOk() ([]ServiceKeysList, bool) + func (o *ListCredentialsResponse) GetMessage() string + func (o *ListCredentialsResponse) GetMessageOk() (*string, bool) + func (o *ListCredentialsResponse) SetCredentials(v []ServiceKeysList) + func (o *ListCredentialsResponse) SetMessage(v string) + func (o *ListCredentialsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListCredentialsResponse) MarshalJSON() ([]byte, error) + func (o ListCredentialsResponse) ToMap() (map[string]interface{}, error) + type ListInstancesResponse struct + Instances []ProjectInstanceFull + Message string + func NewListInstancesResponse(instances []ProjectInstanceFull, message string) *ListInstancesResponse + func NewListInstancesResponseWithDefaults() *ListInstancesResponse + func (o *ListInstancesResponse) GetInstances() []ProjectInstanceFull + func (o *ListInstancesResponse) GetInstancesOk() ([]ProjectInstanceFull, bool) + func (o *ListInstancesResponse) GetMessage() string + func (o *ListInstancesResponse) GetMessageOk() (*string, bool) + func (o *ListInstancesResponse) SetInstances(v []ProjectInstanceFull) + func (o *ListInstancesResponse) SetMessage(v string) + func (o *ListInstancesResponse) UnmarshalJSON(data []byte) (err error) + func (o ListInstancesResponse) MarshalJSON() ([]byte, error) + func (o ListInstancesResponse) ToMap() (map[string]interface{}, error) + type ListScrapeConfigsResponse struct + Data []Job + Message string + func NewListScrapeConfigsResponse(data []Job, message string) *ListScrapeConfigsResponse + func NewListScrapeConfigsResponseWithDefaults() *ListScrapeConfigsResponse + func (o *ListScrapeConfigsResponse) GetData() []Job + func (o *ListScrapeConfigsResponse) GetDataOk() ([]Job, bool) + func (o *ListScrapeConfigsResponse) GetMessage() string + func (o *ListScrapeConfigsResponse) GetMessageOk() (*string, bool) + func (o *ListScrapeConfigsResponse) SetData(v []Job) + func (o *ListScrapeConfigsResponse) SetMessage(v string) + func (o *ListScrapeConfigsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListScrapeConfigsResponse) MarshalJSON() ([]byte, error) + func (o ListScrapeConfigsResponse) ToMap() (map[string]interface{}, error) + type LogsConfig struct + Retention string + func NewLogsConfig(retention string) *LogsConfig + func NewLogsConfigWithDefaults() *LogsConfig + func (o *LogsConfig) GetRetention() string + func (o *LogsConfig) GetRetentionOk() (*string, bool) + func (o *LogsConfig) SetRetention(v string) + func (o *LogsConfig) UnmarshalJSON(data []byte) (err error) + func (o LogsConfig) MarshalJSON() ([]byte, error) + func (o LogsConfig) ToMap() (map[string]interface{}, error) + type LogsConfigResponse struct + Config LogsConfig + Message string + func NewLogsConfigResponse(config LogsConfig, message string) *LogsConfigResponse + func NewLogsConfigResponseWithDefaults() *LogsConfigResponse + func (o *LogsConfigResponse) GetConfig() LogsConfig + func (o *LogsConfigResponse) GetConfigOk() (*LogsConfig, bool) + func (o *LogsConfigResponse) GetMessage() string + func (o *LogsConfigResponse) GetMessageOk() (*string, bool) + func (o *LogsConfigResponse) SetConfig(v LogsConfig) + func (o *LogsConfigResponse) SetMessage(v string) + func (o *LogsConfigResponse) UnmarshalJSON(data []byte) (err error) + func (o LogsConfigResponse) MarshalJSON() ([]byte, error) + func (o LogsConfigResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type Message struct + Message string + func NewMessage(message string) *Message + func NewMessageWithDefaults() *Message + func (o *Message) GetMessage() string + func (o *Message) GetMessageOk() (*string, bool) + func (o *Message) SetMessage(v string) + func (o *Message) UnmarshalJSON(data []byte) (err error) + func (o Message) MarshalJSON() ([]byte, error) + func (o Message) ToMap() (map[string]interface{}, error) + type MetricsRelabelConfig struct + Action *string + Modulus *int32 + Regex *string + Replacement *string + Separator *string + SourceLabels []string + TargetLabel *string + func NewMetricsRelabelConfig(sourceLabels []string) *MetricsRelabelConfig + func NewMetricsRelabelConfigWithDefaults() *MetricsRelabelConfig + func (o *MetricsRelabelConfig) GetAction() string + func (o *MetricsRelabelConfig) GetActionOk() (*string, bool) + func (o *MetricsRelabelConfig) GetModulus() int32 + func (o *MetricsRelabelConfig) GetModulusOk() (*int32, bool) + func (o *MetricsRelabelConfig) GetRegex() string + func (o *MetricsRelabelConfig) GetRegexOk() (*string, bool) + func (o *MetricsRelabelConfig) GetReplacement() string + func (o *MetricsRelabelConfig) GetReplacementOk() (*string, bool) + func (o *MetricsRelabelConfig) GetSeparator() string + func (o *MetricsRelabelConfig) GetSeparatorOk() (*string, bool) + func (o *MetricsRelabelConfig) GetSourceLabels() []string + func (o *MetricsRelabelConfig) GetSourceLabelsOk() ([]string, bool) + func (o *MetricsRelabelConfig) GetTargetLabel() string + func (o *MetricsRelabelConfig) GetTargetLabelOk() (*string, bool) + func (o *MetricsRelabelConfig) HasAction() bool + func (o *MetricsRelabelConfig) HasModulus() bool + func (o *MetricsRelabelConfig) HasRegex() bool + func (o *MetricsRelabelConfig) HasReplacement() bool + func (o *MetricsRelabelConfig) HasSeparator() bool + func (o *MetricsRelabelConfig) HasTargetLabel() bool + func (o *MetricsRelabelConfig) SetAction(v string) + func (o *MetricsRelabelConfig) SetModulus(v int32) + func (o *MetricsRelabelConfig) SetRegex(v string) + func (o *MetricsRelabelConfig) SetReplacement(v string) + func (o *MetricsRelabelConfig) SetSeparator(v string) + func (o *MetricsRelabelConfig) SetSourceLabels(v []string) + func (o *MetricsRelabelConfig) SetTargetLabel(v string) + func (o *MetricsRelabelConfig) UnmarshalJSON(data []byte) (err error) + func (o MetricsRelabelConfig) MarshalJSON() ([]byte, error) + func (o MetricsRelabelConfig) ToMap() (map[string]interface{}, error) + type MongodbCheckChildResponse struct + Id string + Server string + func NewMongodbCheckChildResponse(id string, server string) *MongodbCheckChildResponse + func NewMongodbCheckChildResponseWithDefaults() *MongodbCheckChildResponse + func (o *MongodbCheckChildResponse) GetId() string + func (o *MongodbCheckChildResponse) GetIdOk() (*string, bool) + func (o *MongodbCheckChildResponse) GetServer() string + func (o *MongodbCheckChildResponse) GetServerOk() (*string, bool) + func (o *MongodbCheckChildResponse) SetId(v string) + func (o *MongodbCheckChildResponse) SetServer(v string) + func (o *MongodbCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o MongodbCheckChildResponse) MarshalJSON() ([]byte, error) + func (o MongodbCheckChildResponse) ToMap() (map[string]interface{}, error) + type MongodbCheckResponse struct + Message string + MongodbCheck *MongodbCheckChildResponse + MongodbChecks []MongodbCheckChildResponse + func NewMongodbCheckResponse(message string, mongodbChecks []MongodbCheckChildResponse) *MongodbCheckResponse + func NewMongodbCheckResponseWithDefaults() *MongodbCheckResponse + func (o *MongodbCheckResponse) GetMessage() string + func (o *MongodbCheckResponse) GetMessageOk() (*string, bool) + func (o *MongodbCheckResponse) GetMongodbCheck() MongodbCheckChildResponse + func (o *MongodbCheckResponse) GetMongodbCheckOk() (*MongodbCheckChildResponse, bool) + func (o *MongodbCheckResponse) GetMongodbChecks() []MongodbCheckChildResponse + func (o *MongodbCheckResponse) GetMongodbChecksOk() ([]MongodbCheckChildResponse, bool) + func (o *MongodbCheckResponse) HasMongodbCheck() bool + func (o *MongodbCheckResponse) SetMessage(v string) + func (o *MongodbCheckResponse) SetMongodbCheck(v MongodbCheckChildResponse) + func (o *MongodbCheckResponse) SetMongodbChecks(v []MongodbCheckChildResponse) + func (o *MongodbCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o MongodbCheckResponse) MarshalJSON() ([]byte, error) + func (o MongodbCheckResponse) ToMap() (map[string]interface{}, error) + type MysqlCheckChildResponse struct + Id string + Server string + func NewMysqlCheckChildResponse(id string, server string) *MysqlCheckChildResponse + func NewMysqlCheckChildResponseWithDefaults() *MysqlCheckChildResponse + func (o *MysqlCheckChildResponse) GetId() string + func (o *MysqlCheckChildResponse) GetIdOk() (*string, bool) + func (o *MysqlCheckChildResponse) GetServer() string + func (o *MysqlCheckChildResponse) GetServerOk() (*string, bool) + func (o *MysqlCheckChildResponse) SetId(v string) + func (o *MysqlCheckChildResponse) SetServer(v string) + func (o *MysqlCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o MysqlCheckChildResponse) MarshalJSON() ([]byte, error) + func (o MysqlCheckChildResponse) ToMap() (map[string]interface{}, error) + type MysqlCheckResponse struct + Message string + MysqlCheck *MysqlCheckChildResponse + MysqlChecks []MysqlCheckChildResponse + func NewMysqlCheckResponse(message string, mysqlChecks []MysqlCheckChildResponse) *MysqlCheckResponse + func NewMysqlCheckResponseWithDefaults() *MysqlCheckResponse + func (o *MysqlCheckResponse) GetMessage() string + func (o *MysqlCheckResponse) GetMessageOk() (*string, bool) + func (o *MysqlCheckResponse) GetMysqlCheck() MysqlCheckChildResponse + func (o *MysqlCheckResponse) GetMysqlCheckOk() (*MysqlCheckChildResponse, bool) + func (o *MysqlCheckResponse) GetMysqlChecks() []MysqlCheckChildResponse + func (o *MysqlCheckResponse) GetMysqlChecksOk() ([]MysqlCheckChildResponse, bool) + func (o *MysqlCheckResponse) HasMysqlCheck() bool + func (o *MysqlCheckResponse) SetMessage(v string) + func (o *MysqlCheckResponse) SetMysqlCheck(v MysqlCheckChildResponse) + func (o *MysqlCheckResponse) SetMysqlChecks(v []MysqlCheckChildResponse) + func (o *MysqlCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o MysqlCheckResponse) MarshalJSON() ([]byte, error) + func (o MysqlCheckResponse) ToMap() (map[string]interface{}, error) + type NetworkCheckChildResponse struct + Address string + Id string + func NewNetworkCheckChildResponse(address string, id string) *NetworkCheckChildResponse + func NewNetworkCheckChildResponseWithDefaults() *NetworkCheckChildResponse + func (o *NetworkCheckChildResponse) GetAddress() string + func (o *NetworkCheckChildResponse) GetAddressOk() (*string, bool) + func (o *NetworkCheckChildResponse) GetId() string + func (o *NetworkCheckChildResponse) GetIdOk() (*string, bool) + func (o *NetworkCheckChildResponse) SetAddress(v string) + func (o *NetworkCheckChildResponse) SetId(v string) + func (o *NetworkCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o NetworkCheckChildResponse) MarshalJSON() ([]byte, error) + func (o NetworkCheckChildResponse) ToMap() (map[string]interface{}, error) + type NetworkCheckResponse struct + Message string + NetworkCheck *NetworkCheckChildResponse + NetworkChecks []NetworkCheckChildResponse + func NewNetworkCheckResponse(message string, networkChecks []NetworkCheckChildResponse) *NetworkCheckResponse + func NewNetworkCheckResponseWithDefaults() *NetworkCheckResponse + func (o *NetworkCheckResponse) GetMessage() string + func (o *NetworkCheckResponse) GetMessageOk() (*string, bool) + func (o *NetworkCheckResponse) GetNetworkCheck() NetworkCheckChildResponse + func (o *NetworkCheckResponse) GetNetworkCheckOk() (*NetworkCheckChildResponse, bool) + func (o *NetworkCheckResponse) GetNetworkChecks() []NetworkCheckChildResponse + func (o *NetworkCheckResponse) GetNetworkChecksOk() ([]NetworkCheckChildResponse, bool) + func (o *NetworkCheckResponse) HasNetworkCheck() bool + func (o *NetworkCheckResponse) SetMessage(v string) + func (o *NetworkCheckResponse) SetNetworkCheck(v NetworkCheckChildResponse) + func (o *NetworkCheckResponse) SetNetworkChecks(v []NetworkCheckChildResponse) + func (o *NetworkCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o NetworkCheckResponse) MarshalJSON() ([]byte, error) + func (o NetworkCheckResponse) ToMap() (map[string]interface{}, error) + type NullableAlert struct + func NewNullableAlert(val *Alert) *NullableAlert + func (v *NullableAlert) Set(val *Alert) + func (v *NullableAlert) UnmarshalJSON(src []byte) error + func (v *NullableAlert) Unset() + func (v NullableAlert) Get() *Alert + func (v NullableAlert) IsSet() bool + func (v NullableAlert) MarshalJSON() ([]byte, error) + type NullableAlertConfigReceiversResponse struct + func NewNullableAlertConfigReceiversResponse(val *AlertConfigReceiversResponse) *NullableAlertConfigReceiversResponse + func (v *NullableAlertConfigReceiversResponse) Set(val *AlertConfigReceiversResponse) + func (v *NullableAlertConfigReceiversResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertConfigReceiversResponse) Unset() + func (v NullableAlertConfigReceiversResponse) Get() *AlertConfigReceiversResponse + func (v NullableAlertConfigReceiversResponse) IsSet() bool + func (v NullableAlertConfigReceiversResponse) MarshalJSON() ([]byte, error) + type NullableAlertConfigRouteResponse struct + func NewNullableAlertConfigRouteResponse(val *AlertConfigRouteResponse) *NullableAlertConfigRouteResponse + func (v *NullableAlertConfigRouteResponse) Set(val *AlertConfigRouteResponse) + func (v *NullableAlertConfigRouteResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertConfigRouteResponse) Unset() + func (v NullableAlertConfigRouteResponse) Get() *AlertConfigRouteResponse + func (v NullableAlertConfigRouteResponse) IsSet() bool + func (v NullableAlertConfigRouteResponse) MarshalJSON() ([]byte, error) + type NullableAlertGroup struct + func NewNullableAlertGroup(val *AlertGroup) *NullableAlertGroup + func (v *NullableAlertGroup) Set(val *AlertGroup) + func (v *NullableAlertGroup) UnmarshalJSON(src []byte) error + func (v *NullableAlertGroup) Unset() + func (v NullableAlertGroup) Get() *AlertGroup + func (v NullableAlertGroup) IsSet() bool + func (v NullableAlertGroup) MarshalJSON() ([]byte, error) + type NullableAlertGroupResponse struct + func NewNullableAlertGroupResponse(val *AlertGroupResponse) *NullableAlertGroupResponse + func (v *NullableAlertGroupResponse) Set(val *AlertGroupResponse) + func (v *NullableAlertGroupResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertGroupResponse) Unset() + func (v NullableAlertGroupResponse) Get() *AlertGroupResponse + func (v NullableAlertGroupResponse) IsSet() bool + func (v NullableAlertGroupResponse) MarshalJSON() ([]byte, error) + type NullableAlertGroupsResponse struct + func NewNullableAlertGroupsResponse(val *AlertGroupsResponse) *NullableAlertGroupsResponse + func (v *NullableAlertGroupsResponse) Set(val *AlertGroupsResponse) + func (v *NullableAlertGroupsResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertGroupsResponse) Unset() + func (v NullableAlertGroupsResponse) Get() *AlertGroupsResponse + func (v NullableAlertGroupsResponse) IsSet() bool + func (v NullableAlertGroupsResponse) MarshalJSON() ([]byte, error) + type NullableAlertRecord struct + func NewNullableAlertRecord(val *AlertRecord) *NullableAlertRecord + func (v *NullableAlertRecord) Set(val *AlertRecord) + func (v *NullableAlertRecord) UnmarshalJSON(src []byte) error + func (v *NullableAlertRecord) Unset() + func (v NullableAlertRecord) Get() *AlertRecord + func (v NullableAlertRecord) IsSet() bool + func (v NullableAlertRecord) MarshalJSON() ([]byte, error) + type NullableAlertRecordResponse struct + func NewNullableAlertRecordResponse(val *AlertRecordResponse) *NullableAlertRecordResponse + func (v *NullableAlertRecordResponse) Set(val *AlertRecordResponse) + func (v *NullableAlertRecordResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertRecordResponse) Unset() + func (v NullableAlertRecordResponse) Get() *AlertRecordResponse + func (v NullableAlertRecordResponse) IsSet() bool + func (v NullableAlertRecordResponse) MarshalJSON() ([]byte, error) + type NullableAlertRecordsResponse struct + func NewNullableAlertRecordsResponse(val *AlertRecordsResponse) *NullableAlertRecordsResponse + func (v *NullableAlertRecordsResponse) Set(val *AlertRecordsResponse) + func (v *NullableAlertRecordsResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertRecordsResponse) Unset() + func (v NullableAlertRecordsResponse) Get() *AlertRecordsResponse + func (v NullableAlertRecordsResponse) IsSet() bool + func (v NullableAlertRecordsResponse) MarshalJSON() ([]byte, error) + type NullableAlertRule struct + func NewNullableAlertRule(val *AlertRule) *NullableAlertRule + func (v *NullableAlertRule) Set(val *AlertRule) + func (v *NullableAlertRule) UnmarshalJSON(src []byte) error + func (v *NullableAlertRule) Unset() + func (v NullableAlertRule) Get() *AlertRule + func (v NullableAlertRule) IsSet() bool + func (v NullableAlertRule) MarshalJSON() ([]byte, error) + type NullableAlertRuleRecord struct + func NewNullableAlertRuleRecord(val *AlertRuleRecord) *NullableAlertRuleRecord + func (v *NullableAlertRuleRecord) Set(val *AlertRuleRecord) + func (v *NullableAlertRuleRecord) UnmarshalJSON(src []byte) error + func (v *NullableAlertRuleRecord) Unset() + func (v NullableAlertRuleRecord) Get() *AlertRuleRecord + func (v NullableAlertRuleRecord) IsSet() bool + func (v NullableAlertRuleRecord) MarshalJSON() ([]byte, error) + type NullableAlertRuleResponse struct + func NewNullableAlertRuleResponse(val *AlertRuleResponse) *NullableAlertRuleResponse + func (v *NullableAlertRuleResponse) Set(val *AlertRuleResponse) + func (v *NullableAlertRuleResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertRuleResponse) Unset() + func (v NullableAlertRuleResponse) Get() *AlertRuleResponse + func (v NullableAlertRuleResponse) IsSet() bool + func (v NullableAlertRuleResponse) MarshalJSON() ([]byte, error) + type NullableAlertRulesResponse struct + func NewNullableAlertRulesResponse(val *AlertRulesResponse) *NullableAlertRulesResponse + func (v *NullableAlertRulesResponse) Set(val *AlertRulesResponse) + func (v *NullableAlertRulesResponse) UnmarshalJSON(src []byte) error + func (v *NullableAlertRulesResponse) Unset() + func (v NullableAlertRulesResponse) Get() *AlertRulesResponse + func (v NullableAlertRulesResponse) IsSet() bool + func (v NullableAlertRulesResponse) MarshalJSON() ([]byte, error) + type NullableBackupResponse struct + func NewNullableBackupResponse(val *BackupResponse) *NullableBackupResponse + func (v *NullableBackupResponse) Set(val *BackupResponse) + func (v *NullableBackupResponse) UnmarshalJSON(src []byte) error + func (v *NullableBackupResponse) Unset() + func (v NullableBackupResponse) Get() *BackupResponse + func (v NullableBackupResponse) IsSet() bool + func (v NullableBackupResponse) MarshalJSON() ([]byte, error) + type NullableBackupRetentionResponse struct + func NewNullableBackupRetentionResponse(val *BackupRetentionResponse) *NullableBackupRetentionResponse + func (v *NullableBackupRetentionResponse) Set(val *BackupRetentionResponse) + func (v *NullableBackupRetentionResponse) UnmarshalJSON(src []byte) error + func (v *NullableBackupRetentionResponse) Unset() + func (v NullableBackupRetentionResponse) Get() *BackupRetentionResponse + func (v NullableBackupRetentionResponse) IsSet() bool + func (v NullableBackupRetentionResponse) MarshalJSON() ([]byte, error) + type NullableBackupSchedule struct + func NewNullableBackupSchedule(val *BackupSchedule) *NullableBackupSchedule + func (v *NullableBackupSchedule) Set(val *BackupSchedule) + func (v *NullableBackupSchedule) UnmarshalJSON(src []byte) error + func (v *NullableBackupSchedule) Unset() + func (v NullableBackupSchedule) Get() *BackupSchedule + func (v NullableBackupSchedule) IsSet() bool + func (v NullableBackupSchedule) MarshalJSON() ([]byte, error) + type NullableBackupSchedulePostResponse struct + func NewNullableBackupSchedulePostResponse(val *BackupSchedulePostResponse) *NullableBackupSchedulePostResponse + func (v *NullableBackupSchedulePostResponse) Set(val *BackupSchedulePostResponse) + func (v *NullableBackupSchedulePostResponse) UnmarshalJSON(src []byte) error + func (v *NullableBackupSchedulePostResponse) Unset() + func (v NullableBackupSchedulePostResponse) Get() *BackupSchedulePostResponse + func (v NullableBackupSchedulePostResponse) IsSet() bool + func (v NullableBackupSchedulePostResponse) MarshalJSON() ([]byte, error) + type NullableBackupScheduleResponse struct + func NewNullableBackupScheduleResponse(val *BackupScheduleResponse) *NullableBackupScheduleResponse + func (v *NullableBackupScheduleResponse) Set(val *BackupScheduleResponse) + func (v *NullableBackupScheduleResponse) UnmarshalJSON(src []byte) error + func (v *NullableBackupScheduleResponse) Unset() + func (v NullableBackupScheduleResponse) Get() *BackupScheduleResponse + func (v NullableBackupScheduleResponse) IsSet() bool + func (v NullableBackupScheduleResponse) MarshalJSON() ([]byte, error) + type NullableBasicAuth struct + func NewNullableBasicAuth(val *BasicAuth) *NullableBasicAuth + func (v *NullableBasicAuth) Set(val *BasicAuth) + func (v *NullableBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullableBasicAuth) Unset() + func (v NullableBasicAuth) Get() *BasicAuth + func (v NullableBasicAuth) IsSet() bool + func (v NullableBasicAuth) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCertCheckChildResponse struct + func NewNullableCertCheckChildResponse(val *CertCheckChildResponse) *NullableCertCheckChildResponse + func (v *NullableCertCheckChildResponse) Set(val *CertCheckChildResponse) + func (v *NullableCertCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableCertCheckChildResponse) Unset() + func (v NullableCertCheckChildResponse) Get() *CertCheckChildResponse + func (v NullableCertCheckChildResponse) IsSet() bool + func (v NullableCertCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableCertCheckResponse struct + func NewNullableCertCheckResponse(val *CertCheckResponse) *NullableCertCheckResponse + func (v *NullableCertCheckResponse) Set(val *CertCheckResponse) + func (v *NullableCertCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableCertCheckResponse) Unset() + func (v NullableCertCheckResponse) Get() *CertCheckResponse + func (v NullableCertCheckResponse) IsSet() bool + func (v NullableCertCheckResponse) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigReceiverPayload struct + func NewNullableCreateAlertConfigReceiverPayload(val *CreateAlertConfigReceiverPayload) *NullableCreateAlertConfigReceiverPayload + func (v *NullableCreateAlertConfigReceiverPayload) Set(val *CreateAlertConfigReceiverPayload) + func (v *NullableCreateAlertConfigReceiverPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigReceiverPayload) Unset() + func (v NullableCreateAlertConfigReceiverPayload) Get() *CreateAlertConfigReceiverPayload + func (v NullableCreateAlertConfigReceiverPayload) IsSet() bool + func (v NullableCreateAlertConfigReceiverPayload) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigReceiverPayloadEmailConfigsInner struct + func NewNullableCreateAlertConfigReceiverPayloadEmailConfigsInner(val *CreateAlertConfigReceiverPayloadEmailConfigsInner) *NullableCreateAlertConfigReceiverPayloadEmailConfigsInner + func (v *NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) Set(val *CreateAlertConfigReceiverPayloadEmailConfigsInner) + func (v *NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) Unset() + func (v NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) Get() *CreateAlertConfigReceiverPayloadEmailConfigsInner + func (v NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) IsSet() bool + func (v NullableCreateAlertConfigReceiverPayloadEmailConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner struct + func NewNullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner(val *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) *NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (v *NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) Set(val *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner) + func (v *NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) Unset() + func (v NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) Get() *CreateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (v NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) IsSet() bool + func (v NullableCreateAlertConfigReceiverPayloadOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner struct + func NewNullableCreateAlertConfigReceiverPayloadWebHookConfigsInner(val *CreateAlertConfigReceiverPayloadWebHookConfigsInner) *NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner + func (v *NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) Set(val *CreateAlertConfigReceiverPayloadWebHookConfigsInner) + func (v *NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) Unset() + func (v NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) Get() *CreateAlertConfigReceiverPayloadWebHookConfigsInner + func (v NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) IsSet() bool + func (v NullableCreateAlertConfigReceiverPayloadWebHookConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigRoutePayload struct + func NewNullableCreateAlertConfigRoutePayload(val *CreateAlertConfigRoutePayload) *NullableCreateAlertConfigRoutePayload + func (v *NullableCreateAlertConfigRoutePayload) Set(val *CreateAlertConfigRoutePayload) + func (v *NullableCreateAlertConfigRoutePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigRoutePayload) Unset() + func (v NullableCreateAlertConfigRoutePayload) Get() *CreateAlertConfigRoutePayload + func (v NullableCreateAlertConfigRoutePayload) IsSet() bool + func (v NullableCreateAlertConfigRoutePayload) MarshalJSON() ([]byte, error) + type NullableCreateAlertConfigRoutePayloadRoutesInner struct + func NewNullableCreateAlertConfigRoutePayloadRoutesInner(val *CreateAlertConfigRoutePayloadRoutesInner) *NullableCreateAlertConfigRoutePayloadRoutesInner + func (v *NullableCreateAlertConfigRoutePayloadRoutesInner) Set(val *CreateAlertConfigRoutePayloadRoutesInner) + func (v *NullableCreateAlertConfigRoutePayloadRoutesInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertConfigRoutePayloadRoutesInner) Unset() + func (v NullableCreateAlertConfigRoutePayloadRoutesInner) Get() *CreateAlertConfigRoutePayloadRoutesInner + func (v NullableCreateAlertConfigRoutePayloadRoutesInner) IsSet() bool + func (v NullableCreateAlertConfigRoutePayloadRoutesInner) MarshalJSON() ([]byte, error) + type NullableCreateAlertRecordPayload struct + func NewNullableCreateAlertRecordPayload(val *CreateAlertRecordPayload) *NullableCreateAlertRecordPayload + func (v *NullableCreateAlertRecordPayload) Set(val *CreateAlertRecordPayload) + func (v *NullableCreateAlertRecordPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertRecordPayload) Unset() + func (v NullableCreateAlertRecordPayload) Get() *CreateAlertRecordPayload + func (v NullableCreateAlertRecordPayload) IsSet() bool + func (v NullableCreateAlertRecordPayload) MarshalJSON() ([]byte, error) + type NullableCreateAlertgroupsPayload struct + func NewNullableCreateAlertgroupsPayload(val *CreateAlertgroupsPayload) *NullableCreateAlertgroupsPayload + func (v *NullableCreateAlertgroupsPayload) Set(val *CreateAlertgroupsPayload) + func (v *NullableCreateAlertgroupsPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertgroupsPayload) Unset() + func (v NullableCreateAlertgroupsPayload) Get() *CreateAlertgroupsPayload + func (v NullableCreateAlertgroupsPayload) IsSet() bool + func (v NullableCreateAlertgroupsPayload) MarshalJSON() ([]byte, error) + type NullableCreateAlertgroupsPayloadRulesInner struct + func NewNullableCreateAlertgroupsPayloadRulesInner(val *CreateAlertgroupsPayloadRulesInner) *NullableCreateAlertgroupsPayloadRulesInner + func (v *NullableCreateAlertgroupsPayloadRulesInner) Set(val *CreateAlertgroupsPayloadRulesInner) + func (v *NullableCreateAlertgroupsPayloadRulesInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertgroupsPayloadRulesInner) Unset() + func (v NullableCreateAlertgroupsPayloadRulesInner) Get() *CreateAlertgroupsPayloadRulesInner + func (v NullableCreateAlertgroupsPayloadRulesInner) IsSet() bool + func (v NullableCreateAlertgroupsPayloadRulesInner) MarshalJSON() ([]byte, error) + type NullableCreateAlertrulesPayload struct + func NewNullableCreateAlertrulesPayload(val *CreateAlertrulesPayload) *NullableCreateAlertrulesPayload + func (v *NullableCreateAlertrulesPayload) Set(val *CreateAlertrulesPayload) + func (v *NullableCreateAlertrulesPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAlertrulesPayload) Unset() + func (v NullableCreateAlertrulesPayload) Get() *CreateAlertrulesPayload + func (v NullableCreateAlertrulesPayload) IsSet() bool + func (v NullableCreateAlertrulesPayload) MarshalJSON() ([]byte, error) + type NullableCreateBackupSchedulePayload struct + func NewNullableCreateBackupSchedulePayload(val *CreateBackupSchedulePayload) *NullableCreateBackupSchedulePayload + func (v *NullableCreateBackupSchedulePayload) Set(val *CreateBackupSchedulePayload) + func (v *NullableCreateBackupSchedulePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateBackupSchedulePayload) Unset() + func (v NullableCreateBackupSchedulePayload) Get() *CreateBackupSchedulePayload + func (v NullableCreateBackupSchedulePayload) IsSet() bool + func (v NullableCreateBackupSchedulePayload) MarshalJSON() ([]byte, error) + type NullableCreateCertCheck400Response struct + func NewNullableCreateCertCheck400Response(val *CreateCertCheck400Response) *NullableCreateCertCheck400Response + func (v *NullableCreateCertCheck400Response) Set(val *CreateCertCheck400Response) + func (v *NullableCreateCertCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateCertCheck400Response) Unset() + func (v NullableCreateCertCheck400Response) Get() *CreateCertCheck400Response + func (v NullableCreateCertCheck400Response) IsSet() bool + func (v NullableCreateCertCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateCertCheckPayload struct + func NewNullableCreateCertCheckPayload(val *CreateCertCheckPayload) *NullableCreateCertCheckPayload + func (v *NullableCreateCertCheckPayload) Set(val *CreateCertCheckPayload) + func (v *NullableCreateCertCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateCertCheckPayload) Unset() + func (v NullableCreateCertCheckPayload) Get() *CreateCertCheckPayload + func (v NullableCreateCertCheckPayload) IsSet() bool + func (v NullableCreateCertCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateCredentialsPayload struct + func NewNullableCreateCredentialsPayload(val *CreateCredentialsPayload) *NullableCreateCredentialsPayload + func (v *NullableCreateCredentialsPayload) Set(val *CreateCredentialsPayload) + func (v *NullableCreateCredentialsPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateCredentialsPayload) Unset() + func (v NullableCreateCredentialsPayload) Get() *CreateCredentialsPayload + func (v NullableCreateCredentialsPayload) IsSet() bool + func (v NullableCreateCredentialsPayload) MarshalJSON() ([]byte, error) + type NullableCreateCredentialsResponse struct + func NewNullableCreateCredentialsResponse(val *CreateCredentialsResponse) *NullableCreateCredentialsResponse + func (v *NullableCreateCredentialsResponse) Set(val *CreateCredentialsResponse) + func (v *NullableCreateCredentialsResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateCredentialsResponse) Unset() + func (v NullableCreateCredentialsResponse) Get() *CreateCredentialsResponse + func (v NullableCreateCredentialsResponse) IsSet() bool + func (v NullableCreateCredentialsResponse) MarshalJSON() ([]byte, error) + type NullableCreateElasticsearchCheck400Response struct + func NewNullableCreateElasticsearchCheck400Response(val *CreateElasticsearchCheck400Response) *NullableCreateElasticsearchCheck400Response + func (v *NullableCreateElasticsearchCheck400Response) Set(val *CreateElasticsearchCheck400Response) + func (v *NullableCreateElasticsearchCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateElasticsearchCheck400Response) Unset() + func (v NullableCreateElasticsearchCheck400Response) Get() *CreateElasticsearchCheck400Response + func (v NullableCreateElasticsearchCheck400Response) IsSet() bool + func (v NullableCreateElasticsearchCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateElasticsearchCheckPayload struct + func NewNullableCreateElasticsearchCheckPayload(val *CreateElasticsearchCheckPayload) *NullableCreateElasticsearchCheckPayload + func (v *NullableCreateElasticsearchCheckPayload) Set(val *CreateElasticsearchCheckPayload) + func (v *NullableCreateElasticsearchCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateElasticsearchCheckPayload) Unset() + func (v NullableCreateElasticsearchCheckPayload) Get() *CreateElasticsearchCheckPayload + func (v NullableCreateElasticsearchCheckPayload) IsSet() bool + func (v NullableCreateElasticsearchCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateHttpCheck400Response struct + func NewNullableCreateHttpCheck400Response(val *CreateHttpCheck400Response) *NullableCreateHttpCheck400Response + func (v *NullableCreateHttpCheck400Response) Set(val *CreateHttpCheck400Response) + func (v *NullableCreateHttpCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateHttpCheck400Response) Unset() + func (v NullableCreateHttpCheck400Response) Get() *CreateHttpCheck400Response + func (v NullableCreateHttpCheck400Response) IsSet() bool + func (v NullableCreateHttpCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateHttpCheckPayload struct + func NewNullableCreateHttpCheckPayload(val *CreateHttpCheckPayload) *NullableCreateHttpCheckPayload + func (v *NullableCreateHttpCheckPayload) Set(val *CreateHttpCheckPayload) + func (v *NullableCreateHttpCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateHttpCheckPayload) Unset() + func (v NullableCreateHttpCheckPayload) Get() *CreateHttpCheckPayload + func (v NullableCreateHttpCheckPayload) IsSet() bool + func (v NullableCreateHttpCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateInstancePayload struct + func NewNullableCreateInstancePayload(val *CreateInstancePayload) *NullableCreateInstancePayload + func (v *NullableCreateInstancePayload) Set(val *CreateInstancePayload) + func (v *NullableCreateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstancePayload) Unset() + func (v NullableCreateInstancePayload) Get() *CreateInstancePayload + func (v NullableCreateInstancePayload) IsSet() bool + func (v NullableCreateInstancePayload) MarshalJSON() ([]byte, error) + type NullableCreateInstanceResponse struct + func NewNullableCreateInstanceResponse(val *CreateInstanceResponse) *NullableCreateInstanceResponse + func (v *NullableCreateInstanceResponse) Set(val *CreateInstanceResponse) + func (v *NullableCreateInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateInstanceResponse) Unset() + func (v NullableCreateInstanceResponse) Get() *CreateInstanceResponse + func (v NullableCreateInstanceResponse) IsSet() bool + func (v NullableCreateInstanceResponse) MarshalJSON() ([]byte, error) + type NullableCreateLogsAlertgroupsPayload struct + func NewNullableCreateLogsAlertgroupsPayload(val *CreateLogsAlertgroupsPayload) *NullableCreateLogsAlertgroupsPayload + func (v *NullableCreateLogsAlertgroupsPayload) Set(val *CreateLogsAlertgroupsPayload) + func (v *NullableCreateLogsAlertgroupsPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateLogsAlertgroupsPayload) Unset() + func (v NullableCreateLogsAlertgroupsPayload) Get() *CreateLogsAlertgroupsPayload + func (v NullableCreateLogsAlertgroupsPayload) IsSet() bool + func (v NullableCreateLogsAlertgroupsPayload) MarshalJSON() ([]byte, error) + type NullableCreateLogsAlertgroupsPayloadRulesInner struct + func NewNullableCreateLogsAlertgroupsPayloadRulesInner(val *CreateLogsAlertgroupsPayloadRulesInner) *NullableCreateLogsAlertgroupsPayloadRulesInner + func (v *NullableCreateLogsAlertgroupsPayloadRulesInner) Set(val *CreateLogsAlertgroupsPayloadRulesInner) + func (v *NullableCreateLogsAlertgroupsPayloadRulesInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateLogsAlertgroupsPayloadRulesInner) Unset() + func (v NullableCreateLogsAlertgroupsPayloadRulesInner) Get() *CreateLogsAlertgroupsPayloadRulesInner + func (v NullableCreateLogsAlertgroupsPayloadRulesInner) IsSet() bool + func (v NullableCreateLogsAlertgroupsPayloadRulesInner) MarshalJSON() ([]byte, error) + type NullableCreateMongodbCheck400Response struct + func NewNullableCreateMongodbCheck400Response(val *CreateMongodbCheck400Response) *NullableCreateMongodbCheck400Response + func (v *NullableCreateMongodbCheck400Response) Set(val *CreateMongodbCheck400Response) + func (v *NullableCreateMongodbCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateMongodbCheck400Response) Unset() + func (v NullableCreateMongodbCheck400Response) Get() *CreateMongodbCheck400Response + func (v NullableCreateMongodbCheck400Response) IsSet() bool + func (v NullableCreateMongodbCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateMongodbCheckPayload struct + func NewNullableCreateMongodbCheckPayload(val *CreateMongodbCheckPayload) *NullableCreateMongodbCheckPayload + func (v *NullableCreateMongodbCheckPayload) Set(val *CreateMongodbCheckPayload) + func (v *NullableCreateMongodbCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateMongodbCheckPayload) Unset() + func (v NullableCreateMongodbCheckPayload) Get() *CreateMongodbCheckPayload + func (v NullableCreateMongodbCheckPayload) IsSet() bool + func (v NullableCreateMongodbCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateMysqlCheck400Response struct + func NewNullableCreateMysqlCheck400Response(val *CreateMysqlCheck400Response) *NullableCreateMysqlCheck400Response + func (v *NullableCreateMysqlCheck400Response) Set(val *CreateMysqlCheck400Response) + func (v *NullableCreateMysqlCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateMysqlCheck400Response) Unset() + func (v NullableCreateMysqlCheck400Response) Get() *CreateMysqlCheck400Response + func (v NullableCreateMysqlCheck400Response) IsSet() bool + func (v NullableCreateMysqlCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateMysqlCheckPayload struct + func NewNullableCreateMysqlCheckPayload(val *CreateMysqlCheckPayload) *NullableCreateMysqlCheckPayload + func (v *NullableCreateMysqlCheckPayload) Set(val *CreateMysqlCheckPayload) + func (v *NullableCreateMysqlCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateMysqlCheckPayload) Unset() + func (v NullableCreateMysqlCheckPayload) Get() *CreateMysqlCheckPayload + func (v NullableCreateMysqlCheckPayload) IsSet() bool + func (v NullableCreateMysqlCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateNetworkCheck400Response struct + func NewNullableCreateNetworkCheck400Response(val *CreateNetworkCheck400Response) *NullableCreateNetworkCheck400Response + func (v *NullableCreateNetworkCheck400Response) Set(val *CreateNetworkCheck400Response) + func (v *NullableCreateNetworkCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkCheck400Response) Unset() + func (v NullableCreateNetworkCheck400Response) Get() *CreateNetworkCheck400Response + func (v NullableCreateNetworkCheck400Response) IsSet() bool + func (v NullableCreateNetworkCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateNetworkCheckPayload struct + func NewNullableCreateNetworkCheckPayload(val *CreateNetworkCheckPayload) *NullableCreateNetworkCheckPayload + func (v *NullableCreateNetworkCheckPayload) Set(val *CreateNetworkCheckPayload) + func (v *NullableCreateNetworkCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkCheckPayload) Unset() + func (v NullableCreateNetworkCheckPayload) Get() *CreateNetworkCheckPayload + func (v NullableCreateNetworkCheckPayload) IsSet() bool + func (v NullableCreateNetworkCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreatePingCheck400Response struct + func NewNullableCreatePingCheck400Response(val *CreatePingCheck400Response) *NullableCreatePingCheck400Response + func (v *NullableCreatePingCheck400Response) Set(val *CreatePingCheck400Response) + func (v *NullableCreatePingCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreatePingCheck400Response) Unset() + func (v NullableCreatePingCheck400Response) Get() *CreatePingCheck400Response + func (v NullableCreatePingCheck400Response) IsSet() bool + func (v NullableCreatePingCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreatePingCheckPayload struct + func NewNullableCreatePingCheckPayload(val *CreatePingCheckPayload) *NullableCreatePingCheckPayload + func (v *NullableCreatePingCheckPayload) Set(val *CreatePingCheckPayload) + func (v *NullableCreatePingCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreatePingCheckPayload) Unset() + func (v NullableCreatePingCheckPayload) Get() *CreatePingCheckPayload + func (v NullableCreatePingCheckPayload) IsSet() bool + func (v NullableCreatePingCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreatePostgresqlCheck400Response struct + func NewNullableCreatePostgresqlCheck400Response(val *CreatePostgresqlCheck400Response) *NullableCreatePostgresqlCheck400Response + func (v *NullableCreatePostgresqlCheck400Response) Set(val *CreatePostgresqlCheck400Response) + func (v *NullableCreatePostgresqlCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreatePostgresqlCheck400Response) Unset() + func (v NullableCreatePostgresqlCheck400Response) Get() *CreatePostgresqlCheck400Response + func (v NullableCreatePostgresqlCheck400Response) IsSet() bool + func (v NullableCreatePostgresqlCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreatePostgresqlCheckPayload struct + func NewNullableCreatePostgresqlCheckPayload(val *CreatePostgresqlCheckPayload) *NullableCreatePostgresqlCheckPayload + func (v *NullableCreatePostgresqlCheckPayload) Set(val *CreatePostgresqlCheckPayload) + func (v *NullableCreatePostgresqlCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreatePostgresqlCheckPayload) Unset() + func (v NullableCreatePostgresqlCheckPayload) Get() *CreatePostgresqlCheckPayload + func (v NullableCreatePostgresqlCheckPayload) IsSet() bool + func (v NullableCreatePostgresqlCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateRabbitmqCheck400Response struct + func NewNullableCreateRabbitmqCheck400Response(val *CreateRabbitmqCheck400Response) *NullableCreateRabbitmqCheck400Response + func (v *NullableCreateRabbitmqCheck400Response) Set(val *CreateRabbitmqCheck400Response) + func (v *NullableCreateRabbitmqCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateRabbitmqCheck400Response) Unset() + func (v NullableCreateRabbitmqCheck400Response) Get() *CreateRabbitmqCheck400Response + func (v NullableCreateRabbitmqCheck400Response) IsSet() bool + func (v NullableCreateRabbitmqCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateRabbitmqCheckPayload struct + func NewNullableCreateRabbitmqCheckPayload(val *CreateRabbitmqCheckPayload) *NullableCreateRabbitmqCheckPayload + func (v *NullableCreateRabbitmqCheckPayload) Set(val *CreateRabbitmqCheckPayload) + func (v *NullableCreateRabbitmqCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateRabbitmqCheckPayload) Unset() + func (v NullableCreateRabbitmqCheckPayload) Get() *CreateRabbitmqCheckPayload + func (v NullableCreateRabbitmqCheckPayload) IsSet() bool + func (v NullableCreateRabbitmqCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateRedisCheck400Response struct + func NewNullableCreateRedisCheck400Response(val *CreateRedisCheck400Response) *NullableCreateRedisCheck400Response + func (v *NullableCreateRedisCheck400Response) Set(val *CreateRedisCheck400Response) + func (v *NullableCreateRedisCheck400Response) UnmarshalJSON(src []byte) error + func (v *NullableCreateRedisCheck400Response) Unset() + func (v NullableCreateRedisCheck400Response) Get() *CreateRedisCheck400Response + func (v NullableCreateRedisCheck400Response) IsSet() bool + func (v NullableCreateRedisCheck400Response) MarshalJSON() ([]byte, error) + type NullableCreateRedisCheckPayload struct + func NewNullableCreateRedisCheckPayload(val *CreateRedisCheckPayload) *NullableCreateRedisCheckPayload + func (v *NullableCreateRedisCheckPayload) Set(val *CreateRedisCheckPayload) + func (v *NullableCreateRedisCheckPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateRedisCheckPayload) Unset() + func (v NullableCreateRedisCheckPayload) Get() *CreateRedisCheckPayload + func (v NullableCreateRedisCheckPayload) IsSet() bool + func (v NullableCreateRedisCheckPayload) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayload struct + func NewNullableCreateScrapeConfigPayload(val *CreateScrapeConfigPayload) *NullableCreateScrapeConfigPayload + func (v *NullableCreateScrapeConfigPayload) Set(val *CreateScrapeConfigPayload) + func (v *NullableCreateScrapeConfigPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayload) Unset() + func (v NullableCreateScrapeConfigPayload) Get() *CreateScrapeConfigPayload + func (v NullableCreateScrapeConfigPayload) IsSet() bool + func (v NullableCreateScrapeConfigPayload) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadBasicAuth struct + func NewNullableCreateScrapeConfigPayloadBasicAuth(val *CreateScrapeConfigPayloadBasicAuth) *NullableCreateScrapeConfigPayloadBasicAuth + func (v *NullableCreateScrapeConfigPayloadBasicAuth) Set(val *CreateScrapeConfigPayloadBasicAuth) + func (v *NullableCreateScrapeConfigPayloadBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadBasicAuth) Unset() + func (v NullableCreateScrapeConfigPayloadBasicAuth) Get() *CreateScrapeConfigPayloadBasicAuth + func (v NullableCreateScrapeConfigPayloadBasicAuth) IsSet() bool + func (v NullableCreateScrapeConfigPayloadBasicAuth) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadHttpSdConfigsInner struct + func NewNullableCreateScrapeConfigPayloadHttpSdConfigsInner(val *CreateScrapeConfigPayloadHttpSdConfigsInner) *NullableCreateScrapeConfigPayloadHttpSdConfigsInner + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInner) Set(val *CreateScrapeConfigPayloadHttpSdConfigsInner) + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInner) Unset() + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInner) Get() *CreateScrapeConfigPayloadHttpSdConfigsInner + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInner) IsSet() bool + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth struct + func NewNullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth(val *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) Set(val *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) Unset() + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) Get() *CreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) IsSet() bool + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerBasicAuth) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 struct + func NewNullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2(val *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) Set(val *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) Unset() + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) Get() *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2 + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) IsSet() bool + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig struct + func NewNullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig(val *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) Set(val *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) Unset() + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) Get() *CreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) IsSet() bool + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig struct + func NewNullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig(val *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) Set(val *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) Unset() + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) Get() *CreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) IsSet() bool + func (v NullableCreateScrapeConfigPayloadHttpSdConfigsInnerTlsConfig) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner struct + func NewNullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner(val *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) *NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner + func (v *NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) Set(val *CreateScrapeConfigPayloadMetricsRelabelConfigsInner) + func (v *NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) Unset() + func (v NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) Get() *CreateScrapeConfigPayloadMetricsRelabelConfigsInner + func (v NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) IsSet() bool + func (v NullableCreateScrapeConfigPayloadMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadOauth2 struct + func NewNullableCreateScrapeConfigPayloadOauth2(val *CreateScrapeConfigPayloadOauth2) *NullableCreateScrapeConfigPayloadOauth2 + func (v *NullableCreateScrapeConfigPayloadOauth2) Set(val *CreateScrapeConfigPayloadOauth2) + func (v *NullableCreateScrapeConfigPayloadOauth2) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadOauth2) Unset() + func (v NullableCreateScrapeConfigPayloadOauth2) Get() *CreateScrapeConfigPayloadOauth2 + func (v NullableCreateScrapeConfigPayloadOauth2) IsSet() bool + func (v NullableCreateScrapeConfigPayloadOauth2) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadOauth2TlsConfig struct + func NewNullableCreateScrapeConfigPayloadOauth2TlsConfig(val *CreateScrapeConfigPayloadOauth2TlsConfig) *NullableCreateScrapeConfigPayloadOauth2TlsConfig + func (v *NullableCreateScrapeConfigPayloadOauth2TlsConfig) Set(val *CreateScrapeConfigPayloadOauth2TlsConfig) + func (v *NullableCreateScrapeConfigPayloadOauth2TlsConfig) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadOauth2TlsConfig) Unset() + func (v NullableCreateScrapeConfigPayloadOauth2TlsConfig) Get() *CreateScrapeConfigPayloadOauth2TlsConfig + func (v NullableCreateScrapeConfigPayloadOauth2TlsConfig) IsSet() bool + func (v NullableCreateScrapeConfigPayloadOauth2TlsConfig) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadStaticConfigsInner struct + func NewNullableCreateScrapeConfigPayloadStaticConfigsInner(val *CreateScrapeConfigPayloadStaticConfigsInner) *NullableCreateScrapeConfigPayloadStaticConfigsInner + func (v *NullableCreateScrapeConfigPayloadStaticConfigsInner) Set(val *CreateScrapeConfigPayloadStaticConfigsInner) + func (v *NullableCreateScrapeConfigPayloadStaticConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadStaticConfigsInner) Unset() + func (v NullableCreateScrapeConfigPayloadStaticConfigsInner) Get() *CreateScrapeConfigPayloadStaticConfigsInner + func (v NullableCreateScrapeConfigPayloadStaticConfigsInner) IsSet() bool + func (v NullableCreateScrapeConfigPayloadStaticConfigsInner) MarshalJSON() ([]byte, error) + type NullableCreateScrapeConfigPayloadTlsConfig struct + func NewNullableCreateScrapeConfigPayloadTlsConfig(val *CreateScrapeConfigPayloadTlsConfig) *NullableCreateScrapeConfigPayloadTlsConfig + func (v *NullableCreateScrapeConfigPayloadTlsConfig) Set(val *CreateScrapeConfigPayloadTlsConfig) + func (v *NullableCreateScrapeConfigPayloadTlsConfig) UnmarshalJSON(src []byte) error + func (v *NullableCreateScrapeConfigPayloadTlsConfig) Unset() + func (v NullableCreateScrapeConfigPayloadTlsConfig) Get() *CreateScrapeConfigPayloadTlsConfig + func (v NullableCreateScrapeConfigPayloadTlsConfig) IsSet() bool + func (v NullableCreateScrapeConfigPayloadTlsConfig) MarshalJSON() ([]byte, error) + type NullableCredentials struct + func NewNullableCredentials(val *Credentials) *NullableCredentials + func (v *NullableCredentials) Set(val *Credentials) + func (v *NullableCredentials) UnmarshalJSON(src []byte) error + func (v *NullableCredentials) Unset() + func (v NullableCredentials) Get() *Credentials + func (v NullableCredentials) IsSet() bool + func (v NullableCredentials) MarshalJSON() ([]byte, error) + type NullableCredentialsRemoteWriteConfig struct + func NewNullableCredentialsRemoteWriteConfig(val *CredentialsRemoteWriteConfig) *NullableCredentialsRemoteWriteConfig + func (v *NullableCredentialsRemoteWriteConfig) Set(val *CredentialsRemoteWriteConfig) + func (v *NullableCredentialsRemoteWriteConfig) UnmarshalJSON(src []byte) error + func (v *NullableCredentialsRemoteWriteConfig) Unset() + func (v NullableCredentialsRemoteWriteConfig) Get() *CredentialsRemoteWriteConfig + func (v NullableCredentialsRemoteWriteConfig) IsSet() bool + func (v NullableCredentialsRemoteWriteConfig) MarshalJSON() ([]byte, error) + type NullableCredentialsRemoteWriteDeleteResponse struct + func NewNullableCredentialsRemoteWriteDeleteResponse(val *CredentialsRemoteWriteDeleteResponse) *NullableCredentialsRemoteWriteDeleteResponse + func (v *NullableCredentialsRemoteWriteDeleteResponse) Set(val *CredentialsRemoteWriteDeleteResponse) + func (v *NullableCredentialsRemoteWriteDeleteResponse) UnmarshalJSON(src []byte) error + func (v *NullableCredentialsRemoteWriteDeleteResponse) Unset() + func (v NullableCredentialsRemoteWriteDeleteResponse) Get() *CredentialsRemoteWriteDeleteResponse + func (v NullableCredentialsRemoteWriteDeleteResponse) IsSet() bool + func (v NullableCredentialsRemoteWriteDeleteResponse) MarshalJSON() ([]byte, error) + type NullableDeleteScrapeConfigResponse struct + func NewNullableDeleteScrapeConfigResponse(val *DeleteScrapeConfigResponse) *NullableDeleteScrapeConfigResponse + func (v *NullableDeleteScrapeConfigResponse) Set(val *DeleteScrapeConfigResponse) + func (v *NullableDeleteScrapeConfigResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteScrapeConfigResponse) Unset() + func (v NullableDeleteScrapeConfigResponse) Get() *DeleteScrapeConfigResponse + func (v NullableDeleteScrapeConfigResponse) IsSet() bool + func (v NullableDeleteScrapeConfigResponse) MarshalJSON() ([]byte, error) + type NullableElasticsearchCheckChildResponse struct + func NewNullableElasticsearchCheckChildResponse(val *ElasticsearchCheckChildResponse) *NullableElasticsearchCheckChildResponse + func (v *NullableElasticsearchCheckChildResponse) Set(val *ElasticsearchCheckChildResponse) + func (v *NullableElasticsearchCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableElasticsearchCheckChildResponse) Unset() + func (v NullableElasticsearchCheckChildResponse) Get() *ElasticsearchCheckChildResponse + func (v NullableElasticsearchCheckChildResponse) IsSet() bool + func (v NullableElasticsearchCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableElasticsearchCheckResponse struct + func NewNullableElasticsearchCheckResponse(val *ElasticsearchCheckResponse) *NullableElasticsearchCheckResponse + func (v *NullableElasticsearchCheckResponse) Set(val *ElasticsearchCheckResponse) + func (v *NullableElasticsearchCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableElasticsearchCheckResponse) Unset() + func (v NullableElasticsearchCheckResponse) Get() *ElasticsearchCheckResponse + func (v NullableElasticsearchCheckResponse) IsSet() bool + func (v NullableElasticsearchCheckResponse) MarshalJSON() ([]byte, error) + type NullableEmailConfig struct + func NewNullableEmailConfig(val *EmailConfig) *NullableEmailConfig + func (v *NullableEmailConfig) Set(val *EmailConfig) + func (v *NullableEmailConfig) UnmarshalJSON(src []byte) error + func (v *NullableEmailConfig) Unset() + func (v NullableEmailConfig) Get() *EmailConfig + func (v NullableEmailConfig) IsSet() bool + func (v NullableEmailConfig) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGetAlertConfigsResponse struct + func NewNullableGetAlertConfigsResponse(val *GetAlertConfigsResponse) *NullableGetAlertConfigsResponse + func (v *NullableGetAlertConfigsResponse) Set(val *GetAlertConfigsResponse) + func (v *NullableGetAlertConfigsResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetAlertConfigsResponse) Unset() + func (v NullableGetAlertConfigsResponse) Get() *GetAlertConfigsResponse + func (v NullableGetAlertConfigsResponse) IsSet() bool + func (v NullableGetAlertConfigsResponse) MarshalJSON() ([]byte, error) + type NullableGetCredentialsResponse struct + func NewNullableGetCredentialsResponse(val *GetCredentialsResponse) *NullableGetCredentialsResponse + func (v *NullableGetCredentialsResponse) Set(val *GetCredentialsResponse) + func (v *NullableGetCredentialsResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetCredentialsResponse) Unset() + func (v NullableGetCredentialsResponse) Get() *GetCredentialsResponse + func (v NullableGetCredentialsResponse) IsSet() bool + func (v NullableGetCredentialsResponse) MarshalJSON() ([]byte, error) + type NullableGetInstanceResponse struct + func NewNullableGetInstanceResponse(val *GetInstanceResponse) *NullableGetInstanceResponse + func (v *NullableGetInstanceResponse) Set(val *GetInstanceResponse) + func (v *NullableGetInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetInstanceResponse) Unset() + func (v NullableGetInstanceResponse) Get() *GetInstanceResponse + func (v NullableGetInstanceResponse) IsSet() bool + func (v NullableGetInstanceResponse) MarshalJSON() ([]byte, error) + type NullableGetMetricsStorageRetentionResponse struct + func NewNullableGetMetricsStorageRetentionResponse(val *GetMetricsStorageRetentionResponse) *NullableGetMetricsStorageRetentionResponse + func (v *NullableGetMetricsStorageRetentionResponse) Set(val *GetMetricsStorageRetentionResponse) + func (v *NullableGetMetricsStorageRetentionResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetMetricsStorageRetentionResponse) Unset() + func (v NullableGetMetricsStorageRetentionResponse) Get() *GetMetricsStorageRetentionResponse + func (v NullableGetMetricsStorageRetentionResponse) IsSet() bool + func (v NullableGetMetricsStorageRetentionResponse) MarshalJSON() ([]byte, error) + type NullableGetScrapeConfigResponse struct + func NewNullableGetScrapeConfigResponse(val *GetScrapeConfigResponse) *NullableGetScrapeConfigResponse + func (v *NullableGetScrapeConfigResponse) Set(val *GetScrapeConfigResponse) + func (v *NullableGetScrapeConfigResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetScrapeConfigResponse) Unset() + func (v NullableGetScrapeConfigResponse) Get() *GetScrapeConfigResponse + func (v NullableGetScrapeConfigResponse) IsSet() bool + func (v NullableGetScrapeConfigResponse) MarshalJSON() ([]byte, error) + type NullableGlobal struct + func NewNullableGlobal(val *Global) *NullableGlobal + func (v *NullableGlobal) Set(val *Global) + func (v *NullableGlobal) UnmarshalJSON(src []byte) error + func (v *NullableGlobal) Unset() + func (v NullableGlobal) Get() *Global + func (v NullableGlobal) IsSet() bool + func (v NullableGlobal) MarshalJSON() ([]byte, error) + type NullableGrafanaConfigs struct + func NewNullableGrafanaConfigs(val *GrafanaConfigs) *NullableGrafanaConfigs + func (v *NullableGrafanaConfigs) Set(val *GrafanaConfigs) + func (v *NullableGrafanaConfigs) UnmarshalJSON(src []byte) error + func (v *NullableGrafanaConfigs) Unset() + func (v NullableGrafanaConfigs) Get() *GrafanaConfigs + func (v NullableGrafanaConfigs) IsSet() bool + func (v NullableGrafanaConfigs) MarshalJSON() ([]byte, error) + type NullableGrafanaOauth struct + func NewNullableGrafanaOauth(val *GrafanaOauth) *NullableGrafanaOauth + func (v *NullableGrafanaOauth) Set(val *GrafanaOauth) + func (v *NullableGrafanaOauth) UnmarshalJSON(src []byte) error + func (v *NullableGrafanaOauth) Unset() + func (v NullableGrafanaOauth) Get() *GrafanaOauth + func (v NullableGrafanaOauth) IsSet() bool + func (v NullableGrafanaOauth) MarshalJSON() ([]byte, error) + type NullableHTTPServiceSD struct + func NewNullableHTTPServiceSD(val *HTTPServiceSD) *NullableHTTPServiceSD + func (v *NullableHTTPServiceSD) Set(val *HTTPServiceSD) + func (v *NullableHTTPServiceSD) UnmarshalJSON(src []byte) error + func (v *NullableHTTPServiceSD) Unset() + func (v NullableHTTPServiceSD) Get() *HTTPServiceSD + func (v NullableHTTPServiceSD) IsSet() bool + func (v NullableHTTPServiceSD) MarshalJSON() ([]byte, error) + type NullableHttpCheckChildResponse struct + func NewNullableHttpCheckChildResponse(val *HttpCheckChildResponse) *NullableHttpCheckChildResponse + func (v *NullableHttpCheckChildResponse) Set(val *HttpCheckChildResponse) + func (v *NullableHttpCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableHttpCheckChildResponse) Unset() + func (v NullableHttpCheckChildResponse) Get() *HttpCheckChildResponse + func (v NullableHttpCheckChildResponse) IsSet() bool + func (v NullableHttpCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableHttpCheckResponse struct + func NewNullableHttpCheckResponse(val *HttpCheckResponse) *NullableHttpCheckResponse + func (v *NullableHttpCheckResponse) Set(val *HttpCheckResponse) + func (v *NullableHttpCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableHttpCheckResponse) Unset() + func (v NullableHttpCheckResponse) Get() *HttpCheckResponse + func (v NullableHttpCheckResponse) IsSet() bool + func (v NullableHttpCheckResponse) MarshalJSON() ([]byte, error) + type NullableInhibitRules struct + func NewNullableInhibitRules(val *InhibitRules) *NullableInhibitRules + func (v *NullableInhibitRules) Set(val *InhibitRules) + func (v *NullableInhibitRules) UnmarshalJSON(src []byte) error + func (v *NullableInhibitRules) Unset() + func (v NullableInhibitRules) Get() *InhibitRules + func (v NullableInhibitRules) IsSet() bool + func (v NullableInhibitRules) MarshalJSON() ([]byte, error) + type NullableInstance struct + func NewNullableInstance(val *Instance) *NullableInstance + func (v *NullableInstance) Set(val *Instance) + func (v *NullableInstance) UnmarshalJSON(src []byte) error + func (v *NullableInstance) Unset() + func (v NullableInstance) Get() *Instance + func (v NullableInstance) IsSet() bool + func (v NullableInstance) MarshalJSON() ([]byte, error) + type NullableInstanceResponse struct + func NewNullableInstanceResponse(val *InstanceResponse) *NullableInstanceResponse + func (v *NullableInstanceResponse) Set(val *InstanceResponse) + func (v *NullableInstanceResponse) UnmarshalJSON(src []byte) error + func (v *NullableInstanceResponse) Unset() + func (v NullableInstanceResponse) Get() *InstanceResponse + func (v NullableInstanceResponse) IsSet() bool + func (v NullableInstanceResponse) MarshalJSON() ([]byte, error) + type NullableInstanceSensitiveData struct + func NewNullableInstanceSensitiveData(val *InstanceSensitiveData) *NullableInstanceSensitiveData + func (v *NullableInstanceSensitiveData) Set(val *InstanceSensitiveData) + func (v *NullableInstanceSensitiveData) UnmarshalJSON(src []byte) error + func (v *NullableInstanceSensitiveData) Unset() + func (v NullableInstanceSensitiveData) Get() *InstanceSensitiveData + func (v NullableInstanceSensitiveData) IsSet() bool + func (v NullableInstanceSensitiveData) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableJob struct + func NewNullableJob(val *Job) *NullableJob + func (v *NullableJob) Set(val *Job) + func (v *NullableJob) UnmarshalJSON(src []byte) error + func (v *NullableJob) Unset() + func (v NullableJob) Get() *Job + func (v NullableJob) IsSet() bool + func (v NullableJob) MarshalJSON() ([]byte, error) + type NullableListACLResponse struct + func NewNullableListACLResponse(val *ListACLResponse) *NullableListACLResponse + func (v *NullableListACLResponse) Set(val *ListACLResponse) + func (v *NullableListACLResponse) UnmarshalJSON(src []byte) error + func (v *NullableListACLResponse) Unset() + func (v NullableListACLResponse) Get() *ListACLResponse + func (v NullableListACLResponse) IsSet() bool + func (v NullableListACLResponse) MarshalJSON() ([]byte, error) + type NullableListCredentialsResponse struct + func NewNullableListCredentialsResponse(val *ListCredentialsResponse) *NullableListCredentialsResponse + func (v *NullableListCredentialsResponse) Set(val *ListCredentialsResponse) + func (v *NullableListCredentialsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListCredentialsResponse) Unset() + func (v NullableListCredentialsResponse) Get() *ListCredentialsResponse + func (v NullableListCredentialsResponse) IsSet() bool + func (v NullableListCredentialsResponse) MarshalJSON() ([]byte, error) + type NullableListInstancesResponse struct + func NewNullableListInstancesResponse(val *ListInstancesResponse) *NullableListInstancesResponse + func (v *NullableListInstancesResponse) Set(val *ListInstancesResponse) + func (v *NullableListInstancesResponse) UnmarshalJSON(src []byte) error + func (v *NullableListInstancesResponse) Unset() + func (v NullableListInstancesResponse) Get() *ListInstancesResponse + func (v NullableListInstancesResponse) IsSet() bool + func (v NullableListInstancesResponse) MarshalJSON() ([]byte, error) + type NullableListScrapeConfigsResponse struct + func NewNullableListScrapeConfigsResponse(val *ListScrapeConfigsResponse) *NullableListScrapeConfigsResponse + func (v *NullableListScrapeConfigsResponse) Set(val *ListScrapeConfigsResponse) + func (v *NullableListScrapeConfigsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListScrapeConfigsResponse) Unset() + func (v NullableListScrapeConfigsResponse) Get() *ListScrapeConfigsResponse + func (v NullableListScrapeConfigsResponse) IsSet() bool + func (v NullableListScrapeConfigsResponse) MarshalJSON() ([]byte, error) + type NullableLogsConfig struct + func NewNullableLogsConfig(val *LogsConfig) *NullableLogsConfig + func (v *NullableLogsConfig) Set(val *LogsConfig) + func (v *NullableLogsConfig) UnmarshalJSON(src []byte) error + func (v *NullableLogsConfig) Unset() + func (v NullableLogsConfig) Get() *LogsConfig + func (v NullableLogsConfig) IsSet() bool + func (v NullableLogsConfig) MarshalJSON() ([]byte, error) + type NullableLogsConfigResponse struct + func NewNullableLogsConfigResponse(val *LogsConfigResponse) *NullableLogsConfigResponse + func (v *NullableLogsConfigResponse) Set(val *LogsConfigResponse) + func (v *NullableLogsConfigResponse) UnmarshalJSON(src []byte) error + func (v *NullableLogsConfigResponse) Unset() + func (v NullableLogsConfigResponse) Get() *LogsConfigResponse + func (v NullableLogsConfigResponse) IsSet() bool + func (v NullableLogsConfigResponse) MarshalJSON() ([]byte, error) + type NullableMessage struct + func NewNullableMessage(val *Message) *NullableMessage + func (v *NullableMessage) Set(val *Message) + func (v *NullableMessage) UnmarshalJSON(src []byte) error + func (v *NullableMessage) Unset() + func (v NullableMessage) Get() *Message + func (v NullableMessage) IsSet() bool + func (v NullableMessage) MarshalJSON() ([]byte, error) + type NullableMetricsRelabelConfig struct + func NewNullableMetricsRelabelConfig(val *MetricsRelabelConfig) *NullableMetricsRelabelConfig + func (v *NullableMetricsRelabelConfig) Set(val *MetricsRelabelConfig) + func (v *NullableMetricsRelabelConfig) UnmarshalJSON(src []byte) error + func (v *NullableMetricsRelabelConfig) Unset() + func (v NullableMetricsRelabelConfig) Get() *MetricsRelabelConfig + func (v NullableMetricsRelabelConfig) IsSet() bool + func (v NullableMetricsRelabelConfig) MarshalJSON() ([]byte, error) + type NullableMongodbCheckChildResponse struct + func NewNullableMongodbCheckChildResponse(val *MongodbCheckChildResponse) *NullableMongodbCheckChildResponse + func (v *NullableMongodbCheckChildResponse) Set(val *MongodbCheckChildResponse) + func (v *NullableMongodbCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableMongodbCheckChildResponse) Unset() + func (v NullableMongodbCheckChildResponse) Get() *MongodbCheckChildResponse + func (v NullableMongodbCheckChildResponse) IsSet() bool + func (v NullableMongodbCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableMongodbCheckResponse struct + func NewNullableMongodbCheckResponse(val *MongodbCheckResponse) *NullableMongodbCheckResponse + func (v *NullableMongodbCheckResponse) Set(val *MongodbCheckResponse) + func (v *NullableMongodbCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableMongodbCheckResponse) Unset() + func (v NullableMongodbCheckResponse) Get() *MongodbCheckResponse + func (v NullableMongodbCheckResponse) IsSet() bool + func (v NullableMongodbCheckResponse) MarshalJSON() ([]byte, error) + type NullableMysqlCheckChildResponse struct + func NewNullableMysqlCheckChildResponse(val *MysqlCheckChildResponse) *NullableMysqlCheckChildResponse + func (v *NullableMysqlCheckChildResponse) Set(val *MysqlCheckChildResponse) + func (v *NullableMysqlCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableMysqlCheckChildResponse) Unset() + func (v NullableMysqlCheckChildResponse) Get() *MysqlCheckChildResponse + func (v NullableMysqlCheckChildResponse) IsSet() bool + func (v NullableMysqlCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableMysqlCheckResponse struct + func NewNullableMysqlCheckResponse(val *MysqlCheckResponse) *NullableMysqlCheckResponse + func (v *NullableMysqlCheckResponse) Set(val *MysqlCheckResponse) + func (v *NullableMysqlCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableMysqlCheckResponse) Unset() + func (v NullableMysqlCheckResponse) Get() *MysqlCheckResponse + func (v NullableMysqlCheckResponse) IsSet() bool + func (v NullableMysqlCheckResponse) MarshalJSON() ([]byte, error) + type NullableNetworkCheckChildResponse struct + func NewNullableNetworkCheckChildResponse(val *NetworkCheckChildResponse) *NullableNetworkCheckChildResponse + func (v *NullableNetworkCheckChildResponse) Set(val *NetworkCheckChildResponse) + func (v *NullableNetworkCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableNetworkCheckChildResponse) Unset() + func (v NullableNetworkCheckChildResponse) Get() *NetworkCheckChildResponse + func (v NullableNetworkCheckChildResponse) IsSet() bool + func (v NullableNetworkCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableNetworkCheckResponse struct + func NewNullableNetworkCheckResponse(val *NetworkCheckResponse) *NullableNetworkCheckResponse + func (v *NullableNetworkCheckResponse) Set(val *NetworkCheckResponse) + func (v *NullableNetworkCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableNetworkCheckResponse) Unset() + func (v NullableNetworkCheckResponse) Get() *NetworkCheckResponse + func (v NullableNetworkCheckResponse) IsSet() bool + func (v NullableNetworkCheckResponse) MarshalJSON() ([]byte, error) + type NullableOAuth2 struct + func NewNullableOAuth2(val *OAuth2) *NullableOAuth2 + func (v *NullableOAuth2) Set(val *OAuth2) + func (v *NullableOAuth2) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2) Unset() + func (v NullableOAuth2) Get() *OAuth2 + func (v NullableOAuth2) IsSet() bool + func (v NullableOAuth2) MarshalJSON() ([]byte, error) + type NullableOfferings struct + func NewNullableOfferings(val *Offerings) *NullableOfferings + func (v *NullableOfferings) Set(val *Offerings) + func (v *NullableOfferings) UnmarshalJSON(src []byte) error + func (v *NullableOfferings) Unset() + func (v NullableOfferings) Get() *Offerings + func (v NullableOfferings) IsSet() bool + func (v NullableOfferings) MarshalJSON() ([]byte, error) + type NullableOpsgenieConfig struct + func NewNullableOpsgenieConfig(val *OpsgenieConfig) *NullableOpsgenieConfig + func (v *NullableOpsgenieConfig) Set(val *OpsgenieConfig) + func (v *NullableOpsgenieConfig) UnmarshalJSON(src []byte) error + func (v *NullableOpsgenieConfig) Unset() + func (v NullableOpsgenieConfig) Get() *OpsgenieConfig + func (v NullableOpsgenieConfig) IsSet() bool + func (v NullableOpsgenieConfig) MarshalJSON() ([]byte, error) + type NullablePartialUpdateAlertRecordsRequestInner struct + func NewNullablePartialUpdateAlertRecordsRequestInner(val *PartialUpdateAlertRecordsRequestInner) *NullablePartialUpdateAlertRecordsRequestInner + func (v *NullablePartialUpdateAlertRecordsRequestInner) Set(val *PartialUpdateAlertRecordsRequestInner) + func (v *NullablePartialUpdateAlertRecordsRequestInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateAlertRecordsRequestInner) Unset() + func (v NullablePartialUpdateAlertRecordsRequestInner) Get() *PartialUpdateAlertRecordsRequestInner + func (v NullablePartialUpdateAlertRecordsRequestInner) IsSet() bool + func (v NullablePartialUpdateAlertRecordsRequestInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateAlertgroupsRequestInner struct + func NewNullablePartialUpdateAlertgroupsRequestInner(val *PartialUpdateAlertgroupsRequestInner) *NullablePartialUpdateAlertgroupsRequestInner + func (v *NullablePartialUpdateAlertgroupsRequestInner) Set(val *PartialUpdateAlertgroupsRequestInner) + func (v *NullablePartialUpdateAlertgroupsRequestInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateAlertgroupsRequestInner) Unset() + func (v NullablePartialUpdateAlertgroupsRequestInner) Get() *PartialUpdateAlertgroupsRequestInner + func (v NullablePartialUpdateAlertgroupsRequestInner) IsSet() bool + func (v NullablePartialUpdateAlertgroupsRequestInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateAlertgroupsRequestInnerRulesInner struct + func NewNullablePartialUpdateAlertgroupsRequestInnerRulesInner(val *PartialUpdateAlertgroupsRequestInnerRulesInner) *NullablePartialUpdateAlertgroupsRequestInnerRulesInner + func (v *NullablePartialUpdateAlertgroupsRequestInnerRulesInner) Set(val *PartialUpdateAlertgroupsRequestInnerRulesInner) + func (v *NullablePartialUpdateAlertgroupsRequestInnerRulesInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateAlertgroupsRequestInnerRulesInner) Unset() + func (v NullablePartialUpdateAlertgroupsRequestInnerRulesInner) Get() *PartialUpdateAlertgroupsRequestInnerRulesInner + func (v NullablePartialUpdateAlertgroupsRequestInnerRulesInner) IsSet() bool + func (v NullablePartialUpdateAlertgroupsRequestInnerRulesInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateAlertrulesRequestInner struct + func NewNullablePartialUpdateAlertrulesRequestInner(val *PartialUpdateAlertrulesRequestInner) *NullablePartialUpdateAlertrulesRequestInner + func (v *NullablePartialUpdateAlertrulesRequestInner) Set(val *PartialUpdateAlertrulesRequestInner) + func (v *NullablePartialUpdateAlertrulesRequestInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateAlertrulesRequestInner) Unset() + func (v NullablePartialUpdateAlertrulesRequestInner) Get() *PartialUpdateAlertrulesRequestInner + func (v NullablePartialUpdateAlertrulesRequestInner) IsSet() bool + func (v NullablePartialUpdateAlertrulesRequestInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInner struct + func NewNullablePartialUpdateScrapeConfigsRequestInner(val *PartialUpdateScrapeConfigsRequestInner) *NullablePartialUpdateScrapeConfigsRequestInner + func (v *NullablePartialUpdateScrapeConfigsRequestInner) Set(val *PartialUpdateScrapeConfigsRequestInner) + func (v *NullablePartialUpdateScrapeConfigsRequestInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInner) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInner) Get() *PartialUpdateScrapeConfigsRequestInner + func (v NullablePartialUpdateScrapeConfigsRequestInner) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerBasicAuth(val *PartialUpdateScrapeConfigsRequestInnerBasicAuth) *NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth + func (v *NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) Set(val *PartialUpdateScrapeConfigsRequestInnerBasicAuth) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) Get() *PartialUpdateScrapeConfigsRequestInnerBasicAuth + func (v NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerBasicAuth) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) Set(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) Get() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) Set(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) Get() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) Set(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) Get() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) ... + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) Set(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) Get() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) Set(val *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) Get() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner(val *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) *NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + func (v *NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) Set(val *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) Get() *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + func (v NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerOauth2 struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerOauth2(val *PartialUpdateScrapeConfigsRequestInnerOauth2) *NullablePartialUpdateScrapeConfigsRequestInnerOauth2 + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2) Set(val *PartialUpdateScrapeConfigsRequestInnerOauth2) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2) Get() *PartialUpdateScrapeConfigsRequestInnerOauth2 + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig(val *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) *NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) Set(val *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) Get() *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner(val *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) *NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + func (v *NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) Set(val *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) Get() *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + func (v NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig struct + func NewNullablePartialUpdateScrapeConfigsRequestInnerTlsConfig(val *PartialUpdateScrapeConfigsRequestInnerTlsConfig) *NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig + func (v *NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) Set(val *PartialUpdateScrapeConfigsRequestInnerTlsConfig) + func (v *NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) Unset() + func (v NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) Get() *PartialUpdateScrapeConfigsRequestInnerTlsConfig + func (v NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) IsSet() bool + func (v NullablePartialUpdateScrapeConfigsRequestInnerTlsConfig) MarshalJSON() ([]byte, error) + type NullablePermissionDenied struct + func NewNullablePermissionDenied(val *PermissionDenied) *NullablePermissionDenied + func (v *NullablePermissionDenied) Set(val *PermissionDenied) + func (v *NullablePermissionDenied) UnmarshalJSON(src []byte) error + func (v *NullablePermissionDenied) Unset() + func (v NullablePermissionDenied) Get() *PermissionDenied + func (v NullablePermissionDenied) IsSet() bool + func (v NullablePermissionDenied) MarshalJSON() ([]byte, error) + type NullablePingCheckChildResponse struct + func NewNullablePingCheckChildResponse(val *PingCheckChildResponse) *NullablePingCheckChildResponse + func (v *NullablePingCheckChildResponse) Set(val *PingCheckChildResponse) + func (v *NullablePingCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullablePingCheckChildResponse) Unset() + func (v NullablePingCheckChildResponse) Get() *PingCheckChildResponse + func (v NullablePingCheckChildResponse) IsSet() bool + func (v NullablePingCheckChildResponse) MarshalJSON() ([]byte, error) + type NullablePingCheckResponse struct + func NewNullablePingCheckResponse(val *PingCheckResponse) *NullablePingCheckResponse + func (v *NullablePingCheckResponse) Set(val *PingCheckResponse) + func (v *NullablePingCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullablePingCheckResponse) Unset() + func (v NullablePingCheckResponse) Get() *PingCheckResponse + func (v NullablePingCheckResponse) IsSet() bool + func (v NullablePingCheckResponse) MarshalJSON() ([]byte, error) + type NullablePlan struct + func NewNullablePlan(val *Plan) *NullablePlan + func (v *NullablePlan) Set(val *Plan) + func (v *NullablePlan) UnmarshalJSON(src []byte) error + func (v *NullablePlan) Unset() + func (v NullablePlan) Get() *Plan + func (v NullablePlan) IsSet() bool + func (v NullablePlan) MarshalJSON() ([]byte, error) + type NullablePlanModel struct + func NewNullablePlanModel(val *PlanModel) *NullablePlanModel + func (v *NullablePlanModel) Set(val *PlanModel) + func (v *NullablePlanModel) UnmarshalJSON(src []byte) error + func (v *NullablePlanModel) Unset() + func (v NullablePlanModel) Get() *PlanModel + func (v NullablePlanModel) IsSet() bool + func (v NullablePlanModel) MarshalJSON() ([]byte, error) + type NullablePlansResponse struct + func NewNullablePlansResponse(val *PlansResponse) *NullablePlansResponse + func (v *NullablePlansResponse) Set(val *PlansResponse) + func (v *NullablePlansResponse) UnmarshalJSON(src []byte) error + func (v *NullablePlansResponse) Unset() + func (v NullablePlansResponse) Get() *PlansResponse + func (v NullablePlansResponse) IsSet() bool + func (v NullablePlansResponse) MarshalJSON() ([]byte, error) + type NullablePostgresqlCheckChildResponse struct + func NewNullablePostgresqlCheckChildResponse(val *PostgresqlCheckChildResponse) *NullablePostgresqlCheckChildResponse + func (v *NullablePostgresqlCheckChildResponse) Set(val *PostgresqlCheckChildResponse) + func (v *NullablePostgresqlCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullablePostgresqlCheckChildResponse) Unset() + func (v NullablePostgresqlCheckChildResponse) Get() *PostgresqlCheckChildResponse + func (v NullablePostgresqlCheckChildResponse) IsSet() bool + func (v NullablePostgresqlCheckChildResponse) MarshalJSON() ([]byte, error) + type NullablePostgresqlCheckResponse struct + func NewNullablePostgresqlCheckResponse(val *PostgresqlCheckResponse) *NullablePostgresqlCheckResponse + func (v *NullablePostgresqlCheckResponse) Set(val *PostgresqlCheckResponse) + func (v *NullablePostgresqlCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullablePostgresqlCheckResponse) Unset() + func (v NullablePostgresqlCheckResponse) Get() *PostgresqlCheckResponse + func (v NullablePostgresqlCheckResponse) IsSet() bool + func (v NullablePostgresqlCheckResponse) MarshalJSON() ([]byte, error) + type NullableProjectInstanceFull struct + func NewNullableProjectInstanceFull(val *ProjectInstanceFull) *NullableProjectInstanceFull + func (v *NullableProjectInstanceFull) Set(val *ProjectInstanceFull) + func (v *NullableProjectInstanceFull) UnmarshalJSON(src []byte) error + func (v *NullableProjectInstanceFull) Unset() + func (v NullableProjectInstanceFull) Get() *ProjectInstanceFull + func (v NullableProjectInstanceFull) IsSet() bool + func (v NullableProjectInstanceFull) MarshalJSON() ([]byte, error) + type NullableRabbitMQCheckChildResponse struct + func NewNullableRabbitMQCheckChildResponse(val *RabbitMQCheckChildResponse) *NullableRabbitMQCheckChildResponse + func (v *NullableRabbitMQCheckChildResponse) Set(val *RabbitMQCheckChildResponse) + func (v *NullableRabbitMQCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableRabbitMQCheckChildResponse) Unset() + func (v NullableRabbitMQCheckChildResponse) Get() *RabbitMQCheckChildResponse + func (v NullableRabbitMQCheckChildResponse) IsSet() bool + func (v NullableRabbitMQCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableRabbitmqCheckResponse struct + func NewNullableRabbitmqCheckResponse(val *RabbitmqCheckResponse) *NullableRabbitmqCheckResponse + func (v *NullableRabbitmqCheckResponse) Set(val *RabbitmqCheckResponse) + func (v *NullableRabbitmqCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableRabbitmqCheckResponse) Unset() + func (v NullableRabbitmqCheckResponse) Get() *RabbitmqCheckResponse + func (v NullableRabbitmqCheckResponse) IsSet() bool + func (v NullableRabbitmqCheckResponse) MarshalJSON() ([]byte, error) + type NullableReceiver struct + func NewNullableReceiver(val *Receiver) *NullableReceiver + func (v *NullableReceiver) Set(val *Receiver) + func (v *NullableReceiver) UnmarshalJSON(src []byte) error + func (v *NullableReceiver) Unset() + func (v NullableReceiver) Get() *Receiver + func (v NullableReceiver) IsSet() bool + func (v NullableReceiver) MarshalJSON() ([]byte, error) + type NullableReceivers struct + func NewNullableReceivers(val *Receivers) *NullableReceivers + func (v *NullableReceivers) Set(val *Receivers) + func (v *NullableReceivers) UnmarshalJSON(src []byte) error + func (v *NullableReceivers) Unset() + func (v NullableReceivers) Get() *Receivers + func (v NullableReceivers) IsSet() bool + func (v NullableReceivers) MarshalJSON() ([]byte, error) + type NullableRedisCheckChildResponse struct + func NewNullableRedisCheckChildResponse(val *RedisCheckChildResponse) *NullableRedisCheckChildResponse + func (v *NullableRedisCheckChildResponse) Set(val *RedisCheckChildResponse) + func (v *NullableRedisCheckChildResponse) UnmarshalJSON(src []byte) error + func (v *NullableRedisCheckChildResponse) Unset() + func (v NullableRedisCheckChildResponse) Get() *RedisCheckChildResponse + func (v NullableRedisCheckChildResponse) IsSet() bool + func (v NullableRedisCheckChildResponse) MarshalJSON() ([]byte, error) + type NullableRedisCheckResponse struct + func NewNullableRedisCheckResponse(val *RedisCheckResponse) *NullableRedisCheckResponse + func (v *NullableRedisCheckResponse) Set(val *RedisCheckResponse) + func (v *NullableRedisCheckResponse) UnmarshalJSON(src []byte) error + func (v *NullableRedisCheckResponse) Unset() + func (v NullableRedisCheckResponse) Get() *RedisCheckResponse + func (v NullableRedisCheckResponse) IsSet() bool + func (v NullableRedisCheckResponse) MarshalJSON() ([]byte, error) + type NullableRoute struct + func NewNullableRoute(val *Route) *NullableRoute + func (v *NullableRoute) Set(val *Route) + func (v *NullableRoute) UnmarshalJSON(src []byte) error + func (v *NullableRoute) Unset() + func (v NullableRoute) Get() *Route + func (v NullableRoute) IsSet() bool + func (v NullableRoute) MarshalJSON() ([]byte, error) + type NullableRouteSerializer struct + func NewNullableRouteSerializer(val *RouteSerializer) *NullableRouteSerializer + func (v *NullableRouteSerializer) Set(val *RouteSerializer) + func (v *NullableRouteSerializer) UnmarshalJSON(src []byte) error + func (v *NullableRouteSerializer) Unset() + func (v NullableRouteSerializer) Get() *RouteSerializer + func (v NullableRouteSerializer) IsSet() bool + func (v NullableRouteSerializer) MarshalJSON() ([]byte, error) + type NullableScrapeConfigsResponse struct + func NewNullableScrapeConfigsResponse(val *ScrapeConfigsResponse) *NullableScrapeConfigsResponse + func (v *NullableScrapeConfigsResponse) Set(val *ScrapeConfigsResponse) + func (v *NullableScrapeConfigsResponse) UnmarshalJSON(src []byte) error + func (v *NullableScrapeConfigsResponse) Unset() + func (v NullableScrapeConfigsResponse) Get() *ScrapeConfigsResponse + func (v NullableScrapeConfigsResponse) IsSet() bool + func (v NullableScrapeConfigsResponse) MarshalJSON() ([]byte, error) + type NullableServiceKeysList struct + func NewNullableServiceKeysList(val *ServiceKeysList) *NullableServiceKeysList + func (v *NullableServiceKeysList) Set(val *ServiceKeysList) + func (v *NullableServiceKeysList) UnmarshalJSON(src []byte) error + func (v *NullableServiceKeysList) Unset() + func (v NullableServiceKeysList) Get() *ServiceKeysList + func (v NullableServiceKeysList) IsSet() bool + func (v NullableServiceKeysList) MarshalJSON() ([]byte, error) + type NullableStaticConfigs struct + func NewNullableStaticConfigs(val *StaticConfigs) *NullableStaticConfigs + func (v *NullableStaticConfigs) Set(val *StaticConfigs) + func (v *NullableStaticConfigs) UnmarshalJSON(src []byte) error + func (v *NullableStaticConfigs) Unset() + func (v NullableStaticConfigs) Get() *StaticConfigs + func (v NullableStaticConfigs) IsSet() bool + func (v NullableStaticConfigs) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTLSConfig struct + func NewNullableTLSConfig(val *TLSConfig) *NullableTLSConfig + func (v *NullableTLSConfig) Set(val *TLSConfig) + func (v *NullableTLSConfig) UnmarshalJSON(src []byte) error + func (v *NullableTLSConfig) Unset() + func (v NullableTLSConfig) Get() *TLSConfig + func (v NullableTLSConfig) IsSet() bool + func (v NullableTLSConfig) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableTraceConfig struct + func NewNullableTraceConfig(val *TraceConfig) *NullableTraceConfig + func (v *NullableTraceConfig) Set(val *TraceConfig) + func (v *NullableTraceConfig) UnmarshalJSON(src []byte) error + func (v *NullableTraceConfig) Unset() + func (v NullableTraceConfig) Get() *TraceConfig + func (v NullableTraceConfig) IsSet() bool + func (v NullableTraceConfig) MarshalJSON() ([]byte, error) + type NullableTracesConfigResponse struct + func NewNullableTracesConfigResponse(val *TracesConfigResponse) *NullableTracesConfigResponse + func (v *NullableTracesConfigResponse) Set(val *TracesConfigResponse) + func (v *NullableTracesConfigResponse) UnmarshalJSON(src []byte) error + func (v *NullableTracesConfigResponse) Unset() + func (v NullableTracesConfigResponse) Get() *TracesConfigResponse + func (v NullableTracesConfigResponse) IsSet() bool + func (v NullableTracesConfigResponse) MarshalJSON() ([]byte, error) + type NullableUpdateACLPayload struct + func NewNullableUpdateACLPayload(val *UpdateACLPayload) *NullableUpdateACLPayload + func (v *NullableUpdateACLPayload) Set(val *UpdateACLPayload) + func (v *NullableUpdateACLPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateACLPayload) Unset() + func (v NullableUpdateACLPayload) Get() *UpdateACLPayload + func (v NullableUpdateACLPayload) IsSet() bool + func (v NullableUpdateACLPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigReceiverPayload struct + func NewNullableUpdateAlertConfigReceiverPayload(val *UpdateAlertConfigReceiverPayload) *NullableUpdateAlertConfigReceiverPayload + func (v *NullableUpdateAlertConfigReceiverPayload) Set(val *UpdateAlertConfigReceiverPayload) + func (v *NullableUpdateAlertConfigReceiverPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigReceiverPayload) Unset() + func (v NullableUpdateAlertConfigReceiverPayload) Get() *UpdateAlertConfigReceiverPayload + func (v NullableUpdateAlertConfigReceiverPayload) IsSet() bool + func (v NullableUpdateAlertConfigReceiverPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner struct + func NewNullableUpdateAlertConfigReceiverPayloadEmailConfigsInner(val *UpdateAlertConfigReceiverPayloadEmailConfigsInner) *NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner + func (v *NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) Set(val *UpdateAlertConfigReceiverPayloadEmailConfigsInner) + func (v *NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) Unset() + func (v NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) Get() *UpdateAlertConfigReceiverPayloadEmailConfigsInner + func (v NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigReceiverPayloadEmailConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner struct + func NewNullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner(val *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) *NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (v *NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) Set(val *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) + func (v *NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) Unset() + func (v NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) Get() *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (v NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner struct + func NewNullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner(val *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) *NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner + func (v *NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) Set(val *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) + func (v *NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) Unset() + func (v NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) Get() *UpdateAlertConfigReceiverPayloadWebHookConfigsInner + func (v NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigReceiverPayloadWebHookConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigRoutePayload struct + func NewNullableUpdateAlertConfigRoutePayload(val *UpdateAlertConfigRoutePayload) *NullableUpdateAlertConfigRoutePayload + func (v *NullableUpdateAlertConfigRoutePayload) Set(val *UpdateAlertConfigRoutePayload) + func (v *NullableUpdateAlertConfigRoutePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigRoutePayload) Unset() + func (v NullableUpdateAlertConfigRoutePayload) Get() *UpdateAlertConfigRoutePayload + func (v NullableUpdateAlertConfigRoutePayload) IsSet() bool + func (v NullableUpdateAlertConfigRoutePayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigRoutePayloadRoutesInner struct + func NewNullableUpdateAlertConfigRoutePayloadRoutesInner(val *UpdateAlertConfigRoutePayloadRoutesInner) *NullableUpdateAlertConfigRoutePayloadRoutesInner + func (v *NullableUpdateAlertConfigRoutePayloadRoutesInner) Set(val *UpdateAlertConfigRoutePayloadRoutesInner) + func (v *NullableUpdateAlertConfigRoutePayloadRoutesInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigRoutePayloadRoutesInner) Unset() + func (v NullableUpdateAlertConfigRoutePayloadRoutesInner) Get() *UpdateAlertConfigRoutePayloadRoutesInner + func (v NullableUpdateAlertConfigRoutePayloadRoutesInner) IsSet() bool + func (v NullableUpdateAlertConfigRoutePayloadRoutesInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayload struct + func NewNullableUpdateAlertConfigsPayload(val *UpdateAlertConfigsPayload) *NullableUpdateAlertConfigsPayload + func (v *NullableUpdateAlertConfigsPayload) Set(val *UpdateAlertConfigsPayload) + func (v *NullableUpdateAlertConfigsPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayload) Unset() + func (v NullableUpdateAlertConfigsPayload) Get() *UpdateAlertConfigsPayload + func (v NullableUpdateAlertConfigsPayload) IsSet() bool + func (v NullableUpdateAlertConfigsPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadGlobal struct + func NewNullableUpdateAlertConfigsPayloadGlobal(val *UpdateAlertConfigsPayloadGlobal) *NullableUpdateAlertConfigsPayloadGlobal + func (v *NullableUpdateAlertConfigsPayloadGlobal) Set(val *UpdateAlertConfigsPayloadGlobal) + func (v *NullableUpdateAlertConfigsPayloadGlobal) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadGlobal) Unset() + func (v NullableUpdateAlertConfigsPayloadGlobal) Get() *UpdateAlertConfigsPayloadGlobal + func (v NullableUpdateAlertConfigsPayloadGlobal) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadGlobal) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadInhibitRules struct + func NewNullableUpdateAlertConfigsPayloadInhibitRules(val *UpdateAlertConfigsPayloadInhibitRules) *NullableUpdateAlertConfigsPayloadInhibitRules + func (v *NullableUpdateAlertConfigsPayloadInhibitRules) Set(val *UpdateAlertConfigsPayloadInhibitRules) + func (v *NullableUpdateAlertConfigsPayloadInhibitRules) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadInhibitRules) Unset() + func (v NullableUpdateAlertConfigsPayloadInhibitRules) Get() *UpdateAlertConfigsPayloadInhibitRules + func (v NullableUpdateAlertConfigsPayloadInhibitRules) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadInhibitRules) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadReceiversInner struct + func NewNullableUpdateAlertConfigsPayloadReceiversInner(val *UpdateAlertConfigsPayloadReceiversInner) *NullableUpdateAlertConfigsPayloadReceiversInner + func (v *NullableUpdateAlertConfigsPayloadReceiversInner) Set(val *UpdateAlertConfigsPayloadReceiversInner) + func (v *NullableUpdateAlertConfigsPayloadReceiversInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadReceiversInner) Unset() + func (v NullableUpdateAlertConfigsPayloadReceiversInner) Get() *UpdateAlertConfigsPayloadReceiversInner + func (v NullableUpdateAlertConfigsPayloadReceiversInner) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadReceiversInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner struct + func NewNullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner(val *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) *NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) Set(val *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) Unset() + func (v NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) Get() *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + func (v NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner struct + func NewNullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner(val *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) *NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) Set(val *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) Unset() + func (v NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) Get() *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + func (v NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner struct + func NewNullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner(val *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) *NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) Set(val *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) Unset() + func (v NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) Get() *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func (v NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadRoute struct + func NewNullableUpdateAlertConfigsPayloadRoute(val *UpdateAlertConfigsPayloadRoute) *NullableUpdateAlertConfigsPayloadRoute + func (v *NullableUpdateAlertConfigsPayloadRoute) Set(val *UpdateAlertConfigsPayloadRoute) + func (v *NullableUpdateAlertConfigsPayloadRoute) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadRoute) Unset() + func (v NullableUpdateAlertConfigsPayloadRoute) Get() *UpdateAlertConfigsPayloadRoute + func (v NullableUpdateAlertConfigsPayloadRoute) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadRoute) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsPayloadRouteRoutesInner struct + func NewNullableUpdateAlertConfigsPayloadRouteRoutesInner(val *UpdateAlertConfigsPayloadRouteRoutesInner) *NullableUpdateAlertConfigsPayloadRouteRoutesInner + func (v *NullableUpdateAlertConfigsPayloadRouteRoutesInner) Set(val *UpdateAlertConfigsPayloadRouteRoutesInner) + func (v *NullableUpdateAlertConfigsPayloadRouteRoutesInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsPayloadRouteRoutesInner) Unset() + func (v NullableUpdateAlertConfigsPayloadRouteRoutesInner) Get() *UpdateAlertConfigsPayloadRouteRoutesInner + func (v NullableUpdateAlertConfigsPayloadRouteRoutesInner) IsSet() bool + func (v NullableUpdateAlertConfigsPayloadRouteRoutesInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertConfigsResponse struct + func NewNullableUpdateAlertConfigsResponse(val *UpdateAlertConfigsResponse) *NullableUpdateAlertConfigsResponse + func (v *NullableUpdateAlertConfigsResponse) Set(val *UpdateAlertConfigsResponse) + func (v *NullableUpdateAlertConfigsResponse) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertConfigsResponse) Unset() + func (v NullableUpdateAlertConfigsResponse) Get() *UpdateAlertConfigsResponse + func (v NullableUpdateAlertConfigsResponse) IsSet() bool + func (v NullableUpdateAlertConfigsResponse) MarshalJSON() ([]byte, error) + type NullableUpdateAlertRecordPayload struct + func NewNullableUpdateAlertRecordPayload(val *UpdateAlertRecordPayload) *NullableUpdateAlertRecordPayload + func (v *NullableUpdateAlertRecordPayload) Set(val *UpdateAlertRecordPayload) + func (v *NullableUpdateAlertRecordPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertRecordPayload) Unset() + func (v NullableUpdateAlertRecordPayload) Get() *UpdateAlertRecordPayload + func (v NullableUpdateAlertRecordPayload) IsSet() bool + func (v NullableUpdateAlertRecordPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertgroupPayload struct + func NewNullableUpdateAlertgroupPayload(val *UpdateAlertgroupPayload) *NullableUpdateAlertgroupPayload + func (v *NullableUpdateAlertgroupPayload) Set(val *UpdateAlertgroupPayload) + func (v *NullableUpdateAlertgroupPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertgroupPayload) Unset() + func (v NullableUpdateAlertgroupPayload) Get() *UpdateAlertgroupPayload + func (v NullableUpdateAlertgroupPayload) IsSet() bool + func (v NullableUpdateAlertgroupPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAlertgroupPayloadRulesInner struct + func NewNullableUpdateAlertgroupPayloadRulesInner(val *UpdateAlertgroupPayloadRulesInner) *NullableUpdateAlertgroupPayloadRulesInner + func (v *NullableUpdateAlertgroupPayloadRulesInner) Set(val *UpdateAlertgroupPayloadRulesInner) + func (v *NullableUpdateAlertgroupPayloadRulesInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertgroupPayloadRulesInner) Unset() + func (v NullableUpdateAlertgroupPayloadRulesInner) Get() *UpdateAlertgroupPayloadRulesInner + func (v NullableUpdateAlertgroupPayloadRulesInner) IsSet() bool + func (v NullableUpdateAlertgroupPayloadRulesInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertgroupsRequestInner struct + func NewNullableUpdateAlertgroupsRequestInner(val *UpdateAlertgroupsRequestInner) *NullableUpdateAlertgroupsRequestInner + func (v *NullableUpdateAlertgroupsRequestInner) Set(val *UpdateAlertgroupsRequestInner) + func (v *NullableUpdateAlertgroupsRequestInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertgroupsRequestInner) Unset() + func (v NullableUpdateAlertgroupsRequestInner) Get() *UpdateAlertgroupsRequestInner + func (v NullableUpdateAlertgroupsRequestInner) IsSet() bool + func (v NullableUpdateAlertgroupsRequestInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertgroupsRequestInnerRulesInner struct + func NewNullableUpdateAlertgroupsRequestInnerRulesInner(val *UpdateAlertgroupsRequestInnerRulesInner) *NullableUpdateAlertgroupsRequestInnerRulesInner + func (v *NullableUpdateAlertgroupsRequestInnerRulesInner) Set(val *UpdateAlertgroupsRequestInnerRulesInner) + func (v *NullableUpdateAlertgroupsRequestInnerRulesInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertgroupsRequestInnerRulesInner) Unset() + func (v NullableUpdateAlertgroupsRequestInnerRulesInner) Get() *UpdateAlertgroupsRequestInnerRulesInner + func (v NullableUpdateAlertgroupsRequestInnerRulesInner) IsSet() bool + func (v NullableUpdateAlertgroupsRequestInnerRulesInner) MarshalJSON() ([]byte, error) + type NullableUpdateAlertrulePayload struct + func NewNullableUpdateAlertrulePayload(val *UpdateAlertrulePayload) *NullableUpdateAlertrulePayload + func (v *NullableUpdateAlertrulePayload) Set(val *UpdateAlertrulePayload) + func (v *NullableUpdateAlertrulePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAlertrulePayload) Unset() + func (v NullableUpdateAlertrulePayload) Get() *UpdateAlertrulePayload + func (v NullableUpdateAlertrulePayload) IsSet() bool + func (v NullableUpdateAlertrulePayload) MarshalJSON() ([]byte, error) + type NullableUpdateCredentialsRemoteWriteConfigPayload struct + func NewNullableUpdateCredentialsRemoteWriteConfigPayload(val *UpdateCredentialsRemoteWriteConfigPayload) *NullableUpdateCredentialsRemoteWriteConfigPayload + func (v *NullableUpdateCredentialsRemoteWriteConfigPayload) Set(val *UpdateCredentialsRemoteWriteConfigPayload) + func (v *NullableUpdateCredentialsRemoteWriteConfigPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateCredentialsRemoteWriteConfigPayload) Unset() + func (v NullableUpdateCredentialsRemoteWriteConfigPayload) Get() *UpdateCredentialsRemoteWriteConfigPayload + func (v NullableUpdateCredentialsRemoteWriteConfigPayload) IsSet() bool + func (v NullableUpdateCredentialsRemoteWriteConfigPayload) MarshalJSON() ([]byte, error) + type NullableUpdateGrafanaConfigsPayload struct + func NewNullableUpdateGrafanaConfigsPayload(val *UpdateGrafanaConfigsPayload) *NullableUpdateGrafanaConfigsPayload + func (v *NullableUpdateGrafanaConfigsPayload) Set(val *UpdateGrafanaConfigsPayload) + func (v *NullableUpdateGrafanaConfigsPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateGrafanaConfigsPayload) Unset() + func (v NullableUpdateGrafanaConfigsPayload) Get() *UpdateGrafanaConfigsPayload + func (v NullableUpdateGrafanaConfigsPayload) IsSet() bool + func (v NullableUpdateGrafanaConfigsPayload) MarshalJSON() ([]byte, error) + type NullableUpdateGrafanaConfigsPayloadGenericOauth struct + func NewNullableUpdateGrafanaConfigsPayloadGenericOauth(val *UpdateGrafanaConfigsPayloadGenericOauth) *NullableUpdateGrafanaConfigsPayloadGenericOauth + func (v *NullableUpdateGrafanaConfigsPayloadGenericOauth) Set(val *UpdateGrafanaConfigsPayloadGenericOauth) + func (v *NullableUpdateGrafanaConfigsPayloadGenericOauth) UnmarshalJSON(src []byte) error + func (v *NullableUpdateGrafanaConfigsPayloadGenericOauth) Unset() + func (v NullableUpdateGrafanaConfigsPayloadGenericOauth) Get() *UpdateGrafanaConfigsPayloadGenericOauth + func (v NullableUpdateGrafanaConfigsPayloadGenericOauth) IsSet() bool + func (v NullableUpdateGrafanaConfigsPayloadGenericOauth) MarshalJSON() ([]byte, error) + type NullableUpdateInstancePayload struct + func NewNullableUpdateInstancePayload(val *UpdateInstancePayload) *NullableUpdateInstancePayload + func (v *NullableUpdateInstancePayload) Set(val *UpdateInstancePayload) + func (v *NullableUpdateInstancePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateInstancePayload) Unset() + func (v NullableUpdateInstancePayload) Get() *UpdateInstancePayload + func (v NullableUpdateInstancePayload) IsSet() bool + func (v NullableUpdateInstancePayload) MarshalJSON() ([]byte, error) + type NullableUpdateLogsAlertgroupPayload struct + func NewNullableUpdateLogsAlertgroupPayload(val *UpdateLogsAlertgroupPayload) *NullableUpdateLogsAlertgroupPayload + func (v *NullableUpdateLogsAlertgroupPayload) Set(val *UpdateLogsAlertgroupPayload) + func (v *NullableUpdateLogsAlertgroupPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateLogsAlertgroupPayload) Unset() + func (v NullableUpdateLogsAlertgroupPayload) Get() *UpdateLogsAlertgroupPayload + func (v NullableUpdateLogsAlertgroupPayload) IsSet() bool + func (v NullableUpdateLogsAlertgroupPayload) MarshalJSON() ([]byte, error) + type NullableUpdateLogsAlertgroupPayloadRulesInner struct + func NewNullableUpdateLogsAlertgroupPayloadRulesInner(val *UpdateLogsAlertgroupPayloadRulesInner) *NullableUpdateLogsAlertgroupPayloadRulesInner + func (v *NullableUpdateLogsAlertgroupPayloadRulesInner) Set(val *UpdateLogsAlertgroupPayloadRulesInner) + func (v *NullableUpdateLogsAlertgroupPayloadRulesInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateLogsAlertgroupPayloadRulesInner) Unset() + func (v NullableUpdateLogsAlertgroupPayloadRulesInner) Get() *UpdateLogsAlertgroupPayloadRulesInner + func (v NullableUpdateLogsAlertgroupPayloadRulesInner) IsSet() bool + func (v NullableUpdateLogsAlertgroupPayloadRulesInner) MarshalJSON() ([]byte, error) + type NullableUpdateLogsConfigsPayload struct + func NewNullableUpdateLogsConfigsPayload(val *UpdateLogsConfigsPayload) *NullableUpdateLogsConfigsPayload + func (v *NullableUpdateLogsConfigsPayload) Set(val *UpdateLogsConfigsPayload) + func (v *NullableUpdateLogsConfigsPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateLogsConfigsPayload) Unset() + func (v NullableUpdateLogsConfigsPayload) Get() *UpdateLogsConfigsPayload + func (v NullableUpdateLogsConfigsPayload) IsSet() bool + func (v NullableUpdateLogsConfigsPayload) MarshalJSON() ([]byte, error) + type NullableUpdateMetricsStorageRetentionPayload struct + func NewNullableUpdateMetricsStorageRetentionPayload(val *UpdateMetricsStorageRetentionPayload) *NullableUpdateMetricsStorageRetentionPayload + func (v *NullableUpdateMetricsStorageRetentionPayload) Set(val *UpdateMetricsStorageRetentionPayload) + func (v *NullableUpdateMetricsStorageRetentionPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateMetricsStorageRetentionPayload) Unset() + func (v NullableUpdateMetricsStorageRetentionPayload) Get() *UpdateMetricsStorageRetentionPayload + func (v NullableUpdateMetricsStorageRetentionPayload) IsSet() bool + func (v NullableUpdateMetricsStorageRetentionPayload) MarshalJSON() ([]byte, error) + type NullableUpdateScrapeConfigPayload struct + func NewNullableUpdateScrapeConfigPayload(val *UpdateScrapeConfigPayload) *NullableUpdateScrapeConfigPayload + func (v *NullableUpdateScrapeConfigPayload) Set(val *UpdateScrapeConfigPayload) + func (v *NullableUpdateScrapeConfigPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScrapeConfigPayload) Unset() + func (v NullableUpdateScrapeConfigPayload) Get() *UpdateScrapeConfigPayload + func (v NullableUpdateScrapeConfigPayload) IsSet() bool + func (v NullableUpdateScrapeConfigPayload) MarshalJSON() ([]byte, error) + type NullableUpdateScrapeConfigPayloadBasicAuth struct + func NewNullableUpdateScrapeConfigPayloadBasicAuth(val *UpdateScrapeConfigPayloadBasicAuth) *NullableUpdateScrapeConfigPayloadBasicAuth + func (v *NullableUpdateScrapeConfigPayloadBasicAuth) Set(val *UpdateScrapeConfigPayloadBasicAuth) + func (v *NullableUpdateScrapeConfigPayloadBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScrapeConfigPayloadBasicAuth) Unset() + func (v NullableUpdateScrapeConfigPayloadBasicAuth) Get() *UpdateScrapeConfigPayloadBasicAuth + func (v NullableUpdateScrapeConfigPayloadBasicAuth) IsSet() bool + func (v NullableUpdateScrapeConfigPayloadBasicAuth) MarshalJSON() ([]byte, error) + type NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner struct + func NewNullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner(val *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) *NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner + func (v *NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) Set(val *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) + func (v *NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) Unset() + func (v NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) Get() *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner + func (v NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) IsSet() bool + func (v NullableUpdateScrapeConfigPayloadMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateScrapeConfigPayloadStaticConfigsInner struct + func NewNullableUpdateScrapeConfigPayloadStaticConfigsInner(val *UpdateScrapeConfigPayloadStaticConfigsInner) *NullableUpdateScrapeConfigPayloadStaticConfigsInner + func (v *NullableUpdateScrapeConfigPayloadStaticConfigsInner) Set(val *UpdateScrapeConfigPayloadStaticConfigsInner) + func (v *NullableUpdateScrapeConfigPayloadStaticConfigsInner) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScrapeConfigPayloadStaticConfigsInner) Unset() + func (v NullableUpdateScrapeConfigPayloadStaticConfigsInner) Get() *UpdateScrapeConfigPayloadStaticConfigsInner + func (v NullableUpdateScrapeConfigPayloadStaticConfigsInner) IsSet() bool + func (v NullableUpdateScrapeConfigPayloadStaticConfigsInner) MarshalJSON() ([]byte, error) + type NullableUpdateScrapeConfigPayloadTlsConfig struct + func NewNullableUpdateScrapeConfigPayloadTlsConfig(val *UpdateScrapeConfigPayloadTlsConfig) *NullableUpdateScrapeConfigPayloadTlsConfig + func (v *NullableUpdateScrapeConfigPayloadTlsConfig) Set(val *UpdateScrapeConfigPayloadTlsConfig) + func (v *NullableUpdateScrapeConfigPayloadTlsConfig) UnmarshalJSON(src []byte) error + func (v *NullableUpdateScrapeConfigPayloadTlsConfig) Unset() + func (v NullableUpdateScrapeConfigPayloadTlsConfig) Get() *UpdateScrapeConfigPayloadTlsConfig + func (v NullableUpdateScrapeConfigPayloadTlsConfig) IsSet() bool + func (v NullableUpdateScrapeConfigPayloadTlsConfig) MarshalJSON() ([]byte, error) + type NullableUpdateTracesConfigsPayload struct + func NewNullableUpdateTracesConfigsPayload(val *UpdateTracesConfigsPayload) *NullableUpdateTracesConfigsPayload + func (v *NullableUpdateTracesConfigsPayload) Set(val *UpdateTracesConfigsPayload) + func (v *NullableUpdateTracesConfigsPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateTracesConfigsPayload) Unset() + func (v NullableUpdateTracesConfigsPayload) Get() *UpdateTracesConfigsPayload + func (v NullableUpdateTracesConfigsPayload) IsSet() bool + func (v NullableUpdateTracesConfigsPayload) MarshalJSON() ([]byte, error) + type NullableWebHook struct + func NewNullableWebHook(val *WebHook) *NullableWebHook + func (v *NullableWebHook) Set(val *WebHook) + func (v *NullableWebHook) UnmarshalJSON(src []byte) error + func (v *NullableWebHook) Unset() + func (v NullableWebHook) Get() *WebHook + func (v NullableWebHook) IsSet() bool + func (v NullableWebHook) MarshalJSON() ([]byte, error) + type OAuth2 struct + ClientId string + ClientSecret string + Scopes []string + TlsConfig *TLSConfig + TokenUrl string + func NewOAuth2(clientId string, clientSecret string, tokenUrl string) *OAuth2 + func NewOAuth2WithDefaults() *OAuth2 + func (o *OAuth2) GetClientId() string + func (o *OAuth2) GetClientIdOk() (*string, bool) + func (o *OAuth2) GetClientSecret() string + func (o *OAuth2) GetClientSecretOk() (*string, bool) + func (o *OAuth2) GetScopes() []string + func (o *OAuth2) GetScopesOk() ([]string, bool) + func (o *OAuth2) GetTlsConfig() TLSConfig + func (o *OAuth2) GetTlsConfigOk() (*TLSConfig, bool) + func (o *OAuth2) GetTokenUrl() string + func (o *OAuth2) GetTokenUrlOk() (*string, bool) + func (o *OAuth2) HasScopes() bool + func (o *OAuth2) HasTlsConfig() bool + func (o *OAuth2) SetClientId(v string) + func (o *OAuth2) SetClientSecret(v string) + func (o *OAuth2) SetScopes(v []string) + func (o *OAuth2) SetTlsConfig(v TLSConfig) + func (o *OAuth2) SetTokenUrl(v string) + func (o *OAuth2) UnmarshalJSON(data []byte) (err error) + func (o OAuth2) MarshalJSON() ([]byte, error) + func (o OAuth2) ToMap() (map[string]interface{}, error) + type Offerings struct + Description string + DocumentationUrl string + ImageUrl string + Name string + Plans []Plan + Tags []string + func NewOfferings(description string, documentationUrl string, imageUrl string, name string, ...) *Offerings + func NewOfferingsWithDefaults() *Offerings + func (o *Offerings) GetDescription() string + func (o *Offerings) GetDescriptionOk() (*string, bool) + func (o *Offerings) GetDocumentationUrl() string + func (o *Offerings) GetDocumentationUrlOk() (*string, bool) + func (o *Offerings) GetImageUrl() string + func (o *Offerings) GetImageUrlOk() (*string, bool) + func (o *Offerings) GetName() string + func (o *Offerings) GetNameOk() (*string, bool) + func (o *Offerings) GetPlans() []Plan + func (o *Offerings) GetPlansOk() ([]Plan, bool) + func (o *Offerings) GetTags() []string + func (o *Offerings) GetTagsOk() ([]string, bool) + func (o *Offerings) SetDescription(v string) + func (o *Offerings) SetDocumentationUrl(v string) + func (o *Offerings) SetImageUrl(v string) + func (o *Offerings) SetName(v string) + func (o *Offerings) SetPlans(v []Plan) + func (o *Offerings) SetTags(v []string) + func (o *Offerings) UnmarshalJSON(data []byte) (err error) + func (o Offerings) MarshalJSON() ([]byte, error) + func (o Offerings) ToMap() (map[string]interface{}, error) + type OpsgenieConfig struct + ApiKey *string + ApiUrl *string + Priority *string + SendResolved *bool + Tags *string + func NewOpsgenieConfig() *OpsgenieConfig + func NewOpsgenieConfigWithDefaults() *OpsgenieConfig + func (o *OpsgenieConfig) GetApiKey() string + func (o *OpsgenieConfig) GetApiKeyOk() (*string, bool) + func (o *OpsgenieConfig) GetApiUrl() string + func (o *OpsgenieConfig) GetApiUrlOk() (*string, bool) + func (o *OpsgenieConfig) GetPriority() string + func (o *OpsgenieConfig) GetPriorityOk() (*string, bool) + func (o *OpsgenieConfig) GetSendResolved() bool + func (o *OpsgenieConfig) GetSendResolvedOk() (*bool, bool) + func (o *OpsgenieConfig) GetTags() string + func (o *OpsgenieConfig) GetTagsOk() (*string, bool) + func (o *OpsgenieConfig) HasApiKey() bool + func (o *OpsgenieConfig) HasApiUrl() bool + func (o *OpsgenieConfig) HasPriority() bool + func (o *OpsgenieConfig) HasSendResolved() bool + func (o *OpsgenieConfig) HasTags() bool + func (o *OpsgenieConfig) SetApiKey(v string) + func (o *OpsgenieConfig) SetApiUrl(v string) + func (o *OpsgenieConfig) SetPriority(v string) + func (o *OpsgenieConfig) SetSendResolved(v bool) + func (o *OpsgenieConfig) SetTags(v string) + func (o OpsgenieConfig) MarshalJSON() ([]byte, error) + func (o OpsgenieConfig) ToMap() (map[string]interface{}, error) + type PartialUpdateAlertRecordsRequestInner struct + Expr string + Labels map[string]interface{} + Record string + func NewPartialUpdateAlertRecordsRequestInner(expr string, record string) *PartialUpdateAlertRecordsRequestInner + func NewPartialUpdateAlertRecordsRequestInnerWithDefaults() *PartialUpdateAlertRecordsRequestInner + func (o *PartialUpdateAlertRecordsRequestInner) GetExpr() string + func (o *PartialUpdateAlertRecordsRequestInner) GetExprOk() (*string, bool) + func (o *PartialUpdateAlertRecordsRequestInner) GetLabels() map[string]interface{} + func (o *PartialUpdateAlertRecordsRequestInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateAlertRecordsRequestInner) GetRecord() string + func (o *PartialUpdateAlertRecordsRequestInner) GetRecordOk() (*string, bool) + func (o *PartialUpdateAlertRecordsRequestInner) HasLabels() bool + func (o *PartialUpdateAlertRecordsRequestInner) SetExpr(v string) + func (o *PartialUpdateAlertRecordsRequestInner) SetLabels(v map[string]interface{}) + func (o *PartialUpdateAlertRecordsRequestInner) SetRecord(v string) + func (o *PartialUpdateAlertRecordsRequestInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateAlertRecordsRequestInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateAlertRecordsRequestInner) ToMap() (map[string]interface{}, error) + type PartialUpdateAlertgroupsRequestInner struct + Interval *string + Name string + Rules []PartialUpdateAlertgroupsRequestInnerRulesInner + func NewPartialUpdateAlertgroupsRequestInner(name string, rules []PartialUpdateAlertgroupsRequestInnerRulesInner) *PartialUpdateAlertgroupsRequestInner + func NewPartialUpdateAlertgroupsRequestInnerWithDefaults() *PartialUpdateAlertgroupsRequestInner + func (o *PartialUpdateAlertgroupsRequestInner) GetInterval() string + func (o *PartialUpdateAlertgroupsRequestInner) GetIntervalOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInner) GetName() string + func (o *PartialUpdateAlertgroupsRequestInner) GetNameOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInner) GetRules() []PartialUpdateAlertgroupsRequestInnerRulesInner + func (o *PartialUpdateAlertgroupsRequestInner) GetRulesOk() ([]PartialUpdateAlertgroupsRequestInnerRulesInner, bool) + func (o *PartialUpdateAlertgroupsRequestInner) HasInterval() bool + func (o *PartialUpdateAlertgroupsRequestInner) SetInterval(v string) + func (o *PartialUpdateAlertgroupsRequestInner) SetName(v string) + func (o *PartialUpdateAlertgroupsRequestInner) SetRules(v []PartialUpdateAlertgroupsRequestInnerRulesInner) + func (o *PartialUpdateAlertgroupsRequestInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateAlertgroupsRequestInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateAlertgroupsRequestInner) ToMap() (map[string]interface{}, error) + type PartialUpdateAlertgroupsRequestInnerRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewPartialUpdateAlertgroupsRequestInnerRulesInner(expr string) *PartialUpdateAlertgroupsRequestInnerRulesInner + func NewPartialUpdateAlertgroupsRequestInnerRulesInnerWithDefaults() *PartialUpdateAlertgroupsRequestInnerRulesInner + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetAlert() string + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetAlertOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetAnnotations() map[string]interface{} + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetExpr() string + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetExprOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetFor() string + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetForOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetLabels() map[string]interface{} + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetRecord() string + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) GetRecordOk() (*string, bool) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) HasAlert() bool + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) HasAnnotations() bool + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) HasFor() bool + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) HasLabels() bool + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) HasRecord() bool + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetAlert(v string) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetAnnotations(v map[string]interface{}) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetExpr(v string) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetFor(v string) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetLabels(v map[string]interface{}) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) SetRecord(v string) + func (o *PartialUpdateAlertgroupsRequestInnerRulesInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateAlertgroupsRequestInnerRulesInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateAlertgroupsRequestInnerRulesInner) ToMap() (map[string]interface{}, error) + type PartialUpdateAlertrulesRequestInner struct + Alert string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + func NewPartialUpdateAlertrulesRequestInner(alert string, expr string) *PartialUpdateAlertrulesRequestInner + func NewPartialUpdateAlertrulesRequestInnerWithDefaults() *PartialUpdateAlertrulesRequestInner + func (o *PartialUpdateAlertrulesRequestInner) GetAlert() string + func (o *PartialUpdateAlertrulesRequestInner) GetAlertOk() (*string, bool) + func (o *PartialUpdateAlertrulesRequestInner) GetAnnotations() map[string]interface{} + func (o *PartialUpdateAlertrulesRequestInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *PartialUpdateAlertrulesRequestInner) GetExpr() string + func (o *PartialUpdateAlertrulesRequestInner) GetExprOk() (*string, bool) + func (o *PartialUpdateAlertrulesRequestInner) GetFor() string + func (o *PartialUpdateAlertrulesRequestInner) GetForOk() (*string, bool) + func (o *PartialUpdateAlertrulesRequestInner) GetLabels() map[string]interface{} + func (o *PartialUpdateAlertrulesRequestInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateAlertrulesRequestInner) HasAnnotations() bool + func (o *PartialUpdateAlertrulesRequestInner) HasFor() bool + func (o *PartialUpdateAlertrulesRequestInner) HasLabels() bool + func (o *PartialUpdateAlertrulesRequestInner) SetAlert(v string) + func (o *PartialUpdateAlertrulesRequestInner) SetAnnotations(v map[string]interface{}) + func (o *PartialUpdateAlertrulesRequestInner) SetExpr(v string) + func (o *PartialUpdateAlertrulesRequestInner) SetFor(v string) + func (o *PartialUpdateAlertrulesRequestInner) SetLabels(v map[string]interface{}) + func (o *PartialUpdateAlertrulesRequestInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateAlertrulesRequestInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateAlertrulesRequestInner) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInner struct + BasicAuth *PartialUpdateScrapeConfigsRequestInnerBasicAuth + BearerToken *string + HonorLabels *bool + HonorTimeStamps *bool + HttpSdConfigs []PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + JobName string + MetricsPath *string + MetricsRelabelConfigs []PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + Oauth2 *PartialUpdateScrapeConfigsRequestInnerOauth2 + Params map[string]interface{} + SampleLimit *float32 + Scheme string + ScrapeInterval string + ScrapeTimeout string + StaticConfigs []PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + TlsConfig *PartialUpdateScrapeConfigsRequestInnerTlsConfig + func NewPartialUpdateScrapeConfigsRequestInner(jobName string, scheme string, scrapeInterval string, scrapeTimeout string, ...) *PartialUpdateScrapeConfigsRequestInner + func NewPartialUpdateScrapeConfigsRequestInnerWithDefaults() *PartialUpdateScrapeConfigsRequestInner + func (o *PartialUpdateScrapeConfigsRequestInner) GetBasicAuth() PartialUpdateScrapeConfigsRequestInnerBasicAuth + func (o *PartialUpdateScrapeConfigsRequestInner) GetBasicAuthOk() (*PartialUpdateScrapeConfigsRequestInnerBasicAuth, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetBearerToken() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetBearerTokenOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetHonorLabels() bool + func (o *PartialUpdateScrapeConfigsRequestInner) GetHonorLabelsOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetHonorTimeStamps() bool + func (o *PartialUpdateScrapeConfigsRequestInner) GetHonorTimeStampsOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetHttpSdConfigs() []PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInner) GetHttpSdConfigsOk() ([]PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetJobName() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetJobNameOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetMetricsPath() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetMetricsPathOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetMetricsRelabelConfigs() []PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInner) GetMetricsRelabelConfigsOk() ([]PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetOauth2() PartialUpdateScrapeConfigsRequestInnerOauth2 + func (o *PartialUpdateScrapeConfigsRequestInner) GetOauth2Ok() (*PartialUpdateScrapeConfigsRequestInnerOauth2, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetParams() map[string]interface{} + func (o *PartialUpdateScrapeConfigsRequestInner) GetParamsOk() (map[string]interface{}, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetSampleLimit() float32 + func (o *PartialUpdateScrapeConfigsRequestInner) GetSampleLimitOk() (*float32, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetScheme() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetSchemeOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetScrapeInterval() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetScrapeIntervalOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetScrapeTimeout() string + func (o *PartialUpdateScrapeConfigsRequestInner) GetScrapeTimeoutOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetStaticConfigs() []PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInner) GetStaticConfigsOk() ([]PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) GetTlsConfig() PartialUpdateScrapeConfigsRequestInnerTlsConfig + func (o *PartialUpdateScrapeConfigsRequestInner) GetTlsConfigOk() (*PartialUpdateScrapeConfigsRequestInnerTlsConfig, bool) + func (o *PartialUpdateScrapeConfigsRequestInner) HasBasicAuth() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasBearerToken() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasHonorLabels() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasHonorTimeStamps() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasHttpSdConfigs() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasMetricsPath() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasMetricsRelabelConfigs() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasOauth2() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasParams() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasSampleLimit() bool + func (o *PartialUpdateScrapeConfigsRequestInner) HasTlsConfig() bool + func (o *PartialUpdateScrapeConfigsRequestInner) SetBasicAuth(v PartialUpdateScrapeConfigsRequestInnerBasicAuth) + func (o *PartialUpdateScrapeConfigsRequestInner) SetBearerToken(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetHonorLabels(v bool) + func (o *PartialUpdateScrapeConfigsRequestInner) SetHonorTimeStamps(v bool) + func (o *PartialUpdateScrapeConfigsRequestInner) SetHttpSdConfigs(v []PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) + func (o *PartialUpdateScrapeConfigsRequestInner) SetJobName(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetMetricsPath(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetMetricsRelabelConfigs(v []PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) + func (o *PartialUpdateScrapeConfigsRequestInner) SetOauth2(v PartialUpdateScrapeConfigsRequestInnerOauth2) + func (o *PartialUpdateScrapeConfigsRequestInner) SetParams(v map[string]interface{}) + func (o *PartialUpdateScrapeConfigsRequestInner) SetSampleLimit(v float32) + func (o *PartialUpdateScrapeConfigsRequestInner) SetScheme(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetScrapeInterval(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetScrapeTimeout(v string) + func (o *PartialUpdateScrapeConfigsRequestInner) SetStaticConfigs(v []PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) + func (o *PartialUpdateScrapeConfigsRequestInner) SetTlsConfig(v PartialUpdateScrapeConfigsRequestInnerTlsConfig) + func (o *PartialUpdateScrapeConfigsRequestInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateScrapeConfigsRequestInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInner) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerBasicAuth struct + Password *string + Username *string + func NewPartialUpdateScrapeConfigsRequestInnerBasicAuth() *PartialUpdateScrapeConfigsRequestInnerBasicAuth + func NewPartialUpdateScrapeConfigsRequestInnerBasicAuthWithDefaults() *PartialUpdateScrapeConfigsRequestInnerBasicAuth + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) GetPassword() string + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) GetPasswordOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) GetUsername() string + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) GetUsernameOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) HasPassword() bool + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) HasUsername() bool + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) SetPassword(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerBasicAuth) SetUsername(v string) + func (o PartialUpdateScrapeConfigsRequestInnerBasicAuth) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerBasicAuth) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner struct + BasicAuth *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + Oauth2 *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + RefreshInterval *string + TlsConfig *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + Url string + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner(url string) *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerWithDefaults() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetBasicAuth() PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetBasicAuthOk() (*PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetOauth2() PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetOauth2Ok() (*PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetRefreshInterval() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetRefreshIntervalOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetTlsConfig() PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetTlsConfigOk() (*PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetUrl() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) GetUrlOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) HasBasicAuth() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) HasOauth2() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) HasRefreshInterval() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) HasTlsConfig() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) SetBasicAuth(v PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) SetOauth2(v PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) SetRefreshInterval(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) SetTlsConfig(v PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) SetUrl(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInner) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth struct + Password *string + Username *string + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuthWithDefaults() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) GetPassword() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) GetPasswordOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) GetUsername() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) GetUsernameOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) HasPassword() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) HasUsername() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) SetPassword(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) SetUsername(v string) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerBasicAuth) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 struct + ClientId string + ClientSecret string + Scopes []string + TlsConfig *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig + TokenUrl string + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2(clientId string, clientSecret string, tokenUrl string) *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2WithDefaults() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2 + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetClientId() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetClientIdOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetClientSecret() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetClientSecretOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetScopes() []string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetScopesOk() ([]string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetTlsConfig() PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetTlsConfigOk() (*PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetTokenUrl() string + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) GetTokenUrlOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) HasScopes() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) HasTlsConfig() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) SetClientId(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) SetClientSecret(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) SetScopes(v []string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) SetTlsConfig(v PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) SetTokenUrl(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig struct + InsecureSkipVerify *bool + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfigWithDefaults() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) GetInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) HasInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) SetInsecureSkipVerify(v bool) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerOauth2TlsConfig) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig struct + InsecureSkipVerify *bool + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + func NewPartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfigWithDefaults() *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) GetInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) HasInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) SetInsecureSkipVerify(v bool) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerHttpSdConfigsInnerTlsConfig) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner struct + Action *string + Modulus *float32 + Regex *string + Replacement *string + Separator *string + SourceLabels []string + TargetLabel *string + func NewPartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner() *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + func NewPartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInnerWithDefaults() *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetAction() string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetActionOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetModulus() float32 + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetModulusOk() (*float32, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetRegex() string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetRegexOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetReplacement() string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetReplacementOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetSeparator() string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetSeparatorOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetSourceLabels() []string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetSourceLabelsOk() ([]string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetTargetLabel() string + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) GetTargetLabelOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasAction() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasModulus() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasRegex() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasReplacement() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasSeparator() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasSourceLabels() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) HasTargetLabel() bool + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetAction(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetModulus(v float32) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetRegex(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetReplacement(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetSeparator(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetSourceLabels(v []string) + func (o *PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) SetTargetLabel(v string) + func (o PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerMetricsRelabelConfigsInner) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerOauth2 struct + ClientId string + ClientSecret string + Scopes []string + TlsConfig *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + TokenUrl string + func NewPartialUpdateScrapeConfigsRequestInnerOauth2(clientId string, clientSecret string, tokenUrl string) *PartialUpdateScrapeConfigsRequestInnerOauth2 + func NewPartialUpdateScrapeConfigsRequestInnerOauth2WithDefaults() *PartialUpdateScrapeConfigsRequestInnerOauth2 + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetClientId() string + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetClientIdOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetClientSecret() string + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetClientSecretOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetScopes() []string + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetScopesOk() ([]string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetTlsConfig() PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetTlsConfigOk() (*PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetTokenUrl() string + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) GetTokenUrlOk() (*string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) HasScopes() bool + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) HasTlsConfig() bool + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) SetClientId(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) SetClientSecret(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) SetScopes(v []string) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) SetTlsConfig(v PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) SetTokenUrl(v string) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateScrapeConfigsRequestInnerOauth2) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerOauth2) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig struct + InsecureSkipVerify *bool + func NewPartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig() *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + func NewPartialUpdateScrapeConfigsRequestInnerOauth2TlsConfigWithDefaults() *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) GetInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) HasInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) SetInsecureSkipVerify(v bool) + func (o PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerOauth2TlsConfig) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner struct + Labels map[string]interface{} + Targets []string + func NewPartialUpdateScrapeConfigsRequestInnerStaticConfigsInner(targets []string) *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + func NewPartialUpdateScrapeConfigsRequestInnerStaticConfigsInnerWithDefaults() *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) GetLabels() map[string]interface{} + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) GetTargets() []string + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) GetTargetsOk() ([]string, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) HasLabels() bool + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) SetLabels(v map[string]interface{}) + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) SetTargets(v []string) + func (o *PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) UnmarshalJSON(data []byte) (err error) + func (o PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerStaticConfigsInner) ToMap() (map[string]interface{}, error) + type PartialUpdateScrapeConfigsRequestInnerTlsConfig struct + InsecureSkipVerify *bool + func NewPartialUpdateScrapeConfigsRequestInnerTlsConfig() *PartialUpdateScrapeConfigsRequestInnerTlsConfig + func NewPartialUpdateScrapeConfigsRequestInnerTlsConfigWithDefaults() *PartialUpdateScrapeConfigsRequestInnerTlsConfig + func (o *PartialUpdateScrapeConfigsRequestInnerTlsConfig) GetInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerTlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *PartialUpdateScrapeConfigsRequestInnerTlsConfig) HasInsecureSkipVerify() bool + func (o *PartialUpdateScrapeConfigsRequestInnerTlsConfig) SetInsecureSkipVerify(v bool) + func (o PartialUpdateScrapeConfigsRequestInnerTlsConfig) MarshalJSON() ([]byte, error) + func (o PartialUpdateScrapeConfigsRequestInnerTlsConfig) ToMap() (map[string]interface{}, error) + type PermissionDenied struct + Detail string + func NewPermissionDenied(detail string) *PermissionDenied + func NewPermissionDeniedWithDefaults() *PermissionDenied + func (o *PermissionDenied) GetDetail() string + func (o *PermissionDenied) GetDetailOk() (*string, bool) + func (o *PermissionDenied) SetDetail(v string) + func (o *PermissionDenied) UnmarshalJSON(data []byte) (err error) + func (o PermissionDenied) MarshalJSON() ([]byte, error) + func (o PermissionDenied) ToMap() (map[string]interface{}, error) + type PingCheckChildResponse struct + Id string + Url string + func NewPingCheckChildResponse(id string, url string) *PingCheckChildResponse + func NewPingCheckChildResponseWithDefaults() *PingCheckChildResponse + func (o *PingCheckChildResponse) GetId() string + func (o *PingCheckChildResponse) GetIdOk() (*string, bool) + func (o *PingCheckChildResponse) GetUrl() string + func (o *PingCheckChildResponse) GetUrlOk() (*string, bool) + func (o *PingCheckChildResponse) SetId(v string) + func (o *PingCheckChildResponse) SetUrl(v string) + func (o *PingCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o PingCheckChildResponse) MarshalJSON() ([]byte, error) + func (o PingCheckChildResponse) ToMap() (map[string]interface{}, error) + type PingCheckResponse struct + Message string + PingCheck *PingCheckChildResponse + PingChecks []PingCheckChildResponse + func NewPingCheckResponse(message string, pingChecks []PingCheckChildResponse) *PingCheckResponse + func NewPingCheckResponseWithDefaults() *PingCheckResponse + func (o *PingCheckResponse) GetMessage() string + func (o *PingCheckResponse) GetMessageOk() (*string, bool) + func (o *PingCheckResponse) GetPingCheck() PingCheckChildResponse + func (o *PingCheckResponse) GetPingCheckOk() (*PingCheckChildResponse, bool) + func (o *PingCheckResponse) GetPingChecks() []PingCheckChildResponse + func (o *PingCheckResponse) GetPingChecksOk() ([]PingCheckChildResponse, bool) + func (o *PingCheckResponse) HasPingCheck() bool + func (o *PingCheckResponse) SetMessage(v string) + func (o *PingCheckResponse) SetPingCheck(v PingCheckChildResponse) + func (o *PingCheckResponse) SetPingChecks(v []PingCheckChildResponse) + func (o *PingCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o PingCheckResponse) MarshalJSON() ([]byte, error) + func (o PingCheckResponse) ToMap() (map[string]interface{}, error) + type Plan struct + AlertMatchers int32 + AlertReceivers int32 + AlertRules int32 + Amount *float32 + BucketSize int32 + Description *string + GrafanaGlobalDashboards int32 + GrafanaGlobalOrgs int32 + GrafanaGlobalSessions int32 + GrafanaGlobalUsers int32 + Id string + IsFree *bool + IsPublic *bool + LogsAlert int32 + LogsStorage int32 + Name *string + PlanId string + SamplesPerScrape int32 + Schema *string + TargetNumber int32 + TotalMetricSamples int32 + TracesStorage int32 + func NewPlan(alertMatchers int32, alertReceivers int32, alertRules int32, bucketSize int32, ...) *Plan + func NewPlanWithDefaults() *Plan + func (o *Plan) GetAlertMatchers() int32 + func (o *Plan) GetAlertMatchersOk() (*int32, bool) + func (o *Plan) GetAlertReceivers() int32 + func (o *Plan) GetAlertReceiversOk() (*int32, bool) + func (o *Plan) GetAlertRules() int32 + func (o *Plan) GetAlertRulesOk() (*int32, bool) + func (o *Plan) GetAmount() float32 + func (o *Plan) GetAmountOk() (*float32, bool) + func (o *Plan) GetBucketSize() int32 + func (o *Plan) GetBucketSizeOk() (*int32, bool) + func (o *Plan) GetDescription() string + func (o *Plan) GetDescriptionOk() (*string, bool) + func (o *Plan) GetGrafanaGlobalDashboards() int32 + func (o *Plan) GetGrafanaGlobalDashboardsOk() (*int32, bool) + func (o *Plan) GetGrafanaGlobalOrgs() int32 + func (o *Plan) GetGrafanaGlobalOrgsOk() (*int32, bool) + func (o *Plan) GetGrafanaGlobalSessions() int32 + func (o *Plan) GetGrafanaGlobalSessionsOk() (*int32, bool) + func (o *Plan) GetGrafanaGlobalUsers() int32 + func (o *Plan) GetGrafanaGlobalUsersOk() (*int32, bool) + func (o *Plan) GetId() string + func (o *Plan) GetIdOk() (*string, bool) + func (o *Plan) GetIsFree() bool + func (o *Plan) GetIsFreeOk() (*bool, bool) + func (o *Plan) GetIsPublic() bool + func (o *Plan) GetIsPublicOk() (*bool, bool) + func (o *Plan) GetLogsAlert() int32 + func (o *Plan) GetLogsAlertOk() (*int32, bool) + func (o *Plan) GetLogsStorage() int32 + func (o *Plan) GetLogsStorageOk() (*int32, bool) + func (o *Plan) GetName() string + func (o *Plan) GetNameOk() (*string, bool) + func (o *Plan) GetPlanId() string + func (o *Plan) GetPlanIdOk() (*string, bool) + func (o *Plan) GetSamplesPerScrape() int32 + func (o *Plan) GetSamplesPerScrapeOk() (*int32, bool) + func (o *Plan) GetSchema() string + func (o *Plan) GetSchemaOk() (*string, bool) + func (o *Plan) GetTargetNumber() int32 + func (o *Plan) GetTargetNumberOk() (*int32, bool) + func (o *Plan) GetTotalMetricSamples() int32 + func (o *Plan) GetTotalMetricSamplesOk() (*int32, bool) + func (o *Plan) GetTracesStorage() int32 + func (o *Plan) GetTracesStorageOk() (*int32, bool) + func (o *Plan) HasAmount() bool + func (o *Plan) HasDescription() bool + func (o *Plan) HasIsFree() bool + func (o *Plan) HasIsPublic() bool + func (o *Plan) HasName() bool + func (o *Plan) HasSchema() bool + func (o *Plan) SetAlertMatchers(v int32) + func (o *Plan) SetAlertReceivers(v int32) + func (o *Plan) SetAlertRules(v int32) + func (o *Plan) SetAmount(v float32) + func (o *Plan) SetBucketSize(v int32) + func (o *Plan) SetDescription(v string) + func (o *Plan) SetGrafanaGlobalDashboards(v int32) + func (o *Plan) SetGrafanaGlobalOrgs(v int32) + func (o *Plan) SetGrafanaGlobalSessions(v int32) + func (o *Plan) SetGrafanaGlobalUsers(v int32) + func (o *Plan) SetId(v string) + func (o *Plan) SetIsFree(v bool) + func (o *Plan) SetIsPublic(v bool) + func (o *Plan) SetLogsAlert(v int32) + func (o *Plan) SetLogsStorage(v int32) + func (o *Plan) SetName(v string) + func (o *Plan) SetPlanId(v string) + func (o *Plan) SetSamplesPerScrape(v int32) + func (o *Plan) SetSchema(v string) + func (o *Plan) SetTargetNumber(v int32) + func (o *Plan) SetTotalMetricSamples(v int32) + func (o *Plan) SetTracesStorage(v int32) + func (o *Plan) UnmarshalJSON(data []byte) (err error) + func (o Plan) MarshalJSON() ([]byte, error) + func (o Plan) ToMap() (map[string]interface{}, error) + type PlanModel struct + AlertMatchers int32 + AlertReceivers int32 + AlertRules int32 + Amount *float32 + BucketSize int32 + Description *string + GrafanaGlobalDashboards int32 + GrafanaGlobalOrgs int32 + GrafanaGlobalSessions int32 + GrafanaGlobalUsers int32 + Id string + LogsAlert int32 + LogsStorage int32 + Name *string + PlanId string + SamplesPerScrape int32 + TargetNumber int32 + TotalMetricSamples int32 + TracesStorage int32 + func NewPlanModel(alertMatchers int32, alertReceivers int32, alertRules int32, bucketSize int32, ...) *PlanModel + func NewPlanModelWithDefaults() *PlanModel + func (o *PlanModel) GetAlertMatchers() int32 + func (o *PlanModel) GetAlertMatchersOk() (*int32, bool) + func (o *PlanModel) GetAlertReceivers() int32 + func (o *PlanModel) GetAlertReceiversOk() (*int32, bool) + func (o *PlanModel) GetAlertRules() int32 + func (o *PlanModel) GetAlertRulesOk() (*int32, bool) + func (o *PlanModel) GetAmount() float32 + func (o *PlanModel) GetAmountOk() (*float32, bool) + func (o *PlanModel) GetBucketSize() int32 + func (o *PlanModel) GetBucketSizeOk() (*int32, bool) + func (o *PlanModel) GetDescription() string + func (o *PlanModel) GetDescriptionOk() (*string, bool) + func (o *PlanModel) GetGrafanaGlobalDashboards() int32 + func (o *PlanModel) GetGrafanaGlobalDashboardsOk() (*int32, bool) + func (o *PlanModel) GetGrafanaGlobalOrgs() int32 + func (o *PlanModel) GetGrafanaGlobalOrgsOk() (*int32, bool) + func (o *PlanModel) GetGrafanaGlobalSessions() int32 + func (o *PlanModel) GetGrafanaGlobalSessionsOk() (*int32, bool) + func (o *PlanModel) GetGrafanaGlobalUsers() int32 + func (o *PlanModel) GetGrafanaGlobalUsersOk() (*int32, bool) + func (o *PlanModel) GetId() string + func (o *PlanModel) GetIdOk() (*string, bool) + func (o *PlanModel) GetLogsAlert() int32 + func (o *PlanModel) GetLogsAlertOk() (*int32, bool) + func (o *PlanModel) GetLogsStorage() int32 + func (o *PlanModel) GetLogsStorageOk() (*int32, bool) + func (o *PlanModel) GetName() string + func (o *PlanModel) GetNameOk() (*string, bool) + func (o *PlanModel) GetPlanId() string + func (o *PlanModel) GetPlanIdOk() (*string, bool) + func (o *PlanModel) GetSamplesPerScrape() int32 + func (o *PlanModel) GetSamplesPerScrapeOk() (*int32, bool) + func (o *PlanModel) GetTargetNumber() int32 + func (o *PlanModel) GetTargetNumberOk() (*int32, bool) + func (o *PlanModel) GetTotalMetricSamples() int32 + func (o *PlanModel) GetTotalMetricSamplesOk() (*int32, bool) + func (o *PlanModel) GetTracesStorage() int32 + func (o *PlanModel) GetTracesStorageOk() (*int32, bool) + func (o *PlanModel) HasAmount() bool + func (o *PlanModel) HasDescription() bool + func (o *PlanModel) HasName() bool + func (o *PlanModel) SetAlertMatchers(v int32) + func (o *PlanModel) SetAlertReceivers(v int32) + func (o *PlanModel) SetAlertRules(v int32) + func (o *PlanModel) SetAmount(v float32) + func (o *PlanModel) SetBucketSize(v int32) + func (o *PlanModel) SetDescription(v string) + func (o *PlanModel) SetGrafanaGlobalDashboards(v int32) + func (o *PlanModel) SetGrafanaGlobalOrgs(v int32) + func (o *PlanModel) SetGrafanaGlobalSessions(v int32) + func (o *PlanModel) SetGrafanaGlobalUsers(v int32) + func (o *PlanModel) SetId(v string) + func (o *PlanModel) SetLogsAlert(v int32) + func (o *PlanModel) SetLogsStorage(v int32) + func (o *PlanModel) SetName(v string) + func (o *PlanModel) SetPlanId(v string) + func (o *PlanModel) SetSamplesPerScrape(v int32) + func (o *PlanModel) SetTargetNumber(v int32) + func (o *PlanModel) SetTotalMetricSamples(v int32) + func (o *PlanModel) SetTracesStorage(v int32) + func (o *PlanModel) UnmarshalJSON(data []byte) (err error) + func (o PlanModel) MarshalJSON() ([]byte, error) + func (o PlanModel) ToMap() (map[string]interface{}, error) + type PlansResponse struct + Message string + Plans []Plan + func NewPlansResponse(message string, plans []Plan) *PlansResponse + func NewPlansResponseWithDefaults() *PlansResponse + func (o *PlansResponse) GetMessage() string + func (o *PlansResponse) GetMessageOk() (*string, bool) + func (o *PlansResponse) GetPlans() []Plan + func (o *PlansResponse) GetPlansOk() ([]Plan, bool) + func (o *PlansResponse) SetMessage(v string) + func (o *PlansResponse) SetPlans(v []Plan) + func (o *PlansResponse) UnmarshalJSON(data []byte) (err error) + func (o PlansResponse) MarshalJSON() ([]byte, error) + func (o PlansResponse) ToMap() (map[string]interface{}, error) + type PostgresqlCheckChildResponse struct + Address string + Id string + func NewPostgresqlCheckChildResponse(address string, id string) *PostgresqlCheckChildResponse + func NewPostgresqlCheckChildResponseWithDefaults() *PostgresqlCheckChildResponse + func (o *PostgresqlCheckChildResponse) GetAddress() string + func (o *PostgresqlCheckChildResponse) GetAddressOk() (*string, bool) + func (o *PostgresqlCheckChildResponse) GetId() string + func (o *PostgresqlCheckChildResponse) GetIdOk() (*string, bool) + func (o *PostgresqlCheckChildResponse) SetAddress(v string) + func (o *PostgresqlCheckChildResponse) SetId(v string) + func (o *PostgresqlCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o PostgresqlCheckChildResponse) MarshalJSON() ([]byte, error) + func (o PostgresqlCheckChildResponse) ToMap() (map[string]interface{}, error) + type PostgresqlCheckResponse struct + Message string + PostgresqlCheck *PostgresqlCheckChildResponse + PostgresqlChecks []PostgresqlCheckChildResponse + func NewPostgresqlCheckResponse(message string, postgresqlChecks []PostgresqlCheckChildResponse) *PostgresqlCheckResponse + func NewPostgresqlCheckResponseWithDefaults() *PostgresqlCheckResponse + func (o *PostgresqlCheckResponse) GetMessage() string + func (o *PostgresqlCheckResponse) GetMessageOk() (*string, bool) + func (o *PostgresqlCheckResponse) GetPostgresqlCheck() PostgresqlCheckChildResponse + func (o *PostgresqlCheckResponse) GetPostgresqlCheckOk() (*PostgresqlCheckChildResponse, bool) + func (o *PostgresqlCheckResponse) GetPostgresqlChecks() []PostgresqlCheckChildResponse + func (o *PostgresqlCheckResponse) GetPostgresqlChecksOk() ([]PostgresqlCheckChildResponse, bool) + func (o *PostgresqlCheckResponse) HasPostgresqlCheck() bool + func (o *PostgresqlCheckResponse) SetMessage(v string) + func (o *PostgresqlCheckResponse) SetPostgresqlCheck(v PostgresqlCheckChildResponse) + func (o *PostgresqlCheckResponse) SetPostgresqlChecks(v []PostgresqlCheckChildResponse) + func (o *PostgresqlCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o PostgresqlCheckResponse) MarshalJSON() ([]byte, error) + func (o PostgresqlCheckResponse) ToMap() (map[string]interface{}, error) + type ProjectInstanceFull struct + Error NullableString + Id string + Instance string + Name *string + PlanName string + ServiceName string + Status string + func NewProjectInstanceFull(id string, instance string, planName string, serviceName string, status string) *ProjectInstanceFull + func NewProjectInstanceFullWithDefaults() *ProjectInstanceFull + func (o *ProjectInstanceFull) GetError() string + func (o *ProjectInstanceFull) GetErrorOk() (*string, bool) + func (o *ProjectInstanceFull) GetId() string + func (o *ProjectInstanceFull) GetIdOk() (*string, bool) + func (o *ProjectInstanceFull) GetInstance() string + func (o *ProjectInstanceFull) GetInstanceOk() (*string, bool) + func (o *ProjectInstanceFull) GetName() string + func (o *ProjectInstanceFull) GetNameOk() (*string, bool) + func (o *ProjectInstanceFull) GetPlanName() string + func (o *ProjectInstanceFull) GetPlanNameOk() (*string, bool) + func (o *ProjectInstanceFull) GetServiceName() string + func (o *ProjectInstanceFull) GetServiceNameOk() (*string, bool) + func (o *ProjectInstanceFull) GetStatus() string + func (o *ProjectInstanceFull) GetStatusOk() (*string, bool) + func (o *ProjectInstanceFull) HasError() bool + func (o *ProjectInstanceFull) HasName() bool + func (o *ProjectInstanceFull) SetError(v string) + func (o *ProjectInstanceFull) SetErrorNil() + func (o *ProjectInstanceFull) SetId(v string) + func (o *ProjectInstanceFull) SetInstance(v string) + func (o *ProjectInstanceFull) SetName(v string) + func (o *ProjectInstanceFull) SetPlanName(v string) + func (o *ProjectInstanceFull) SetServiceName(v string) + func (o *ProjectInstanceFull) SetStatus(v string) + func (o *ProjectInstanceFull) UnmarshalJSON(data []byte) (err error) + func (o *ProjectInstanceFull) UnsetError() + func (o ProjectInstanceFull) MarshalJSON() ([]byte, error) + func (o ProjectInstanceFull) ToMap() (map[string]interface{}, error) + type RabbitMQCheckChildResponse struct + Id string + Password *string + Url string + Username *string + func NewRabbitMQCheckChildResponse(id string, url string) *RabbitMQCheckChildResponse + func NewRabbitMQCheckChildResponseWithDefaults() *RabbitMQCheckChildResponse + func (o *RabbitMQCheckChildResponse) GetId() string + func (o *RabbitMQCheckChildResponse) GetIdOk() (*string, bool) + func (o *RabbitMQCheckChildResponse) GetPassword() string + func (o *RabbitMQCheckChildResponse) GetPasswordOk() (*string, bool) + func (o *RabbitMQCheckChildResponse) GetUrl() string + func (o *RabbitMQCheckChildResponse) GetUrlOk() (*string, bool) + func (o *RabbitMQCheckChildResponse) GetUsername() string + func (o *RabbitMQCheckChildResponse) GetUsernameOk() (*string, bool) + func (o *RabbitMQCheckChildResponse) HasPassword() bool + func (o *RabbitMQCheckChildResponse) HasUsername() bool + func (o *RabbitMQCheckChildResponse) SetId(v string) + func (o *RabbitMQCheckChildResponse) SetPassword(v string) + func (o *RabbitMQCheckChildResponse) SetUrl(v string) + func (o *RabbitMQCheckChildResponse) SetUsername(v string) + func (o *RabbitMQCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o RabbitMQCheckChildResponse) MarshalJSON() ([]byte, error) + func (o RabbitMQCheckChildResponse) ToMap() (map[string]interface{}, error) + type RabbitmqCheckResponse struct + Message string + RabbitmqCheck *RabbitMQCheckChildResponse + RabbitmqChecks []RabbitMQCheckChildResponse + func NewRabbitmqCheckResponse(message string, rabbitmqChecks []RabbitMQCheckChildResponse) *RabbitmqCheckResponse + func NewRabbitmqCheckResponseWithDefaults() *RabbitmqCheckResponse + func (o *RabbitmqCheckResponse) GetMessage() string + func (o *RabbitmqCheckResponse) GetMessageOk() (*string, bool) + func (o *RabbitmqCheckResponse) GetRabbitmqCheck() RabbitMQCheckChildResponse + func (o *RabbitmqCheckResponse) GetRabbitmqCheckOk() (*RabbitMQCheckChildResponse, bool) + func (o *RabbitmqCheckResponse) GetRabbitmqChecks() []RabbitMQCheckChildResponse + func (o *RabbitmqCheckResponse) GetRabbitmqChecksOk() ([]RabbitMQCheckChildResponse, bool) + func (o *RabbitmqCheckResponse) HasRabbitmqCheck() bool + func (o *RabbitmqCheckResponse) SetMessage(v string) + func (o *RabbitmqCheckResponse) SetRabbitmqCheck(v RabbitMQCheckChildResponse) + func (o *RabbitmqCheckResponse) SetRabbitmqChecks(v []RabbitMQCheckChildResponse) + func (o *RabbitmqCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o RabbitmqCheckResponse) MarshalJSON() ([]byte, error) + func (o RabbitmqCheckResponse) ToMap() (map[string]interface{}, error) + type Receiver struct + Data Receivers + Message string + func NewReceiver(data Receivers, message string) *Receiver + func NewReceiverWithDefaults() *Receiver + func (o *Receiver) GetData() Receivers + func (o *Receiver) GetDataOk() (*Receivers, bool) + func (o *Receiver) GetMessage() string + func (o *Receiver) GetMessageOk() (*string, bool) + func (o *Receiver) SetData(v Receivers) + func (o *Receiver) SetMessage(v string) + func (o *Receiver) UnmarshalJSON(data []byte) (err error) + func (o Receiver) MarshalJSON() ([]byte, error) + func (o Receiver) ToMap() (map[string]interface{}, error) + type Receivers struct + EmailConfigs []EmailConfig + Name string + OpsgenieConfigs []OpsgenieConfig + WebHookConfigs []WebHook + func NewReceivers(name string) *Receivers + func NewReceiversWithDefaults() *Receivers + func (o *Receivers) GetEmailConfigs() []EmailConfig + func (o *Receivers) GetEmailConfigsOk() ([]EmailConfig, bool) + func (o *Receivers) GetName() string + func (o *Receivers) GetNameOk() (*string, bool) + func (o *Receivers) GetOpsgenieConfigs() []OpsgenieConfig + func (o *Receivers) GetOpsgenieConfigsOk() ([]OpsgenieConfig, bool) + func (o *Receivers) GetWebHookConfigs() []WebHook + func (o *Receivers) GetWebHookConfigsOk() ([]WebHook, bool) + func (o *Receivers) HasEmailConfigs() bool + func (o *Receivers) HasOpsgenieConfigs() bool + func (o *Receivers) HasWebHookConfigs() bool + func (o *Receivers) SetEmailConfigs(v []EmailConfig) + func (o *Receivers) SetName(v string) + func (o *Receivers) SetOpsgenieConfigs(v []OpsgenieConfig) + func (o *Receivers) SetWebHookConfigs(v []WebHook) + func (o *Receivers) UnmarshalJSON(data []byte) (err error) + func (o Receivers) MarshalJSON() ([]byte, error) + func (o Receivers) ToMap() (map[string]interface{}, error) + type RedisCheckChildResponse struct + Id string + Password *string + Server string + Username *string + func NewRedisCheckChildResponse(id string, server string) *RedisCheckChildResponse + func NewRedisCheckChildResponseWithDefaults() *RedisCheckChildResponse + func (o *RedisCheckChildResponse) GetId() string + func (o *RedisCheckChildResponse) GetIdOk() (*string, bool) + func (o *RedisCheckChildResponse) GetPassword() string + func (o *RedisCheckChildResponse) GetPasswordOk() (*string, bool) + func (o *RedisCheckChildResponse) GetServer() string + func (o *RedisCheckChildResponse) GetServerOk() (*string, bool) + func (o *RedisCheckChildResponse) GetUsername() string + func (o *RedisCheckChildResponse) GetUsernameOk() (*string, bool) + func (o *RedisCheckChildResponse) HasPassword() bool + func (o *RedisCheckChildResponse) HasUsername() bool + func (o *RedisCheckChildResponse) SetId(v string) + func (o *RedisCheckChildResponse) SetPassword(v string) + func (o *RedisCheckChildResponse) SetServer(v string) + func (o *RedisCheckChildResponse) SetUsername(v string) + func (o *RedisCheckChildResponse) UnmarshalJSON(data []byte) (err error) + func (o RedisCheckChildResponse) MarshalJSON() ([]byte, error) + func (o RedisCheckChildResponse) ToMap() (map[string]interface{}, error) + type RedisCheckResponse struct + Message string + RedisCheck *RedisCheckChildResponse + RedisChecks []RedisCheckChildResponse + func NewRedisCheckResponse(message string, redisChecks []RedisCheckChildResponse) *RedisCheckResponse + func NewRedisCheckResponseWithDefaults() *RedisCheckResponse + func (o *RedisCheckResponse) GetMessage() string + func (o *RedisCheckResponse) GetMessageOk() (*string, bool) + func (o *RedisCheckResponse) GetRedisCheck() RedisCheckChildResponse + func (o *RedisCheckResponse) GetRedisCheckOk() (*RedisCheckChildResponse, bool) + func (o *RedisCheckResponse) GetRedisChecks() []RedisCheckChildResponse + func (o *RedisCheckResponse) GetRedisChecksOk() ([]RedisCheckChildResponse, bool) + func (o *RedisCheckResponse) HasRedisCheck() bool + func (o *RedisCheckResponse) SetMessage(v string) + func (o *RedisCheckResponse) SetRedisCheck(v RedisCheckChildResponse) + func (o *RedisCheckResponse) SetRedisChecks(v []RedisCheckChildResponse) + func (o *RedisCheckResponse) UnmarshalJSON(data []byte) (err error) + func (o RedisCheckResponse) MarshalJSON() ([]byte, error) + func (o RedisCheckResponse) ToMap() (map[string]interface{}, error) + type Route struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match *map[string]string + MatchRe *map[string]string + Matchers []string + Receiver string + RepeatInterval *string + Routes []RouteSerializer + func NewRoute(receiver string) *Route + func NewRouteWithDefaults() *Route + func (o *Route) GetContinue() bool + func (o *Route) GetContinueOk() (*bool, bool) + func (o *Route) GetGroupBy() []string + func (o *Route) GetGroupByOk() ([]string, bool) + func (o *Route) GetGroupInterval() string + func (o *Route) GetGroupIntervalOk() (*string, bool) + func (o *Route) GetGroupWait() string + func (o *Route) GetGroupWaitOk() (*string, bool) + func (o *Route) GetMatch() map[string]string + func (o *Route) GetMatchOk() (*map[string]string, bool) + func (o *Route) GetMatchRe() map[string]string + func (o *Route) GetMatchReOk() (*map[string]string, bool) + func (o *Route) GetMatchers() []string + func (o *Route) GetMatchersOk() ([]string, bool) + func (o *Route) GetReceiver() string + func (o *Route) GetReceiverOk() (*string, bool) + func (o *Route) GetRepeatInterval() string + func (o *Route) GetRepeatIntervalOk() (*string, bool) + func (o *Route) GetRoutes() []RouteSerializer + func (o *Route) GetRoutesOk() ([]RouteSerializer, bool) + func (o *Route) HasContinue() bool + func (o *Route) HasGroupBy() bool + func (o *Route) HasGroupInterval() bool + func (o *Route) HasGroupWait() bool + func (o *Route) HasMatch() bool + func (o *Route) HasMatchRe() bool + func (o *Route) HasMatchers() bool + func (o *Route) HasRepeatInterval() bool + func (o *Route) HasRoutes() bool + func (o *Route) SetContinue(v bool) + func (o *Route) SetGroupBy(v []string) + func (o *Route) SetGroupInterval(v string) + func (o *Route) SetGroupWait(v string) + func (o *Route) SetMatch(v map[string]string) + func (o *Route) SetMatchRe(v map[string]string) + func (o *Route) SetMatchers(v []string) + func (o *Route) SetReceiver(v string) + func (o *Route) SetRepeatInterval(v string) + func (o *Route) SetRoutes(v []RouteSerializer) + func (o *Route) UnmarshalJSON(data []byte) (err error) + func (o Route) MarshalJSON() ([]byte, error) + func (o Route) ToMap() (map[string]interface{}, error) + type RouteSerializer struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match *map[string]string + MatchRe *map[string]string + Matchers []string + Receiver string + RepeatInterval *string + Routes []map[string]string + func NewRouteSerializer(receiver string) *RouteSerializer + func NewRouteSerializerWithDefaults() *RouteSerializer + func (o *RouteSerializer) GetContinue() bool + func (o *RouteSerializer) GetContinueOk() (*bool, bool) + func (o *RouteSerializer) GetGroupBy() []string + func (o *RouteSerializer) GetGroupByOk() ([]string, bool) + func (o *RouteSerializer) GetGroupInterval() string + func (o *RouteSerializer) GetGroupIntervalOk() (*string, bool) + func (o *RouteSerializer) GetGroupWait() string + func (o *RouteSerializer) GetGroupWaitOk() (*string, bool) + func (o *RouteSerializer) GetMatch() map[string]string + func (o *RouteSerializer) GetMatchOk() (*map[string]string, bool) + func (o *RouteSerializer) GetMatchRe() map[string]string + func (o *RouteSerializer) GetMatchReOk() (*map[string]string, bool) + func (o *RouteSerializer) GetMatchers() []string + func (o *RouteSerializer) GetMatchersOk() ([]string, bool) + func (o *RouteSerializer) GetReceiver() string + func (o *RouteSerializer) GetReceiverOk() (*string, bool) + func (o *RouteSerializer) GetRepeatInterval() string + func (o *RouteSerializer) GetRepeatIntervalOk() (*string, bool) + func (o *RouteSerializer) GetRoutes() []map[string]string + func (o *RouteSerializer) GetRoutesOk() ([]map[string]string, bool) + func (o *RouteSerializer) HasContinue() bool + func (o *RouteSerializer) HasGroupBy() bool + func (o *RouteSerializer) HasGroupInterval() bool + func (o *RouteSerializer) HasGroupWait() bool + func (o *RouteSerializer) HasMatch() bool + func (o *RouteSerializer) HasMatchRe() bool + func (o *RouteSerializer) HasMatchers() bool + func (o *RouteSerializer) HasRepeatInterval() bool + func (o *RouteSerializer) HasRoutes() bool + func (o *RouteSerializer) SetContinue(v bool) + func (o *RouteSerializer) SetGroupBy(v []string) + func (o *RouteSerializer) SetGroupInterval(v string) + func (o *RouteSerializer) SetGroupWait(v string) + func (o *RouteSerializer) SetMatch(v map[string]string) + func (o *RouteSerializer) SetMatchRe(v map[string]string) + func (o *RouteSerializer) SetMatchers(v []string) + func (o *RouteSerializer) SetReceiver(v string) + func (o *RouteSerializer) SetRepeatInterval(v string) + func (o *RouteSerializer) SetRoutes(v []map[string]string) + func (o *RouteSerializer) UnmarshalJSON(data []byte) (err error) + func (o RouteSerializer) MarshalJSON() ([]byte, error) + func (o RouteSerializer) ToMap() (map[string]interface{}, error) + type ScrapeConfigsResponse struct + Data []Job + Message string + func NewScrapeConfigsResponse(data []Job, message string) *ScrapeConfigsResponse + func NewScrapeConfigsResponseWithDefaults() *ScrapeConfigsResponse + func (o *ScrapeConfigsResponse) GetData() []Job + func (o *ScrapeConfigsResponse) GetDataOk() ([]Job, bool) + func (o *ScrapeConfigsResponse) GetMessage() string + func (o *ScrapeConfigsResponse) GetMessageOk() (*string, bool) + func (o *ScrapeConfigsResponse) SetData(v []Job) + func (o *ScrapeConfigsResponse) SetMessage(v string) + func (o *ScrapeConfigsResponse) UnmarshalJSON(data []byte) (err error) + func (o ScrapeConfigsResponse) MarshalJSON() ([]byte, error) + func (o ScrapeConfigsResponse) ToMap() (map[string]interface{}, error) + type ServiceKeysList struct + CredentialsInfo *map[string]string + Description *string + Id string + Name string + func NewServiceKeysList(id string, name string) *ServiceKeysList + func NewServiceKeysListWithDefaults() *ServiceKeysList + func (o *ServiceKeysList) GetCredentialsInfo() map[string]string + func (o *ServiceKeysList) GetCredentialsInfoOk() (*map[string]string, bool) + func (o *ServiceKeysList) GetDescription() string + func (o *ServiceKeysList) GetDescriptionOk() (*string, bool) + func (o *ServiceKeysList) GetId() string + func (o *ServiceKeysList) GetIdOk() (*string, bool) + func (o *ServiceKeysList) GetName() string + func (o *ServiceKeysList) GetNameOk() (*string, bool) + func (o *ServiceKeysList) HasCredentialsInfo() bool + func (o *ServiceKeysList) HasDescription() bool + func (o *ServiceKeysList) SetCredentialsInfo(v map[string]string) + func (o *ServiceKeysList) SetDescription(v string) + func (o *ServiceKeysList) SetId(v string) + func (o *ServiceKeysList) SetName(v string) + func (o *ServiceKeysList) UnmarshalJSON(data []byte) (err error) + func (o ServiceKeysList) MarshalJSON() ([]byte, error) + func (o ServiceKeysList) ToMap() (map[string]interface{}, error) + type StaticConfigs struct + Labels *map[string]string + Targets []string + func NewStaticConfigs(targets []string) *StaticConfigs + func NewStaticConfigsWithDefaults() *StaticConfigs + func (o *StaticConfigs) GetLabels() map[string]string + func (o *StaticConfigs) GetLabelsOk() (*map[string]string, bool) + func (o *StaticConfigs) GetTargets() []string + func (o *StaticConfigs) GetTargetsOk() ([]string, bool) + func (o *StaticConfigs) HasLabels() bool + func (o *StaticConfigs) SetLabels(v map[string]string) + func (o *StaticConfigs) SetTargets(v []string) + func (o *StaticConfigs) UnmarshalJSON(data []byte) (err error) + func (o StaticConfigs) MarshalJSON() ([]byte, error) + func (o StaticConfigs) ToMap() (map[string]interface{}, error) + type TLSConfig struct + InsecureSkipVerify *bool + func NewTLSConfig() *TLSConfig + func NewTLSConfigWithDefaults() *TLSConfig + func (o *TLSConfig) GetInsecureSkipVerify() bool + func (o *TLSConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *TLSConfig) HasInsecureSkipVerify() bool + func (o *TLSConfig) SetInsecureSkipVerify(v bool) + func (o TLSConfig) MarshalJSON() ([]byte, error) + func (o TLSConfig) ToMap() (map[string]interface{}, error) + type TraceConfig struct + Retention string + func NewTraceConfig(retention string) *TraceConfig + func NewTraceConfigWithDefaults() *TraceConfig + func (o *TraceConfig) GetRetention() string + func (o *TraceConfig) GetRetentionOk() (*string, bool) + func (o *TraceConfig) SetRetention(v string) + func (o *TraceConfig) UnmarshalJSON(data []byte) (err error) + func (o TraceConfig) MarshalJSON() ([]byte, error) + func (o TraceConfig) ToMap() (map[string]interface{}, error) + type TracesConfigResponse struct + Config TraceConfig + Message string + func NewTracesConfigResponse(config TraceConfig, message string) *TracesConfigResponse + func NewTracesConfigResponseWithDefaults() *TracesConfigResponse + func (o *TracesConfigResponse) GetConfig() TraceConfig + func (o *TracesConfigResponse) GetConfigOk() (*TraceConfig, bool) + func (o *TracesConfigResponse) GetMessage() string + func (o *TracesConfigResponse) GetMessageOk() (*string, bool) + func (o *TracesConfigResponse) SetConfig(v TraceConfig) + func (o *TracesConfigResponse) SetMessage(v string) + func (o *TracesConfigResponse) UnmarshalJSON(data []byte) (err error) + func (o TracesConfigResponse) MarshalJSON() ([]byte, error) + func (o TracesConfigResponse) ToMap() (map[string]interface{}, error) + type UpdateACLPayload struct + Acl []string + func NewUpdateACLPayload(acl []string) *UpdateACLPayload + func NewUpdateACLPayloadWithDefaults() *UpdateACLPayload + func (o *UpdateACLPayload) GetAcl() []string + func (o *UpdateACLPayload) GetAclOk() ([]string, bool) + func (o *UpdateACLPayload) SetAcl(v []string) + func (o *UpdateACLPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateACLPayload) MarshalJSON() ([]byte, error) + func (o UpdateACLPayload) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigReceiverPayload struct + EmailConfigs []UpdateAlertConfigReceiverPayloadEmailConfigsInner + Name string + OpsgenieConfigs []UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + WebHookConfigs []UpdateAlertConfigReceiverPayloadWebHookConfigsInner + func NewUpdateAlertConfigReceiverPayload(name string) *UpdateAlertConfigReceiverPayload + func NewUpdateAlertConfigReceiverPayloadWithDefaults() *UpdateAlertConfigReceiverPayload + func (o *UpdateAlertConfigReceiverPayload) GetEmailConfigs() []UpdateAlertConfigReceiverPayloadEmailConfigsInner + func (o *UpdateAlertConfigReceiverPayload) GetEmailConfigsOk() ([]UpdateAlertConfigReceiverPayloadEmailConfigsInner, bool) + func (o *UpdateAlertConfigReceiverPayload) GetName() string + func (o *UpdateAlertConfigReceiverPayload) GetNameOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayload) GetOpsgenieConfigs() []UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (o *UpdateAlertConfigReceiverPayload) GetOpsgenieConfigsOk() ([]UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner, bool) + func (o *UpdateAlertConfigReceiverPayload) GetWebHookConfigs() []UpdateAlertConfigReceiverPayloadWebHookConfigsInner + func (o *UpdateAlertConfigReceiverPayload) GetWebHookConfigsOk() ([]UpdateAlertConfigReceiverPayloadWebHookConfigsInner, bool) + func (o *UpdateAlertConfigReceiverPayload) HasEmailConfigs() bool + func (o *UpdateAlertConfigReceiverPayload) HasOpsgenieConfigs() bool + func (o *UpdateAlertConfigReceiverPayload) HasWebHookConfigs() bool + func (o *UpdateAlertConfigReceiverPayload) SetEmailConfigs(v []UpdateAlertConfigReceiverPayloadEmailConfigsInner) + func (o *UpdateAlertConfigReceiverPayload) SetName(v string) + func (o *UpdateAlertConfigReceiverPayload) SetOpsgenieConfigs(v []UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) + func (o *UpdateAlertConfigReceiverPayload) SetWebHookConfigs(v []UpdateAlertConfigReceiverPayloadWebHookConfigsInner) + func (o *UpdateAlertConfigReceiverPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigReceiverPayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigReceiverPayload) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigReceiverPayloadEmailConfigsInner struct + AuthIdentity *string + AuthPassword *string + AuthUsername *string + From *string + SendResolved *bool + Smarthost *string + To *string + func NewUpdateAlertConfigReceiverPayloadEmailConfigsInner() *UpdateAlertConfigReceiverPayloadEmailConfigsInner + func NewUpdateAlertConfigReceiverPayloadEmailConfigsInnerWithDefaults() *UpdateAlertConfigReceiverPayloadEmailConfigsInner + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthIdentity() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthIdentityOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthPassword() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthPasswordOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthUsername() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetAuthUsernameOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetFrom() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetFromOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetSmarthost() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetSmarthostOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetTo() string + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) GetToOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthIdentity() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthPassword() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasAuthUsername() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasFrom() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasSmarthost() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) HasTo() bool + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthIdentity(v string) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthPassword(v string) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetAuthUsername(v string) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetFrom(v string) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetSmarthost(v string) + func (o *UpdateAlertConfigReceiverPayloadEmailConfigsInner) SetTo(v string) + func (o UpdateAlertConfigReceiverPayloadEmailConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigReceiverPayloadEmailConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner struct + ApiKey *string + ApiUrl *string + Priority *string + SendResolved *bool + Tags *string + func NewUpdateAlertConfigReceiverPayloadOpsgenieConfigsInner() *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + func NewUpdateAlertConfigReceiverPayloadOpsgenieConfigsInnerWithDefaults() *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiKey() string + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiKeyOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiUrl() string + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetApiUrlOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetPriority() string + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetPriorityOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetTags() string + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) GetTagsOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasApiKey() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasApiUrl() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasPriority() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) HasTags() bool + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetApiKey(v string) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetApiUrl(v string) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetPriority(v string) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) SetTags(v string) + func (o UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigReceiverPayloadOpsgenieConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigReceiverPayloadWebHookConfigsInner struct + GoogleChat *bool + MsTeams *bool + SendResolved *bool + Url *string + func NewUpdateAlertConfigReceiverPayloadWebHookConfigsInner() *UpdateAlertConfigReceiverPayloadWebHookConfigsInner + func NewUpdateAlertConfigReceiverPayloadWebHookConfigsInnerWithDefaults() *UpdateAlertConfigReceiverPayloadWebHookConfigsInner + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetGoogleChat() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetGoogleChatOk() (*bool, bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetMsTeams() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetMsTeamsOk() (*bool, bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetUrl() string + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) GetUrlOk() (*string, bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) HasGoogleChat() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) HasMsTeams() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) HasUrl() bool + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) SetGoogleChat(v bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) SetMsTeams(v bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigReceiverPayloadWebHookConfigsInner) SetUrl(v string) + func (o UpdateAlertConfigReceiverPayloadWebHookConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigReceiverPayloadWebHookConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigRoutePayload struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Matchers []string + Receiver string + RepeatInterval *string + Routes []UpdateAlertConfigRoutePayloadRoutesInner + func NewUpdateAlertConfigRoutePayload(receiver string) *UpdateAlertConfigRoutePayload + func NewUpdateAlertConfigRoutePayloadWithDefaults() *UpdateAlertConfigRoutePayload + func (o *UpdateAlertConfigRoutePayload) GetContinue() bool + func (o *UpdateAlertConfigRoutePayload) GetContinueOk() (*bool, bool) + func (o *UpdateAlertConfigRoutePayload) GetGroupBy() []string + func (o *UpdateAlertConfigRoutePayload) GetGroupByOk() ([]string, bool) + func (o *UpdateAlertConfigRoutePayload) GetGroupInterval() string + func (o *UpdateAlertConfigRoutePayload) GetGroupIntervalOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayload) GetGroupWait() string + func (o *UpdateAlertConfigRoutePayload) GetGroupWaitOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayload) GetMatch() map[string]interface{} + func (o *UpdateAlertConfigRoutePayload) GetMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigRoutePayload) GetMatchRe() map[string]interface{} + func (o *UpdateAlertConfigRoutePayload) GetMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigRoutePayload) GetMatchers() []string + func (o *UpdateAlertConfigRoutePayload) GetMatchersOk() ([]string, bool) + func (o *UpdateAlertConfigRoutePayload) GetReceiver() string + func (o *UpdateAlertConfigRoutePayload) GetReceiverOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayload) GetRepeatInterval() string + func (o *UpdateAlertConfigRoutePayload) GetRepeatIntervalOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayload) GetRoutes() []UpdateAlertConfigRoutePayloadRoutesInner + func (o *UpdateAlertConfigRoutePayload) GetRoutesOk() ([]UpdateAlertConfigRoutePayloadRoutesInner, bool) + func (o *UpdateAlertConfigRoutePayload) HasContinue() bool + func (o *UpdateAlertConfigRoutePayload) HasGroupBy() bool + func (o *UpdateAlertConfigRoutePayload) HasGroupInterval() bool + func (o *UpdateAlertConfigRoutePayload) HasGroupWait() bool + func (o *UpdateAlertConfigRoutePayload) HasMatch() bool + func (o *UpdateAlertConfigRoutePayload) HasMatchRe() bool + func (o *UpdateAlertConfigRoutePayload) HasMatchers() bool + func (o *UpdateAlertConfigRoutePayload) HasRepeatInterval() bool + func (o *UpdateAlertConfigRoutePayload) HasRoutes() bool + func (o *UpdateAlertConfigRoutePayload) SetContinue(v bool) + func (o *UpdateAlertConfigRoutePayload) SetGroupBy(v []string) + func (o *UpdateAlertConfigRoutePayload) SetGroupInterval(v string) + func (o *UpdateAlertConfigRoutePayload) SetGroupWait(v string) + func (o *UpdateAlertConfigRoutePayload) SetMatch(v map[string]interface{}) + func (o *UpdateAlertConfigRoutePayload) SetMatchRe(v map[string]interface{}) + func (o *UpdateAlertConfigRoutePayload) SetMatchers(v []string) + func (o *UpdateAlertConfigRoutePayload) SetReceiver(v string) + func (o *UpdateAlertConfigRoutePayload) SetRepeatInterval(v string) + func (o *UpdateAlertConfigRoutePayload) SetRoutes(v []UpdateAlertConfigRoutePayloadRoutesInner) + func (o *UpdateAlertConfigRoutePayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigRoutePayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigRoutePayload) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigRoutePayloadRoutesInner struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Matchers []string + Receiver *string + RepeatInterval *string + Routes []map[string]interface{} + func NewUpdateAlertConfigRoutePayloadRoutesInner() *UpdateAlertConfigRoutePayloadRoutesInner + func NewUpdateAlertConfigRoutePayloadRoutesInnerWithDefaults() *UpdateAlertConfigRoutePayloadRoutesInner + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetContinue() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetContinueOk() (*bool, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupBy() []string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupByOk() ([]string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupInterval() string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupIntervalOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupWait() string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetGroupWaitOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatch() map[string]interface{} + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatchRe() map[string]interface{} + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatchers() []string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetMatchersOk() ([]string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetReceiver() string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetReceiverOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetRepeatInterval() string + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetRepeatIntervalOk() (*string, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetRoutes() []map[string]interface{} + func (o *UpdateAlertConfigRoutePayloadRoutesInner) GetRoutesOk() ([]map[string]interface{}, bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasContinue() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasGroupBy() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasGroupInterval() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasGroupWait() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasMatch() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasMatchRe() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasMatchers() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasReceiver() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasRepeatInterval() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) HasRoutes() bool + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetContinue(v bool) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetGroupBy(v []string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetGroupInterval(v string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetGroupWait(v string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetMatch(v map[string]interface{}) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetMatchRe(v map[string]interface{}) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetMatchers(v []string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetReceiver(v string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetRepeatInterval(v string) + func (o *UpdateAlertConfigRoutePayloadRoutesInner) SetRoutes(v []map[string]interface{}) + func (o UpdateAlertConfigRoutePayloadRoutesInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigRoutePayloadRoutesInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayload struct + Global *UpdateAlertConfigsPayloadGlobal + InhibitRules *UpdateAlertConfigsPayloadInhibitRules + Receivers []UpdateAlertConfigsPayloadReceiversInner + Route UpdateAlertConfigsPayloadRoute + func NewUpdateAlertConfigsPayload(receivers []UpdateAlertConfigsPayloadReceiversInner, ...) *UpdateAlertConfigsPayload + func NewUpdateAlertConfigsPayloadWithDefaults() *UpdateAlertConfigsPayload + func (o *UpdateAlertConfigsPayload) GetGlobal() UpdateAlertConfigsPayloadGlobal + func (o *UpdateAlertConfigsPayload) GetGlobalOk() (*UpdateAlertConfigsPayloadGlobal, bool) + func (o *UpdateAlertConfigsPayload) GetInhibitRules() UpdateAlertConfigsPayloadInhibitRules + func (o *UpdateAlertConfigsPayload) GetInhibitRulesOk() (*UpdateAlertConfigsPayloadInhibitRules, bool) + func (o *UpdateAlertConfigsPayload) GetReceivers() []UpdateAlertConfigsPayloadReceiversInner + func (o *UpdateAlertConfigsPayload) GetReceiversOk() ([]UpdateAlertConfigsPayloadReceiversInner, bool) + func (o *UpdateAlertConfigsPayload) GetRoute() UpdateAlertConfigsPayloadRoute + func (o *UpdateAlertConfigsPayload) GetRouteOk() (*UpdateAlertConfigsPayloadRoute, bool) + func (o *UpdateAlertConfigsPayload) HasGlobal() bool + func (o *UpdateAlertConfigsPayload) HasInhibitRules() bool + func (o *UpdateAlertConfigsPayload) SetGlobal(v UpdateAlertConfigsPayloadGlobal) + func (o *UpdateAlertConfigsPayload) SetInhibitRules(v UpdateAlertConfigsPayloadInhibitRules) + func (o *UpdateAlertConfigsPayload) SetReceivers(v []UpdateAlertConfigsPayloadReceiversInner) + func (o *UpdateAlertConfigsPayload) SetRoute(v UpdateAlertConfigsPayloadRoute) + func (o *UpdateAlertConfigsPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigsPayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayload) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadGlobal struct + OpsgenieApiKey *string + OpsgenieApiUrl *string + ResolveTimeout *string + SmtpAuthIdentity *string + SmtpAuthPassword *string + SmtpAuthUsername *string + SmtpFrom *string + SmtpSmarthost *string + func NewUpdateAlertConfigsPayloadGlobal() *UpdateAlertConfigsPayloadGlobal + func NewUpdateAlertConfigsPayloadGlobalWithDefaults() *UpdateAlertConfigsPayloadGlobal + func (o *UpdateAlertConfigsPayloadGlobal) GetOpsgenieApiKey() string + func (o *UpdateAlertConfigsPayloadGlobal) GetOpsgenieApiKeyOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetOpsgenieApiUrl() string + func (o *UpdateAlertConfigsPayloadGlobal) GetOpsgenieApiUrlOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetResolveTimeout() string + func (o *UpdateAlertConfigsPayloadGlobal) GetResolveTimeoutOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthIdentity() string + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthIdentityOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthPassword() string + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthPasswordOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthUsername() string + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpAuthUsernameOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpFrom() string + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpFromOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpSmarthost() string + func (o *UpdateAlertConfigsPayloadGlobal) GetSmtpSmarthostOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadGlobal) HasOpsgenieApiKey() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasOpsgenieApiUrl() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasResolveTimeout() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasSmtpAuthIdentity() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasSmtpAuthPassword() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasSmtpAuthUsername() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasSmtpFrom() bool + func (o *UpdateAlertConfigsPayloadGlobal) HasSmtpSmarthost() bool + func (o *UpdateAlertConfigsPayloadGlobal) SetOpsgenieApiKey(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetOpsgenieApiUrl(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetResolveTimeout(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetSmtpAuthIdentity(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetSmtpAuthPassword(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetSmtpAuthUsername(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetSmtpFrom(v string) + func (o *UpdateAlertConfigsPayloadGlobal) SetSmtpSmarthost(v string) + func (o UpdateAlertConfigsPayloadGlobal) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadGlobal) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadInhibitRules struct + Equal []string + SourceMatch map[string]interface{} + SourceMatchRe map[string]interface{} + TargetMatch map[string]interface{} + TargetMatchRe map[string]interface{} + func NewUpdateAlertConfigsPayloadInhibitRules() *UpdateAlertConfigsPayloadInhibitRules + func NewUpdateAlertConfigsPayloadInhibitRulesWithDefaults() *UpdateAlertConfigsPayloadInhibitRules + func (o *UpdateAlertConfigsPayloadInhibitRules) GetEqual() []string + func (o *UpdateAlertConfigsPayloadInhibitRules) GetEqualOk() ([]string, bool) + func (o *UpdateAlertConfigsPayloadInhibitRules) GetSourceMatch() map[string]interface{} + func (o *UpdateAlertConfigsPayloadInhibitRules) GetSourceMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadInhibitRules) GetSourceMatchRe() map[string]interface{} + func (o *UpdateAlertConfigsPayloadInhibitRules) GetSourceMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadInhibitRules) GetTargetMatch() map[string]interface{} + func (o *UpdateAlertConfigsPayloadInhibitRules) GetTargetMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadInhibitRules) GetTargetMatchRe() map[string]interface{} + func (o *UpdateAlertConfigsPayloadInhibitRules) GetTargetMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadInhibitRules) HasEqual() bool + func (o *UpdateAlertConfigsPayloadInhibitRules) HasSourceMatch() bool + func (o *UpdateAlertConfigsPayloadInhibitRules) HasSourceMatchRe() bool + func (o *UpdateAlertConfigsPayloadInhibitRules) HasTargetMatch() bool + func (o *UpdateAlertConfigsPayloadInhibitRules) HasTargetMatchRe() bool + func (o *UpdateAlertConfigsPayloadInhibitRules) SetEqual(v []string) + func (o *UpdateAlertConfigsPayloadInhibitRules) SetSourceMatch(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadInhibitRules) SetSourceMatchRe(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadInhibitRules) SetTargetMatch(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadInhibitRules) SetTargetMatchRe(v map[string]interface{}) + func (o UpdateAlertConfigsPayloadInhibitRules) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadInhibitRules) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadReceiversInner struct + EmailConfigs []UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + Name string + OpsgenieConfigs []UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + WebHookConfigs []UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func NewUpdateAlertConfigsPayloadReceiversInner(name string) *UpdateAlertConfigsPayloadReceiversInner + func NewUpdateAlertConfigsPayloadReceiversInnerWithDefaults() *UpdateAlertConfigsPayloadReceiversInner + func (o *UpdateAlertConfigsPayloadReceiversInner) GetEmailConfigs() []UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInner) GetEmailConfigsOk() ([]UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner, bool) + func (o *UpdateAlertConfigsPayloadReceiversInner) GetName() string + func (o *UpdateAlertConfigsPayloadReceiversInner) GetNameOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInner) GetOpsgenieConfigs() []UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInner) GetOpsgenieConfigsOk() ([]UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner, bool) + func (o *UpdateAlertConfigsPayloadReceiversInner) GetWebHookConfigs() []UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInner) GetWebHookConfigsOk() ([]UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner, bool) + func (o *UpdateAlertConfigsPayloadReceiversInner) HasEmailConfigs() bool + func (o *UpdateAlertConfigsPayloadReceiversInner) HasOpsgenieConfigs() bool + func (o *UpdateAlertConfigsPayloadReceiversInner) HasWebHookConfigs() bool + func (o *UpdateAlertConfigsPayloadReceiversInner) SetEmailConfigs(v []UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) + func (o *UpdateAlertConfigsPayloadReceiversInner) SetName(v string) + func (o *UpdateAlertConfigsPayloadReceiversInner) SetOpsgenieConfigs(v []UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) + func (o *UpdateAlertConfigsPayloadReceiversInner) SetWebHookConfigs(v []UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) + func (o *UpdateAlertConfigsPayloadReceiversInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigsPayloadReceiversInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadReceiversInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner struct + AuthIdentity *string + AuthPassword *string + AuthUsername *string + From *string + SendResolved *bool + Smarthost *string + To *string + func NewUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner() *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + func NewUpdateAlertConfigsPayloadReceiversInnerEmailConfigsInnerWithDefaults() *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthIdentity() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthIdentityOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthPassword() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthPasswordOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthUsername() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetAuthUsernameOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetFrom() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetFromOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetSmarthost() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetSmarthostOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetTo() string + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) GetToOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasAuthIdentity() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasAuthPassword() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasAuthUsername() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasFrom() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasSmarthost() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) HasTo() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetAuthIdentity(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetAuthPassword(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetAuthUsername(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetFrom(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetSmarthost(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) SetTo(v string) + func (o UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadReceiversInnerEmailConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner struct + ApiKey *string + ApiUrl *string + Priority *string + SendResolved *bool + Tags *string + func NewUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner() *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + func NewUpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInnerWithDefaults() *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetApiKey() string + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetApiKeyOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetApiUrl() string + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetApiUrlOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetPriority() string + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetPriorityOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetTags() string + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) GetTagsOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) HasApiKey() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) HasApiUrl() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) HasPriority() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) HasTags() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) SetApiKey(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) SetApiUrl(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) SetPriority(v string) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) SetTags(v string) + func (o UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadReceiversInnerOpsgenieConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner struct + GoogleChat *bool + MsTeams *bool + SendResolved *bool + Url *string + func NewUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner() *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func NewUpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInnerWithDefaults() *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetGoogleChat() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetGoogleChatOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetMsTeams() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetMsTeamsOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetSendResolvedOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetUrl() string + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) GetUrlOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) HasGoogleChat() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) HasMsTeams() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) HasSendResolved() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) HasUrl() bool + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) SetGoogleChat(v bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) SetMsTeams(v bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) SetSendResolved(v bool) + func (o *UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) SetUrl(v string) + func (o UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadReceiversInnerWebHookConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadRoute struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Receiver string + RepeatInterval *string + Routes []UpdateAlertConfigsPayloadRouteRoutesInner + func NewUpdateAlertConfigsPayloadRoute(receiver string) *UpdateAlertConfigsPayloadRoute + func NewUpdateAlertConfigsPayloadRouteWithDefaults() *UpdateAlertConfigsPayloadRoute + func (o *UpdateAlertConfigsPayloadRoute) GetContinue() bool + func (o *UpdateAlertConfigsPayloadRoute) GetContinueOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetGroupBy() []string + func (o *UpdateAlertConfigsPayloadRoute) GetGroupByOk() ([]string, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetGroupInterval() string + func (o *UpdateAlertConfigsPayloadRoute) GetGroupIntervalOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetGroupWait() string + func (o *UpdateAlertConfigsPayloadRoute) GetGroupWaitOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetMatch() map[string]interface{} + func (o *UpdateAlertConfigsPayloadRoute) GetMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetMatchRe() map[string]interface{} + func (o *UpdateAlertConfigsPayloadRoute) GetMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetReceiver() string + func (o *UpdateAlertConfigsPayloadRoute) GetReceiverOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetRepeatInterval() string + func (o *UpdateAlertConfigsPayloadRoute) GetRepeatIntervalOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRoute) GetRoutes() []UpdateAlertConfigsPayloadRouteRoutesInner + func (o *UpdateAlertConfigsPayloadRoute) GetRoutesOk() ([]UpdateAlertConfigsPayloadRouteRoutesInner, bool) + func (o *UpdateAlertConfigsPayloadRoute) HasContinue() bool + func (o *UpdateAlertConfigsPayloadRoute) HasGroupBy() bool + func (o *UpdateAlertConfigsPayloadRoute) HasGroupInterval() bool + func (o *UpdateAlertConfigsPayloadRoute) HasGroupWait() bool + func (o *UpdateAlertConfigsPayloadRoute) HasMatch() bool + func (o *UpdateAlertConfigsPayloadRoute) HasMatchRe() bool + func (o *UpdateAlertConfigsPayloadRoute) HasRepeatInterval() bool + func (o *UpdateAlertConfigsPayloadRoute) HasRoutes() bool + func (o *UpdateAlertConfigsPayloadRoute) SetContinue(v bool) + func (o *UpdateAlertConfigsPayloadRoute) SetGroupBy(v []string) + func (o *UpdateAlertConfigsPayloadRoute) SetGroupInterval(v string) + func (o *UpdateAlertConfigsPayloadRoute) SetGroupWait(v string) + func (o *UpdateAlertConfigsPayloadRoute) SetMatch(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadRoute) SetMatchRe(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadRoute) SetReceiver(v string) + func (o *UpdateAlertConfigsPayloadRoute) SetRepeatInterval(v string) + func (o *UpdateAlertConfigsPayloadRoute) SetRoutes(v []UpdateAlertConfigsPayloadRouteRoutesInner) + func (o *UpdateAlertConfigsPayloadRoute) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigsPayloadRoute) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadRoute) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsPayloadRouteRoutesInner struct + Continue *bool + GroupBy []string + GroupInterval *string + GroupWait *string + Match map[string]interface{} + MatchRe map[string]interface{} + Matchers []string + Receiver *string + RepeatInterval *string + Routes []map[string]interface{} + func NewUpdateAlertConfigsPayloadRouteRoutesInner() *UpdateAlertConfigsPayloadRouteRoutesInner + func NewUpdateAlertConfigsPayloadRouteRoutesInnerWithDefaults() *UpdateAlertConfigsPayloadRouteRoutesInner + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetContinue() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetContinueOk() (*bool, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupBy() []string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupByOk() ([]string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupInterval() string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupIntervalOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupWait() string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetGroupWaitOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatch() map[string]interface{} + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatchOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatchRe() map[string]interface{} + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatchReOk() (map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatchers() []string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetMatchersOk() ([]string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetReceiver() string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetReceiverOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetRepeatInterval() string + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetRepeatIntervalOk() (*string, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetRoutes() []map[string]interface{} + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) GetRoutesOk() ([]map[string]interface{}, bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasContinue() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasGroupBy() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasGroupInterval() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasGroupWait() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasMatch() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasMatchRe() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasMatchers() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasReceiver() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasRepeatInterval() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) HasRoutes() bool + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetContinue(v bool) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetGroupBy(v []string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetGroupInterval(v string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetGroupWait(v string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetMatch(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetMatchRe(v map[string]interface{}) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetMatchers(v []string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetReceiver(v string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetRepeatInterval(v string) + func (o *UpdateAlertConfigsPayloadRouteRoutesInner) SetRoutes(v []map[string]interface{}) + func (o UpdateAlertConfigsPayloadRouteRoutesInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsPayloadRouteRoutesInner) ToMap() (map[string]interface{}, error) + type UpdateAlertConfigsResponse struct + Data Alert + Message string + func NewUpdateAlertConfigsResponse(data Alert, message string) *UpdateAlertConfigsResponse + func NewUpdateAlertConfigsResponseWithDefaults() *UpdateAlertConfigsResponse + func (o *UpdateAlertConfigsResponse) GetData() Alert + func (o *UpdateAlertConfigsResponse) GetDataOk() (*Alert, bool) + func (o *UpdateAlertConfigsResponse) GetMessage() string + func (o *UpdateAlertConfigsResponse) GetMessageOk() (*string, bool) + func (o *UpdateAlertConfigsResponse) SetData(v Alert) + func (o *UpdateAlertConfigsResponse) SetMessage(v string) + func (o *UpdateAlertConfigsResponse) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertConfigsResponse) MarshalJSON() ([]byte, error) + func (o UpdateAlertConfigsResponse) ToMap() (map[string]interface{}, error) + type UpdateAlertRecordPayload struct + Expr string + Labels map[string]interface{} + func NewUpdateAlertRecordPayload(expr string) *UpdateAlertRecordPayload + func NewUpdateAlertRecordPayloadWithDefaults() *UpdateAlertRecordPayload + func (o *UpdateAlertRecordPayload) GetExpr() string + func (o *UpdateAlertRecordPayload) GetExprOk() (*string, bool) + func (o *UpdateAlertRecordPayload) GetLabels() map[string]interface{} + func (o *UpdateAlertRecordPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateAlertRecordPayload) HasLabels() bool + func (o *UpdateAlertRecordPayload) SetExpr(v string) + func (o *UpdateAlertRecordPayload) SetLabels(v map[string]interface{}) + func (o *UpdateAlertRecordPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertRecordPayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertRecordPayload) ToMap() (map[string]interface{}, error) + type UpdateAlertgroupPayload struct + Interval *string + Rules []UpdateAlertgroupPayloadRulesInner + func NewUpdateAlertgroupPayload(rules []UpdateAlertgroupPayloadRulesInner) *UpdateAlertgroupPayload + func NewUpdateAlertgroupPayloadWithDefaults() *UpdateAlertgroupPayload + func (o *UpdateAlertgroupPayload) GetInterval() string + func (o *UpdateAlertgroupPayload) GetIntervalOk() (*string, bool) + func (o *UpdateAlertgroupPayload) GetRules() []UpdateAlertgroupPayloadRulesInner + func (o *UpdateAlertgroupPayload) GetRulesOk() ([]UpdateAlertgroupPayloadRulesInner, bool) + func (o *UpdateAlertgroupPayload) HasInterval() bool + func (o *UpdateAlertgroupPayload) SetInterval(v string) + func (o *UpdateAlertgroupPayload) SetRules(v []UpdateAlertgroupPayloadRulesInner) + func (o *UpdateAlertgroupPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertgroupPayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertgroupPayload) ToMap() (map[string]interface{}, error) + type UpdateAlertgroupPayloadRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewUpdateAlertgroupPayloadRulesInner(expr string) *UpdateAlertgroupPayloadRulesInner + func NewUpdateAlertgroupPayloadRulesInnerWithDefaults() *UpdateAlertgroupPayloadRulesInner + func (o *UpdateAlertgroupPayloadRulesInner) GetAlert() string + func (o *UpdateAlertgroupPayloadRulesInner) GetAlertOk() (*string, bool) + func (o *UpdateAlertgroupPayloadRulesInner) GetAnnotations() map[string]interface{} + func (o *UpdateAlertgroupPayloadRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *UpdateAlertgroupPayloadRulesInner) GetExpr() string + func (o *UpdateAlertgroupPayloadRulesInner) GetExprOk() (*string, bool) + func (o *UpdateAlertgroupPayloadRulesInner) GetFor() string + func (o *UpdateAlertgroupPayloadRulesInner) GetForOk() (*string, bool) + func (o *UpdateAlertgroupPayloadRulesInner) GetLabels() map[string]interface{} + func (o *UpdateAlertgroupPayloadRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateAlertgroupPayloadRulesInner) GetRecord() string + func (o *UpdateAlertgroupPayloadRulesInner) GetRecordOk() (*string, bool) + func (o *UpdateAlertgroupPayloadRulesInner) HasAlert() bool + func (o *UpdateAlertgroupPayloadRulesInner) HasAnnotations() bool + func (o *UpdateAlertgroupPayloadRulesInner) HasFor() bool + func (o *UpdateAlertgroupPayloadRulesInner) HasLabels() bool + func (o *UpdateAlertgroupPayloadRulesInner) HasRecord() bool + func (o *UpdateAlertgroupPayloadRulesInner) SetAlert(v string) + func (o *UpdateAlertgroupPayloadRulesInner) SetAnnotations(v map[string]interface{}) + func (o *UpdateAlertgroupPayloadRulesInner) SetExpr(v string) + func (o *UpdateAlertgroupPayloadRulesInner) SetFor(v string) + func (o *UpdateAlertgroupPayloadRulesInner) SetLabels(v map[string]interface{}) + func (o *UpdateAlertgroupPayloadRulesInner) SetRecord(v string) + func (o *UpdateAlertgroupPayloadRulesInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertgroupPayloadRulesInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertgroupPayloadRulesInner) ToMap() (map[string]interface{}, error) + type UpdateAlertgroupsRequestInner struct + Interval *string + Name string + Rules []UpdateAlertgroupsRequestInnerRulesInner + func NewUpdateAlertgroupsRequestInner(name string, rules []UpdateAlertgroupsRequestInnerRulesInner) *UpdateAlertgroupsRequestInner + func NewUpdateAlertgroupsRequestInnerWithDefaults() *UpdateAlertgroupsRequestInner + func (o *UpdateAlertgroupsRequestInner) GetInterval() string + func (o *UpdateAlertgroupsRequestInner) GetIntervalOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInner) GetName() string + func (o *UpdateAlertgroupsRequestInner) GetNameOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInner) GetRules() []UpdateAlertgroupsRequestInnerRulesInner + func (o *UpdateAlertgroupsRequestInner) GetRulesOk() ([]UpdateAlertgroupsRequestInnerRulesInner, bool) + func (o *UpdateAlertgroupsRequestInner) HasInterval() bool + func (o *UpdateAlertgroupsRequestInner) SetInterval(v string) + func (o *UpdateAlertgroupsRequestInner) SetName(v string) + func (o *UpdateAlertgroupsRequestInner) SetRules(v []UpdateAlertgroupsRequestInnerRulesInner) + func (o *UpdateAlertgroupsRequestInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertgroupsRequestInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertgroupsRequestInner) ToMap() (map[string]interface{}, error) + type UpdateAlertgroupsRequestInnerRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewUpdateAlertgroupsRequestInnerRulesInner(expr string) *UpdateAlertgroupsRequestInnerRulesInner + func NewUpdateAlertgroupsRequestInnerRulesInnerWithDefaults() *UpdateAlertgroupsRequestInnerRulesInner + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetAlert() string + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetAlertOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetAnnotations() map[string]interface{} + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetExpr() string + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetExprOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetFor() string + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetForOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetLabels() map[string]interface{} + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetRecord() string + func (o *UpdateAlertgroupsRequestInnerRulesInner) GetRecordOk() (*string, bool) + func (o *UpdateAlertgroupsRequestInnerRulesInner) HasAlert() bool + func (o *UpdateAlertgroupsRequestInnerRulesInner) HasAnnotations() bool + func (o *UpdateAlertgroupsRequestInnerRulesInner) HasFor() bool + func (o *UpdateAlertgroupsRequestInnerRulesInner) HasLabels() bool + func (o *UpdateAlertgroupsRequestInnerRulesInner) HasRecord() bool + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetAlert(v string) + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetAnnotations(v map[string]interface{}) + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetExpr(v string) + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetFor(v string) + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetLabels(v map[string]interface{}) + func (o *UpdateAlertgroupsRequestInnerRulesInner) SetRecord(v string) + func (o *UpdateAlertgroupsRequestInnerRulesInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertgroupsRequestInnerRulesInner) MarshalJSON() ([]byte, error) + func (o UpdateAlertgroupsRequestInnerRulesInner) ToMap() (map[string]interface{}, error) + type UpdateAlertrulePayload struct + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + func NewUpdateAlertrulePayload(expr string) *UpdateAlertrulePayload + func NewUpdateAlertrulePayloadWithDefaults() *UpdateAlertrulePayload + func (o *UpdateAlertrulePayload) GetAnnotations() map[string]interface{} + func (o *UpdateAlertrulePayload) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *UpdateAlertrulePayload) GetExpr() string + func (o *UpdateAlertrulePayload) GetExprOk() (*string, bool) + func (o *UpdateAlertrulePayload) GetFor() string + func (o *UpdateAlertrulePayload) GetForOk() (*string, bool) + func (o *UpdateAlertrulePayload) GetLabels() map[string]interface{} + func (o *UpdateAlertrulePayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateAlertrulePayload) HasAnnotations() bool + func (o *UpdateAlertrulePayload) HasFor() bool + func (o *UpdateAlertrulePayload) HasLabels() bool + func (o *UpdateAlertrulePayload) SetAnnotations(v map[string]interface{}) + func (o *UpdateAlertrulePayload) SetExpr(v string) + func (o *UpdateAlertrulePayload) SetFor(v string) + func (o *UpdateAlertrulePayload) SetLabels(v map[string]interface{}) + func (o *UpdateAlertrulePayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateAlertrulePayload) MarshalJSON() ([]byte, error) + func (o UpdateAlertrulePayload) ToMap() (map[string]interface{}, error) + type UpdateCredentialsRemoteWriteConfigPayload struct + MaxLimit *float32 + func NewUpdateCredentialsRemoteWriteConfigPayload() *UpdateCredentialsRemoteWriteConfigPayload + func NewUpdateCredentialsRemoteWriteConfigPayloadWithDefaults() *UpdateCredentialsRemoteWriteConfigPayload + func (o *UpdateCredentialsRemoteWriteConfigPayload) GetMaxLimit() float32 + func (o *UpdateCredentialsRemoteWriteConfigPayload) GetMaxLimitOk() (*float32, bool) + func (o *UpdateCredentialsRemoteWriteConfigPayload) HasMaxLimit() bool + func (o *UpdateCredentialsRemoteWriteConfigPayload) SetMaxLimit(v float32) + func (o UpdateCredentialsRemoteWriteConfigPayload) MarshalJSON() ([]byte, error) + func (o UpdateCredentialsRemoteWriteConfigPayload) ToMap() (map[string]interface{}, error) + type UpdateGrafanaConfigsPayload struct + GenericOauth *UpdateGrafanaConfigsPayloadGenericOauth + PublicReadAccess *bool + UseStackitSso *bool + func NewUpdateGrafanaConfigsPayload() *UpdateGrafanaConfigsPayload + func NewUpdateGrafanaConfigsPayloadWithDefaults() *UpdateGrafanaConfigsPayload + func (o *UpdateGrafanaConfigsPayload) GetGenericOauth() UpdateGrafanaConfigsPayloadGenericOauth + func (o *UpdateGrafanaConfigsPayload) GetGenericOauthOk() (*UpdateGrafanaConfigsPayloadGenericOauth, bool) + func (o *UpdateGrafanaConfigsPayload) GetPublicReadAccess() bool + func (o *UpdateGrafanaConfigsPayload) GetPublicReadAccessOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayload) GetUseStackitSso() bool + func (o *UpdateGrafanaConfigsPayload) GetUseStackitSsoOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayload) HasGenericOauth() bool + func (o *UpdateGrafanaConfigsPayload) HasPublicReadAccess() bool + func (o *UpdateGrafanaConfigsPayload) HasUseStackitSso() bool + func (o *UpdateGrafanaConfigsPayload) SetGenericOauth(v UpdateGrafanaConfigsPayloadGenericOauth) + func (o *UpdateGrafanaConfigsPayload) SetPublicReadAccess(v bool) + func (o *UpdateGrafanaConfigsPayload) SetUseStackitSso(v bool) + func (o UpdateGrafanaConfigsPayload) MarshalJSON() ([]byte, error) + func (o UpdateGrafanaConfigsPayload) ToMap() (map[string]interface{}, error) + type UpdateGrafanaConfigsPayloadGenericOauth struct + AllowAssignGrafanaAdmin *bool + ApiUrl string + AuthUrl string + Enabled bool + Name *string + OauthClientId string + OauthClientSecret string + RoleAttributePath string + RoleAttributeStrict *bool + Scopes *string + TokenUrl string + UsePkce *bool + func NewUpdateGrafanaConfigsPayloadGenericOauth(apiUrl string, authUrl string, enabled bool, oauthClientId string, ...) *UpdateGrafanaConfigsPayloadGenericOauth + func NewUpdateGrafanaConfigsPayloadGenericOauthWithDefaults() *UpdateGrafanaConfigsPayloadGenericOauth + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetAllowAssignGrafanaAdmin() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetAllowAssignGrafanaAdminOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetApiUrl() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetApiUrlOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetAuthUrl() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetAuthUrlOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetEnabled() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetEnabledOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetName() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetNameOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetOauthClientId() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetOauthClientIdOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetOauthClientSecret() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetOauthClientSecretOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetRoleAttributePath() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetRoleAttributePathOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetRoleAttributeStrict() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetRoleAttributeStrictOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetScopes() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetScopesOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetTokenUrl() string + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetTokenUrlOk() (*string, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetUsePkce() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) GetUsePkceOk() (*bool, bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) HasAllowAssignGrafanaAdmin() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) HasName() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) HasRoleAttributeStrict() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) HasScopes() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) HasUsePkce() bool + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetAllowAssignGrafanaAdmin(v bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetApiUrl(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetAuthUrl(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetEnabled(v bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetName(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetOauthClientId(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetOauthClientSecret(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetRoleAttributePath(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetRoleAttributeStrict(v bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetScopes(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetTokenUrl(v string) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) SetUsePkce(v bool) + func (o *UpdateGrafanaConfigsPayloadGenericOauth) UnmarshalJSON(data []byte) (err error) + func (o UpdateGrafanaConfigsPayloadGenericOauth) MarshalJSON() ([]byte, error) + func (o UpdateGrafanaConfigsPayloadGenericOauth) ToMap() (map[string]interface{}, error) + type UpdateInstancePayload struct + GrafanaAdminEnabled *bool + Name *string + Parameter map[string]interface{} + PlanId *string + func NewUpdateInstancePayload() *UpdateInstancePayload + func NewUpdateInstancePayloadWithDefaults() *UpdateInstancePayload + func (o *UpdateInstancePayload) GetGrafanaAdminEnabled() bool + func (o *UpdateInstancePayload) GetGrafanaAdminEnabledOk() (*bool, bool) + func (o *UpdateInstancePayload) GetName() string + func (o *UpdateInstancePayload) GetNameOk() (*string, bool) + func (o *UpdateInstancePayload) GetParameter() map[string]interface{} + func (o *UpdateInstancePayload) GetParameterOk() (map[string]interface{}, bool) + func (o *UpdateInstancePayload) GetPlanId() string + func (o *UpdateInstancePayload) GetPlanIdOk() (*string, bool) + func (o *UpdateInstancePayload) HasGrafanaAdminEnabled() bool + func (o *UpdateInstancePayload) HasName() bool + func (o *UpdateInstancePayload) HasParameter() bool + func (o *UpdateInstancePayload) HasPlanId() bool + func (o *UpdateInstancePayload) SetGrafanaAdminEnabled(v bool) + func (o *UpdateInstancePayload) SetName(v string) + func (o *UpdateInstancePayload) SetParameter(v map[string]interface{}) + func (o *UpdateInstancePayload) SetPlanId(v string) + func (o UpdateInstancePayload) MarshalJSON() ([]byte, error) + func (o UpdateInstancePayload) ToMap() (map[string]interface{}, error) + type UpdateLogsAlertgroupPayload struct + Interval *string + Rules []UpdateLogsAlertgroupPayloadRulesInner + func NewUpdateLogsAlertgroupPayload(rules []UpdateLogsAlertgroupPayloadRulesInner) *UpdateLogsAlertgroupPayload + func NewUpdateLogsAlertgroupPayloadWithDefaults() *UpdateLogsAlertgroupPayload + func (o *UpdateLogsAlertgroupPayload) GetInterval() string + func (o *UpdateLogsAlertgroupPayload) GetIntervalOk() (*string, bool) + func (o *UpdateLogsAlertgroupPayload) GetRules() []UpdateLogsAlertgroupPayloadRulesInner + func (o *UpdateLogsAlertgroupPayload) GetRulesOk() ([]UpdateLogsAlertgroupPayloadRulesInner, bool) + func (o *UpdateLogsAlertgroupPayload) HasInterval() bool + func (o *UpdateLogsAlertgroupPayload) SetInterval(v string) + func (o *UpdateLogsAlertgroupPayload) SetRules(v []UpdateLogsAlertgroupPayloadRulesInner) + func (o *UpdateLogsAlertgroupPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateLogsAlertgroupPayload) MarshalJSON() ([]byte, error) + func (o UpdateLogsAlertgroupPayload) ToMap() (map[string]interface{}, error) + type UpdateLogsAlertgroupPayloadRulesInner struct + Alert *string + Annotations map[string]interface{} + Expr string + For *string + Labels map[string]interface{} + Record *string + func NewUpdateLogsAlertgroupPayloadRulesInner(expr string) *UpdateLogsAlertgroupPayloadRulesInner + func NewUpdateLogsAlertgroupPayloadRulesInnerWithDefaults() *UpdateLogsAlertgroupPayloadRulesInner + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetAlert() string + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetAlertOk() (*string, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetAnnotations() map[string]interface{} + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetAnnotationsOk() (map[string]interface{}, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetExpr() string + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetExprOk() (*string, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetFor() string + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetForOk() (*string, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetLabels() map[string]interface{} + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetRecord() string + func (o *UpdateLogsAlertgroupPayloadRulesInner) GetRecordOk() (*string, bool) + func (o *UpdateLogsAlertgroupPayloadRulesInner) HasAlert() bool + func (o *UpdateLogsAlertgroupPayloadRulesInner) HasAnnotations() bool + func (o *UpdateLogsAlertgroupPayloadRulesInner) HasFor() bool + func (o *UpdateLogsAlertgroupPayloadRulesInner) HasLabels() bool + func (o *UpdateLogsAlertgroupPayloadRulesInner) HasRecord() bool + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetAlert(v string) + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetAnnotations(v map[string]interface{}) + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetExpr(v string) + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetFor(v string) + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetLabels(v map[string]interface{}) + func (o *UpdateLogsAlertgroupPayloadRulesInner) SetRecord(v string) + func (o *UpdateLogsAlertgroupPayloadRulesInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateLogsAlertgroupPayloadRulesInner) MarshalJSON() ([]byte, error) + func (o UpdateLogsAlertgroupPayloadRulesInner) ToMap() (map[string]interface{}, error) + type UpdateLogsConfigsPayload struct + Retention string + func NewUpdateLogsConfigsPayload(retention string) *UpdateLogsConfigsPayload + func NewUpdateLogsConfigsPayloadWithDefaults() *UpdateLogsConfigsPayload + func (o *UpdateLogsConfigsPayload) GetRetention() string + func (o *UpdateLogsConfigsPayload) GetRetentionOk() (*string, bool) + func (o *UpdateLogsConfigsPayload) SetRetention(v string) + func (o *UpdateLogsConfigsPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateLogsConfigsPayload) MarshalJSON() ([]byte, error) + func (o UpdateLogsConfigsPayload) ToMap() (map[string]interface{}, error) + type UpdateMetricsStorageRetentionPayload struct + MetricsRetentionTime1h string + MetricsRetentionTime5m string + MetricsRetentionTimeRaw string + func NewUpdateMetricsStorageRetentionPayload(metricsRetentionTime1h string, metricsRetentionTime5m string, ...) *UpdateMetricsStorageRetentionPayload + func NewUpdateMetricsStorageRetentionPayloadWithDefaults() *UpdateMetricsStorageRetentionPayload + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTime1h() string + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTime1hOk() (*string, bool) + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTime5m() string + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTime5mOk() (*string, bool) + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTimeRaw() string + func (o *UpdateMetricsStorageRetentionPayload) GetMetricsRetentionTimeRawOk() (*string, bool) + func (o *UpdateMetricsStorageRetentionPayload) SetMetricsRetentionTime1h(v string) + func (o *UpdateMetricsStorageRetentionPayload) SetMetricsRetentionTime5m(v string) + func (o *UpdateMetricsStorageRetentionPayload) SetMetricsRetentionTimeRaw(v string) + func (o *UpdateMetricsStorageRetentionPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateMetricsStorageRetentionPayload) MarshalJSON() ([]byte, error) + func (o UpdateMetricsStorageRetentionPayload) ToMap() (map[string]interface{}, error) + type UpdateScrapeConfigPayload struct + BasicAuth *UpdateScrapeConfigPayloadBasicAuth + BearerToken *string + HonorLabels *bool + HonorTimeStamps *bool + MetricsPath string + MetricsRelabelConfigs []UpdateScrapeConfigPayloadMetricsRelabelConfigsInner + Params map[string]interface{} + SampleLimit *float32 + Scheme string + ScrapeInterval string + ScrapeTimeout string + StaticConfigs []UpdateScrapeConfigPayloadStaticConfigsInner + TlsConfig *UpdateScrapeConfigPayloadTlsConfig + func NewUpdateScrapeConfigPayload(metricsPath string, scheme string, scrapeInterval string, scrapeTimeout string, ...) *UpdateScrapeConfigPayload + func NewUpdateScrapeConfigPayloadWithDefaults() *UpdateScrapeConfigPayload + func (o *UpdateScrapeConfigPayload) GetBasicAuth() UpdateScrapeConfigPayloadBasicAuth + func (o *UpdateScrapeConfigPayload) GetBasicAuthOk() (*UpdateScrapeConfigPayloadBasicAuth, bool) + func (o *UpdateScrapeConfigPayload) GetBearerToken() string + func (o *UpdateScrapeConfigPayload) GetBearerTokenOk() (*string, bool) + func (o *UpdateScrapeConfigPayload) GetHonorLabels() bool + func (o *UpdateScrapeConfigPayload) GetHonorLabelsOk() (*bool, bool) + func (o *UpdateScrapeConfigPayload) GetHonorTimeStamps() bool + func (o *UpdateScrapeConfigPayload) GetHonorTimeStampsOk() (*bool, bool) + func (o *UpdateScrapeConfigPayload) GetMetricsPath() string + func (o *UpdateScrapeConfigPayload) GetMetricsPathOk() (*string, bool) + func (o *UpdateScrapeConfigPayload) GetMetricsRelabelConfigs() []UpdateScrapeConfigPayloadMetricsRelabelConfigsInner + func (o *UpdateScrapeConfigPayload) GetMetricsRelabelConfigsOk() ([]UpdateScrapeConfigPayloadMetricsRelabelConfigsInner, bool) + func (o *UpdateScrapeConfigPayload) GetParams() map[string]interface{} + func (o *UpdateScrapeConfigPayload) GetParamsOk() (map[string]interface{}, bool) + func (o *UpdateScrapeConfigPayload) GetSampleLimit() float32 + func (o *UpdateScrapeConfigPayload) GetSampleLimitOk() (*float32, bool) + func (o *UpdateScrapeConfigPayload) GetScheme() string + func (o *UpdateScrapeConfigPayload) GetSchemeOk() (*string, bool) + func (o *UpdateScrapeConfigPayload) GetScrapeInterval() string + func (o *UpdateScrapeConfigPayload) GetScrapeIntervalOk() (*string, bool) + func (o *UpdateScrapeConfigPayload) GetScrapeTimeout() string + func (o *UpdateScrapeConfigPayload) GetScrapeTimeoutOk() (*string, bool) + func (o *UpdateScrapeConfigPayload) GetStaticConfigs() []UpdateScrapeConfigPayloadStaticConfigsInner + func (o *UpdateScrapeConfigPayload) GetStaticConfigsOk() ([]UpdateScrapeConfigPayloadStaticConfigsInner, bool) + func (o *UpdateScrapeConfigPayload) GetTlsConfig() UpdateScrapeConfigPayloadTlsConfig + func (o *UpdateScrapeConfigPayload) GetTlsConfigOk() (*UpdateScrapeConfigPayloadTlsConfig, bool) + func (o *UpdateScrapeConfigPayload) HasBasicAuth() bool + func (o *UpdateScrapeConfigPayload) HasBearerToken() bool + func (o *UpdateScrapeConfigPayload) HasHonorLabels() bool + func (o *UpdateScrapeConfigPayload) HasHonorTimeStamps() bool + func (o *UpdateScrapeConfigPayload) HasMetricsRelabelConfigs() bool + func (o *UpdateScrapeConfigPayload) HasParams() bool + func (o *UpdateScrapeConfigPayload) HasSampleLimit() bool + func (o *UpdateScrapeConfigPayload) HasTlsConfig() bool + func (o *UpdateScrapeConfigPayload) SetBasicAuth(v UpdateScrapeConfigPayloadBasicAuth) + func (o *UpdateScrapeConfigPayload) SetBearerToken(v string) + func (o *UpdateScrapeConfigPayload) SetHonorLabels(v bool) + func (o *UpdateScrapeConfigPayload) SetHonorTimeStamps(v bool) + func (o *UpdateScrapeConfigPayload) SetMetricsPath(v string) + func (o *UpdateScrapeConfigPayload) SetMetricsRelabelConfigs(v []UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) + func (o *UpdateScrapeConfigPayload) SetParams(v map[string]interface{}) + func (o *UpdateScrapeConfigPayload) SetSampleLimit(v float32) + func (o *UpdateScrapeConfigPayload) SetScheme(v string) + func (o *UpdateScrapeConfigPayload) SetScrapeInterval(v string) + func (o *UpdateScrapeConfigPayload) SetScrapeTimeout(v string) + func (o *UpdateScrapeConfigPayload) SetStaticConfigs(v []UpdateScrapeConfigPayloadStaticConfigsInner) + func (o *UpdateScrapeConfigPayload) SetTlsConfig(v UpdateScrapeConfigPayloadTlsConfig) + func (o *UpdateScrapeConfigPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateScrapeConfigPayload) MarshalJSON() ([]byte, error) + func (o UpdateScrapeConfigPayload) ToMap() (map[string]interface{}, error) + type UpdateScrapeConfigPayloadBasicAuth struct + Password *string + Username *string + func NewUpdateScrapeConfigPayloadBasicAuth() *UpdateScrapeConfigPayloadBasicAuth + func NewUpdateScrapeConfigPayloadBasicAuthWithDefaults() *UpdateScrapeConfigPayloadBasicAuth + func (o *UpdateScrapeConfigPayloadBasicAuth) GetPassword() string + func (o *UpdateScrapeConfigPayloadBasicAuth) GetPasswordOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadBasicAuth) GetUsername() string + func (o *UpdateScrapeConfigPayloadBasicAuth) GetUsernameOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadBasicAuth) HasPassword() bool + func (o *UpdateScrapeConfigPayloadBasicAuth) HasUsername() bool + func (o *UpdateScrapeConfigPayloadBasicAuth) SetPassword(v string) + func (o *UpdateScrapeConfigPayloadBasicAuth) SetUsername(v string) + func (o UpdateScrapeConfigPayloadBasicAuth) MarshalJSON() ([]byte, error) + func (o UpdateScrapeConfigPayloadBasicAuth) ToMap() (map[string]interface{}, error) + type UpdateScrapeConfigPayloadMetricsRelabelConfigsInner struct + Action *string + Modulus *float32 + Regex *string + Replacement *string + Separator *string + SourceLabels []string + TargetLabel *string + func NewUpdateScrapeConfigPayloadMetricsRelabelConfigsInner() *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner + func NewUpdateScrapeConfigPayloadMetricsRelabelConfigsInnerWithDefaults() *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetAction() string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetActionOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetModulus() float32 + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetModulusOk() (*float32, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetRegex() string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetRegexOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetReplacement() string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetReplacementOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSeparator() string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSeparatorOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSourceLabels() []string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetSourceLabelsOk() ([]string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetTargetLabel() string + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) GetTargetLabelOk() (*string, bool) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasAction() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasModulus() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasRegex() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasReplacement() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasSeparator() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasSourceLabels() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) HasTargetLabel() bool + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetAction(v string) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetModulus(v float32) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetRegex(v string) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetReplacement(v string) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetSeparator(v string) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetSourceLabels(v []string) + func (o *UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) SetTargetLabel(v string) + func (o UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateScrapeConfigPayloadMetricsRelabelConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateScrapeConfigPayloadStaticConfigsInner struct + Labels map[string]interface{} + Targets []string + func NewUpdateScrapeConfigPayloadStaticConfigsInner(targets []string) *UpdateScrapeConfigPayloadStaticConfigsInner + func NewUpdateScrapeConfigPayloadStaticConfigsInnerWithDefaults() *UpdateScrapeConfigPayloadStaticConfigsInner + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) GetLabels() map[string]interface{} + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) GetTargets() []string + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) GetTargetsOk() ([]string, bool) + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) HasLabels() bool + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) SetLabels(v map[string]interface{}) + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) SetTargets(v []string) + func (o *UpdateScrapeConfigPayloadStaticConfigsInner) UnmarshalJSON(data []byte) (err error) + func (o UpdateScrapeConfigPayloadStaticConfigsInner) MarshalJSON() ([]byte, error) + func (o UpdateScrapeConfigPayloadStaticConfigsInner) ToMap() (map[string]interface{}, error) + type UpdateScrapeConfigPayloadTlsConfig struct + InsecureSkipVerify *bool + func NewUpdateScrapeConfigPayloadTlsConfig() *UpdateScrapeConfigPayloadTlsConfig + func NewUpdateScrapeConfigPayloadTlsConfigWithDefaults() *UpdateScrapeConfigPayloadTlsConfig + func (o *UpdateScrapeConfigPayloadTlsConfig) GetInsecureSkipVerify() bool + func (o *UpdateScrapeConfigPayloadTlsConfig) GetInsecureSkipVerifyOk() (*bool, bool) + func (o *UpdateScrapeConfigPayloadTlsConfig) HasInsecureSkipVerify() bool + func (o *UpdateScrapeConfigPayloadTlsConfig) SetInsecureSkipVerify(v bool) + func (o UpdateScrapeConfigPayloadTlsConfig) MarshalJSON() ([]byte, error) + func (o UpdateScrapeConfigPayloadTlsConfig) ToMap() (map[string]interface{}, error) + type UpdateTracesConfigsPayload struct + Retention string + func NewUpdateTracesConfigsPayload(retention string) *UpdateTracesConfigsPayload + func NewUpdateTracesConfigsPayloadWithDefaults() *UpdateTracesConfigsPayload + func (o *UpdateTracesConfigsPayload) GetRetention() string + func (o *UpdateTracesConfigsPayload) GetRetentionOk() (*string, bool) + func (o *UpdateTracesConfigsPayload) SetRetention(v string) + func (o *UpdateTracesConfigsPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateTracesConfigsPayload) MarshalJSON() ([]byte, error) + func (o UpdateTracesConfigsPayload) ToMap() (map[string]interface{}, error) + type WebHook struct + GoogleChat *bool + MsTeams *bool + SendResolved *bool + Url string + func NewWebHook(url string) *WebHook + func NewWebHookWithDefaults() *WebHook + func (o *WebHook) GetGoogleChat() bool + func (o *WebHook) GetGoogleChatOk() (*bool, bool) + func (o *WebHook) GetMsTeams() bool + func (o *WebHook) GetMsTeamsOk() (*bool, bool) + func (o *WebHook) GetSendResolved() bool + func (o *WebHook) GetSendResolvedOk() (*bool, bool) + func (o *WebHook) GetUrl() string + func (o *WebHook) GetUrlOk() (*string, bool) + func (o *WebHook) HasGoogleChat() bool + func (o *WebHook) HasMsTeams() bool + func (o *WebHook) HasSendResolved() bool + func (o *WebHook) SetGoogleChat(v bool) + func (o *WebHook) SetMsTeams(v bool) + func (o *WebHook) SetSendResolved(v bool) + func (o *WebHook) SetUrl(v string) + func (o *WebHook) UnmarshalJSON(data []byte) (err error) + func (o WebHook) MarshalJSON() ([]byte, error) + func (o WebHook) ToMap() (map[string]interface{}, error)