Module Values.NewRelicApiKeyConfigSource

API key authentication configuration for New Relic service.

Sourcetype nonrec t = {
  1. apiKey : NewRelicApiKeyConfigApiKeyString.t;
    (*

    New Relic User API Key

    *)
  2. accountId : NewRelicApiKeyConfigAccountIdString.t;
    (*

    New Relic Account ID

    *)
  3. region : NewRelicRegion.t;
    (*

    New Relic region (US or EU)

    *)
  4. applicationIds : NewRelicApplicationIds.t option;
    (*

    List of monitored APM application IDs in New Relic

    *)
  5. entityGuids : NewRelicEntityGuids.t option;
    (*

    List of globally unique IDs for New Relic resources (apps, hosts, services)

    *)
  6. alertPolicyIds : NewRelicAlertPolicyIds.t option;
    (*

    List of alert policy IDs grouping related conditions

    *)
}
Sourceval context_ : string
Sourceval make : ?applicationIds:??? -> ?entityGuids:??? -> ?alertPolicyIds:??? -> apiKey:NewRelicApiKeyConfigApiKeyString.t -> accountId:NewRelicApiKeyConfigAccountIdString.t -> region:NewRelicRegion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NewRelicApplicationIdsMemberString.t ] list | `String of NewRelicApiKeyConfigApiKeyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t