Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultLogLevels = struct { Debug DefaultLogLevel Error DefaultLogLevel Info DefaultLogLevel Off DefaultLogLevel Warn DefaultLogLevel }{ "debug", "error", "info", "off", "warn", }
View Source
var OverrideDefaultLogLevels = struct { Debug OverrideDefaultLogLevel Error OverrideDefaultLogLevel Info OverrideDefaultLogLevel Off OverrideDefaultLogLevel Usedefault OverrideDefaultLogLevel Warn OverrideDefaultLogLevel }{ "debug", "error", "info", "off", "useDefault", "warn", }
Functions ¶
This section is empty.
Types ¶
type AppMonitoring ¶ added in v1.67.0
type AppMonitoring struct { AppID string `json:"appId"` // App ID CustomLogLevel OverrideDefaultLogLevel `json:"customLogLevel"` // Possible Values: `Debug`, `Error`, `Info`, `Off`, `UseDefault`, `Warn` }
func (*AppMonitoring) MarshalHCL ¶ added in v1.67.0
func (me *AppMonitoring) MarshalHCL(properties hcl.Properties) error
func (*AppMonitoring) Schema ¶ added in v1.67.0
func (me *AppMonitoring) Schema() map[string]*schema.Schema
func (*AppMonitoring) UnmarshalHCL ¶ added in v1.67.0
func (me *AppMonitoring) UnmarshalHCL(decoder hcl.Decoder) error
type AppMonitorings ¶ added in v1.67.0
type AppMonitorings []*AppMonitoring
func (AppMonitorings) MarshalHCL ¶ added in v1.67.0
func (me AppMonitorings) MarshalHCL(properties hcl.Properties) error
func (*AppMonitorings) Schema ¶ added in v1.67.0
func (me *AppMonitorings) Schema() map[string]*schema.Schema
func (*AppMonitorings) UnmarshalHCL ¶ added in v1.67.0
func (me *AppMonitorings) UnmarshalHCL(decoder hcl.Decoder) error
type DefaultLogLevel ¶
type DefaultLogLevel string
type OverrideDefaultLogLevel ¶ added in v1.67.0
type OverrideDefaultLogLevel string
type Settings ¶
type Settings struct { AppMonitoring AppMonitorings `json:"appMonitoring,omitempty"` // You can override the default monitoring setting for each app separately DefaultLogLevel DefaultLogLevel `json:"defaultLogLevel"` // Possible Values: `Debug`, `Error`, `Info`, `Off`, `Warn` }
func (*Settings) MarshalHCL ¶
func (me *Settings) MarshalHCL(properties hcl.Properties) error
Click to show internal directories.
Click to hide internal directories.