Authentication

Datadog の API に対するリクエストはすべて認証される必要があります。 データを書き込むリクエストにはレポートアクセスが必要で、API key が必要です。 データを読み取るリクエストにはフルアクセスが必要で、application key も必要です。

注: すべての Datadog API クライアントは、デフォルトで Datadog US サイト API を使用するように構成されています。 Datadog EU サイトを使用している場合は、環境変数 DATADOG_HOSThttps://api.datadoghq.euに設定するか、クライアントを作成するときにこの値を直接オーバーライドします。

アカウントの API とアプリケーションキーを管理します

GET https://api.ap1.datadoghq.com/api/v1/validatehttps://api.datadoghq.eu/api/v1/validatehttps://api.ddog-gov.com/api/v1/validatehttps://api.datadoghq.com/api/v1/validatehttps://api.us3.datadoghq.com/api/v1/validatehttps://api.us5.datadoghq.com/api/v1/validate

概要

API キー (APP キーとは異なります)が有効かどうかを確認します。有効でない場合は 403 を返します。

応答

OK

Represent validation endpoint responses.

Expand All

フィールド

種類

説明

valid

boolean

Return true if the authentication response is valid.

{
  "valid": true
}

Authentication error

Error response object.

Expand All

フィールド

種類

説明

errors [required]

[string]

Array of errors returned by the API.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

Error response object.

Expand All

フィールド

種類

説明

errors [required]

[string]

Array of errors returned by the API.

{
  "errors": [
    "Bad Request"
  ]
}

コード例

// Validate API key returns "OK" response
use datadog_api_client::datadog;
use datadog_api_client::datadogV1::api_authentication::AuthenticationAPI;

#[tokio::main]
async fn main() {
    let configuration = datadog::Configuration::new();
    let api = AuthenticationAPI::with_config(configuration);
    let resp = api.validate().await;
    if let Ok(value) = resp {
        println!("{:#?}", value);
    } else {
        println!("{:#?}", resp.unwrap_err());
    }
}

Instructions

First install the library and its dependencies and then save the example to src/main.rs and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com" DD_API_KEY="<DD_API_KEY>" cargo run

PREVIEWING: jen.gilbert/cdocs-build