_id stringlengths 2 7 | title stringlengths 1 118 | partition stringclasses 3
values | text stringlengths 52 85.5k | language stringclasses 1
value | meta_information dict |
|---|---|---|---|---|---|
q170700 | HasEnableLogsSample | validation | func (o *Options) HasEnableLogsSample() bool {
if o != nil && o.EnableLogsSample != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170701 | GetEscalationMessage | validation | func (o *Options) GetEscalationMessage() string {
if o == nil || o.EscalationMessage == nil {
return ""
}
return *o.EscalationMessage
} | go | {
"resource": ""
} |
q170702 | GetEscalationMessageOk | validation | func (o *Options) GetEscalationMessageOk() (string, bool) {
if o == nil || o.EscalationMessage == nil {
return "", false
}
return *o.EscalationMessage, true
} | go | {
"resource": ""
} |
q170703 | HasEscalationMessage | validation | func (o *Options) HasEscalationMessage() bool {
if o != nil && o.EscalationMessage != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170704 | GetEvaluationDelay | validation | func (o *Options) GetEvaluationDelay() int {
if o == nil || o.EvaluationDelay == nil {
return 0
}
return *o.EvaluationDelay
} | go | {
"resource": ""
} |
q170705 | GetEvaluationDelayOk | validation | func (o *Options) GetEvaluationDelayOk() (int, bool) {
if o == nil || o.EvaluationDelay == nil {
return 0, false
}
return *o.EvaluationDelay, true
} | go | {
"resource": ""
} |
q170706 | HasEvaluationDelay | validation | func (o *Options) HasEvaluationDelay() bool {
if o != nil && o.EvaluationDelay != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170707 | GetIncludeTags | validation | func (o *Options) GetIncludeTags() bool {
if o == nil || o.IncludeTags == nil {
return false
}
return *o.IncludeTags
} | go | {
"resource": ""
} |
q170708 | GetIncludeTagsOk | validation | func (o *Options) GetIncludeTagsOk() (bool, bool) {
if o == nil || o.IncludeTags == nil {
return false, false
}
return *o.IncludeTags, true
} | go | {
"resource": ""
} |
q170709 | HasIncludeTags | validation | func (o *Options) HasIncludeTags() bool {
if o != nil && o.IncludeTags != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170710 | GetLocked | validation | func (o *Options) GetLocked() bool {
if o == nil || o.Locked == nil {
return false
}
return *o.Locked
} | go | {
"resource": ""
} |
q170711 | GetLockedOk | validation | func (o *Options) GetLockedOk() (bool, bool) {
if o == nil || o.Locked == nil {
return false, false
}
return *o.Locked, true
} | go | {
"resource": ""
} |
q170712 | HasLocked | validation | func (o *Options) HasLocked() bool {
if o != nil && o.Locked != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170713 | GetNewHostDelay | validation | func (o *Options) GetNewHostDelay() int {
if o == nil || o.NewHostDelay == nil {
return 0
}
return *o.NewHostDelay
} | go | {
"resource": ""
} |
q170714 | GetNewHostDelayOk | validation | func (o *Options) GetNewHostDelayOk() (int, bool) {
if o == nil || o.NewHostDelay == nil {
return 0, false
}
return *o.NewHostDelay, true
} | go | {
"resource": ""
} |
q170715 | HasNewHostDelay | validation | func (o *Options) HasNewHostDelay() bool {
if o != nil && o.NewHostDelay != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170716 | GetNotifyAudit | validation | func (o *Options) GetNotifyAudit() bool {
if o == nil || o.NotifyAudit == nil {
return false
}
return *o.NotifyAudit
} | go | {
"resource": ""
} |
q170717 | GetNotifyAuditOk | validation | func (o *Options) GetNotifyAuditOk() (bool, bool) {
if o == nil || o.NotifyAudit == nil {
return false, false
}
return *o.NotifyAudit, true
} | go | {
"resource": ""
} |
q170718 | HasNotifyAudit | validation | func (o *Options) HasNotifyAudit() bool {
if o != nil && o.NotifyAudit != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170719 | GetQueryConfig | validation | func (o *Options) GetQueryConfig() QueryConfig {
if o == nil || o.QueryConfig == nil {
return QueryConfig{}
}
return *o.QueryConfig
} | go | {
"resource": ""
} |
q170720 | GetQueryConfigOk | validation | func (o *Options) GetQueryConfigOk() (QueryConfig, bool) {
if o == nil || o.QueryConfig == nil {
return QueryConfig{}, false
}
return *o.QueryConfig, true
} | go | {
"resource": ""
} |
q170721 | HasQueryConfig | validation | func (o *Options) HasQueryConfig() bool {
if o != nil && o.QueryConfig != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170722 | GetRenotifyInterval | validation | func (o *Options) GetRenotifyInterval() int {
if o == nil || o.RenotifyInterval == nil {
return 0
}
return *o.RenotifyInterval
} | go | {
"resource": ""
} |
q170723 | GetRenotifyIntervalOk | validation | func (o *Options) GetRenotifyIntervalOk() (int, bool) {
if o == nil || o.RenotifyInterval == nil {
return 0, false
}
return *o.RenotifyInterval, true
} | go | {
"resource": ""
} |
q170724 | HasRenotifyInterval | validation | func (o *Options) HasRenotifyInterval() bool {
if o != nil && o.RenotifyInterval != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170725 | GetRequireFullWindow | validation | func (o *Options) GetRequireFullWindow() bool {
if o == nil || o.RequireFullWindow == nil {
return false
}
return *o.RequireFullWindow
} | go | {
"resource": ""
} |
q170726 | GetRequireFullWindowOk | validation | func (o *Options) GetRequireFullWindowOk() (bool, bool) {
if o == nil || o.RequireFullWindow == nil {
return false, false
}
return *o.RequireFullWindow, true
} | go | {
"resource": ""
} |
q170727 | HasRequireFullWindow | validation | func (o *Options) HasRequireFullWindow() bool {
if o != nil && o.RequireFullWindow != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170728 | GetThresholds | validation | func (o *Options) GetThresholds() ThresholdCount {
if o == nil || o.Thresholds == nil {
return ThresholdCount{}
}
return *o.Thresholds
} | go | {
"resource": ""
} |
q170729 | GetThresholdsOk | validation | func (o *Options) GetThresholdsOk() (ThresholdCount, bool) {
if o == nil || o.Thresholds == nil {
return ThresholdCount{}, false
}
return *o.Thresholds, true
} | go | {
"resource": ""
} |
q170730 | HasThresholds | validation | func (o *Options) HasThresholds() bool {
if o != nil && o.Thresholds != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170731 | GetThresholdWindows | validation | func (o *Options) GetThresholdWindows() ThresholdWindows {
if o == nil || o.ThresholdWindows == nil {
return ThresholdWindows{}
}
return *o.ThresholdWindows
} | go | {
"resource": ""
} |
q170732 | GetThresholdWindowsOk | validation | func (o *Options) GetThresholdWindowsOk() (ThresholdWindows, bool) {
if o == nil || o.ThresholdWindows == nil {
return ThresholdWindows{}, false
}
return *o.ThresholdWindows, true
} | go | {
"resource": ""
} |
q170733 | HasThresholdWindows | validation | func (o *Options) HasThresholdWindows() bool {
if o != nil && o.ThresholdWindows != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170734 | GetTimeoutH | validation | func (o *Options) GetTimeoutH() int {
if o == nil || o.TimeoutH == nil {
return 0
}
return *o.TimeoutH
} | go | {
"resource": ""
} |
q170735 | GetTimeoutHOk | validation | func (o *Options) GetTimeoutHOk() (int, bool) {
if o == nil || o.TimeoutH == nil {
return 0, false
}
return *o.TimeoutH, true
} | go | {
"resource": ""
} |
q170736 | HasTimeoutH | validation | func (o *Options) HasTimeoutH() bool {
if o != nil && o.TimeoutH != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170737 | GetSeconds | validation | func (p *Period) GetSeconds() json.Number {
if p == nil || p.Seconds == nil {
return ""
}
return *p.Seconds
} | go | {
"resource": ""
} |
q170738 | GetSecondsOk | validation | func (p *Period) GetSecondsOk() (json.Number, bool) {
if p == nil || p.Seconds == nil {
return "", false
}
return *p.Seconds, true
} | go | {
"resource": ""
} |
q170739 | HasSeconds | validation | func (p *Period) HasSeconds() bool {
if p != nil && p.Seconds != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170740 | GetLogSet | validation | func (q *QueryConfig) GetLogSet() LogSet {
if q == nil || q.LogSet == nil {
return LogSet{}
}
return *q.LogSet
} | go | {
"resource": ""
} |
q170741 | GetLogSetOk | validation | func (q *QueryConfig) GetLogSetOk() (LogSet, bool) {
if q == nil || q.LogSet == nil {
return LogSet{}, false
}
return *q.LogSet, true
} | go | {
"resource": ""
} |
q170742 | HasLogSet | validation | func (q *QueryConfig) HasLogSet() bool {
if q != nil && q.LogSet != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170743 | GetQueryIsFailed | validation | func (q *QueryConfig) GetQueryIsFailed() bool {
if q == nil || q.QueryIsFailed == nil {
return false
}
return *q.QueryIsFailed
} | go | {
"resource": ""
} |
q170744 | GetQueryIsFailedOk | validation | func (q *QueryConfig) GetQueryIsFailedOk() (bool, bool) {
if q == nil || q.QueryIsFailed == nil {
return false, false
}
return *q.QueryIsFailed, true
} | go | {
"resource": ""
} |
q170745 | HasQueryIsFailed | validation | func (q *QueryConfig) HasQueryIsFailed() bool {
if q != nil && q.QueryIsFailed != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170746 | GetQueryString | validation | func (q *QueryConfig) GetQueryString() string {
if q == nil || q.QueryString == nil {
return ""
}
return *q.QueryString
} | go | {
"resource": ""
} |
q170747 | GetQueryStringOk | validation | func (q *QueryConfig) GetQueryStringOk() (string, bool) {
if q == nil || q.QueryString == nil {
return "", false
}
return *q.QueryString, true
} | go | {
"resource": ""
} |
q170748 | HasQueryString | validation | func (q *QueryConfig) HasQueryString() bool {
if q != nil && q.QueryString != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170749 | GetTimeRange | validation | func (q *QueryConfig) GetTimeRange() TimeRange {
if q == nil || q.TimeRange == nil {
return TimeRange{}
}
return *q.TimeRange
} | go | {
"resource": ""
} |
q170750 | GetTimeRangeOk | validation | func (q *QueryConfig) GetTimeRangeOk() (TimeRange, bool) {
if q == nil || q.TimeRange == nil {
return TimeRange{}, false
}
return *q.TimeRange, true
} | go | {
"resource": ""
} |
q170751 | HasTimeRange | validation | func (q *QueryConfig) HasTimeRange() bool {
if q != nil && q.TimeRange != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170752 | GetUntilDate | validation | func (r *Recurrence) GetUntilDate() int {
if r == nil || r.UntilDate == nil {
return 0
}
return *r.UntilDate
} | go | {
"resource": ""
} |
q170753 | GetUntilDateOk | validation | func (r *Recurrence) GetUntilDateOk() (int, bool) {
if r == nil || r.UntilDate == nil {
return 0, false
}
return *r.UntilDate, true
} | go | {
"resource": ""
} |
q170754 | HasUntilDate | validation | func (r *Recurrence) HasUntilDate() bool {
if r != nil && r.UntilDate != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170755 | GetUntilOccurrences | validation | func (r *Recurrence) GetUntilOccurrences() int {
if r == nil || r.UntilOccurrences == nil {
return 0
}
return *r.UntilOccurrences
} | go | {
"resource": ""
} |
q170756 | GetUntilOccurrencesOk | validation | func (r *Recurrence) GetUntilOccurrencesOk() (int, bool) {
if r == nil || r.UntilOccurrences == nil {
return 0, false
}
return *r.UntilOccurrences, true
} | go | {
"resource": ""
} |
q170757 | HasUntilOccurrences | validation | func (r *Recurrence) HasUntilOccurrences() bool {
if r != nil && r.UntilOccurrences != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170758 | GetAPIKey | validation | func (r *reqAPIKey) GetAPIKey() APIKey {
if r == nil || r.APIKey == nil {
return APIKey{}
}
return *r.APIKey
} | go | {
"resource": ""
} |
q170759 | GetAPIKeyOk | validation | func (r *reqAPIKey) GetAPIKeyOk() (APIKey, bool) {
if r == nil || r.APIKey == nil {
return APIKey{}, false
}
return *r.APIKey, true
} | go | {
"resource": ""
} |
q170760 | HasAPIKey | validation | func (r *reqAPIKey) HasAPIKey() bool {
if r != nil && r.APIKey != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170761 | GetComment | validation | func (r *reqComment) GetComment() Comment {
if r == nil || r.Comment == nil {
return Comment{}
}
return *r.Comment
} | go | {
"resource": ""
} |
q170762 | GetCommentOk | validation | func (r *reqComment) GetCommentOk() (Comment, bool) {
if r == nil || r.Comment == nil {
return Comment{}, false
}
return *r.Comment, true
} | go | {
"resource": ""
} |
q170763 | HasComment | validation | func (r *reqComment) HasComment() bool {
if r != nil && r.Comment != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170764 | GetDashboard | validation | func (r *reqGetDashboard) GetDashboard() Dashboard {
if r == nil || r.Dashboard == nil {
return Dashboard{}
}
return *r.Dashboard
} | go | {
"resource": ""
} |
q170765 | GetDashboardOk | validation | func (r *reqGetDashboard) GetDashboardOk() (Dashboard, bool) {
if r == nil || r.Dashboard == nil {
return Dashboard{}, false
}
return *r.Dashboard, true
} | go | {
"resource": ""
} |
q170766 | HasDashboard | validation | func (r *reqGetDashboard) HasDashboard() bool {
if r != nil && r.Dashboard != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170767 | GetEvent | validation | func (r *reqGetEvent) GetEvent() Event {
if r == nil || r.Event == nil {
return Event{}
}
return *r.Event
} | go | {
"resource": ""
} |
q170768 | GetEventOk | validation | func (r *reqGetEvent) GetEventOk() (Event, bool) {
if r == nil || r.Event == nil {
return Event{}, false
}
return *r.Event, true
} | go | {
"resource": ""
} |
q170769 | HasEvent | validation | func (r *reqGetEvent) HasEvent() bool {
if r != nil && r.Event != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170770 | GetTags | validation | func (r *reqGetTags) GetTags() TagMap {
if r == nil || r.Tags == nil {
return TagMap{}
}
return *r.Tags
} | go | {
"resource": ""
} |
q170771 | GetTagsOk | validation | func (r *reqGetTags) GetTagsOk() (TagMap, bool) {
if r == nil || r.Tags == nil {
return TagMap{}, false
}
return *r.Tags, true
} | go | {
"resource": ""
} |
q170772 | HasTags | validation | func (r *reqGetTags) HasTags() bool {
if r != nil && r.Tags != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170773 | GetThreshold | validation | func (r *Rule) GetThreshold() json.Number {
if r == nil || r.Threshold == nil {
return ""
}
return *r.Threshold
} | go | {
"resource": ""
} |
q170774 | GetThresholdOk | validation | func (r *Rule) GetThresholdOk() (json.Number, bool) {
if r == nil || r.Threshold == nil {
return "", false
}
return *r.Threshold, true
} | go | {
"resource": ""
} |
q170775 | HasThreshold | validation | func (r *Rule) HasThreshold() bool {
if r != nil && r.Threshold != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170776 | GetXaxis | validation | func (s *ScatterplotDefinition) GetXaxis() WidgetAxis {
if s == nil || s.Xaxis == nil {
return WidgetAxis{}
}
return *s.Xaxis
} | go | {
"resource": ""
} |
q170777 | GetXaxisOk | validation | func (s *ScatterplotDefinition) GetXaxisOk() (WidgetAxis, bool) {
if s == nil || s.Xaxis == nil {
return WidgetAxis{}, false
}
return *s.Xaxis, true
} | go | {
"resource": ""
} |
q170778 | HasXaxis | validation | func (s *ScatterplotDefinition) HasXaxis() bool {
if s != nil && s.Xaxis != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170779 | GetShared | validation | func (s *Screenboard) GetShared() bool {
if s == nil || s.Shared == nil {
return false
}
return *s.Shared
} | go | {
"resource": ""
} |
q170780 | GetSharedOk | validation | func (s *Screenboard) GetSharedOk() (bool, bool) {
if s == nil || s.Shared == nil {
return false, false
}
return *s.Shared, true
} | go | {
"resource": ""
} |
q170781 | HasShared | validation | func (s *Screenboard) HasShared() bool {
if s != nil && s.Shared != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170782 | GetAggr | validation | func (s *Series) GetAggr() string {
if s == nil || s.Aggr == nil {
return ""
}
return *s.Aggr
} | go | {
"resource": ""
} |
q170783 | GetAggrOk | validation | func (s *Series) GetAggrOk() (string, bool) {
if s == nil || s.Aggr == nil {
return "", false
}
return *s.Aggr, true
} | go | {
"resource": ""
} |
q170784 | HasAggr | validation | func (s *Series) HasAggr() bool {
if s != nil && s.Aggr != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170785 | GetDisplayNameOk | validation | func (s *Series) GetDisplayNameOk() (string, bool) {
if s == nil || s.DisplayName == nil {
return "", false
}
return *s.DisplayName, true
} | go | {
"resource": ""
} |
q170786 | GetLength | validation | func (s *Series) GetLength() int {
if s == nil || s.Length == nil {
return 0
}
return *s.Length
} | go | {
"resource": ""
} |
q170787 | GetLengthOk | validation | func (s *Series) GetLengthOk() (int, bool) {
if s == nil || s.Length == nil {
return 0, false
}
return *s.Length, true
} | go | {
"resource": ""
} |
q170788 | HasLength | validation | func (s *Series) HasLength() bool {
if s != nil && s.Length != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170789 | GetScope | validation | func (s *Series) GetScope() string {
if s == nil || s.Scope == nil {
return ""
}
return *s.Scope
} | go | {
"resource": ""
} |
q170790 | GetScopeOk | validation | func (s *Series) GetScopeOk() (string, bool) {
if s == nil || s.Scope == nil {
return "", false
}
return *s.Scope, true
} | go | {
"resource": ""
} |
q170791 | HasScope | validation | func (s *Series) HasScope() bool {
if s != nil && s.Scope != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170792 | GetUnits | validation | func (s *Series) GetUnits() UnitPair {
if s == nil || s.Units == nil {
return UnitPair{}
}
return *s.Units
} | go | {
"resource": ""
} |
q170793 | GetUnitsOk | validation | func (s *Series) GetUnitsOk() (UnitPair, bool) {
if s == nil || s.Units == nil {
return UnitPair{}, false
}
return *s.Units, true
} | go | {
"resource": ""
} |
q170794 | HasUnits | validation | func (s *Series) HasUnits() bool {
if s != nil && s.Units != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170795 | GetServiceKeyOk | validation | func (s *ServicePDRequest) GetServiceKeyOk() (string, bool) {
if s == nil || s.ServiceKey == nil {
return "", false
}
return *s.ServiceKey, true
} | go | {
"resource": ""
} |
q170796 | GetOperator | validation | func (s *SyntheticsAssertion) GetOperator() string {
if s == nil || s.Operator == nil {
return ""
}
return *s.Operator
} | go | {
"resource": ""
} |
q170797 | GetOperatorOk | validation | func (s *SyntheticsAssertion) GetOperatorOk() (string, bool) {
if s == nil || s.Operator == nil {
return "", false
}
return *s.Operator, true
} | go | {
"resource": ""
} |
q170798 | HasOperator | validation | func (s *SyntheticsAssertion) HasOperator() bool {
if s != nil && s.Operator != nil {
return true
}
return false
} | go | {
"resource": ""
} |
q170799 | GetProperty | validation | func (s *SyntheticsAssertion) GetProperty() string {
if s == nil || s.Property == nil {
return ""
}
return *s.Property
} | go | {
"resource": ""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.