Documentation ¶
Index ¶
Constants ¶
const ( // DefaultHost is the default Host // found in Meta (info) section of spec file DefaultHost string = "localhost" // DefaultBasePath is the default BasePath // found in Meta (info) section of spec file DefaultBasePath string = "/" )
Variables ¶
var Default = NewHTTPClient(nil)
Default config v1 API HTTP client.
var DefaultSchemes = []string{"http"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
This section is empty.
Types ¶
type ConfigV1API ¶
type ConfigV1API struct { Bucket bucket.ClientService ClassicDashboard classic_dashboard.ClientService Collection collection.ClientService Dashboard dashboard.ClientService Dataset dataset.ClientService DerivedLabel derived_label.ClientService DerivedMetric derived_metric.ClientService DropRule drop_rule.ClientService GcpMetricsIntegration gcp_metrics_integration.ClientService GrafanaDashboard grafana_dashboard.ClientService LogScaleAction log_scale_action.ClientService LogScaleAlert log_scale_alert.ClientService MappingRule mapping_rule.ClientService Monitor monitor.ClientService MutingRule muting_rule.ClientService NotificationPolicy notification_policy.ClientService Notifier notifier.ClientService OtelMetricsIngestion otel_metrics_ingestion.ClientService RecordingRule recording_rule.ClientService ResourcePools resource_pools.ClientService RollupRule rollup_rule.ClientService Service service.ClientService ServiceAccount service_account.ClientService Team team.ClientService TraceBehaviorConfig trace_behavior_config.ClientService TraceJaegerRemoteSamplingStrategy trace_jaeger_remote_sampling_strategy.ClientService TraceMetricsRule trace_metrics_rule.ClientService TraceTailSamplingRules trace_tail_sampling_rules.ClientService Transport runtime.ClientTransport }
ConfigV1API is a client for config v1 API
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *ConfigV1API
New creates a new config v1 API client
func NewHTTPClient ¶
func NewHTTPClient(formats strfmt.Registry) *ConfigV1API
NewHTTPClient creates a new config v1 API HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *ConfigV1API
NewHTTPClientWithConfig creates a new config v1 API HTTP client, using a customizable transport config.
func (*ConfigV1API) SetTransport ¶
func (c *ConfigV1API) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client and all its subresources
type TransportConfig ¶
TransportConfig contains the transport related info, found in the meta section of the spec file.
func DefaultTransportConfig ¶
func DefaultTransportConfig() *TransportConfig
DefaultTransportConfig creates a TransportConfig with the default settings taken from the meta section of the spec file.
func (*TransportConfig) WithBasePath ¶
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig
WithBasePath overrides the default basePath, provided by the meta section of the spec file.
func (*TransportConfig) WithHost ¶
func (cfg *TransportConfig) WithHost(host string) *TransportConfig
WithHost overrides the default host, provided by the meta section of the spec file.
func (*TransportConfig) WithSchemes ¶
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig
WithSchemes overrides the default schemes, provided by the meta section of the spec file.