com.personio.synthetics.client.ConfigCredentialsProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datadog-synthetic-test-support Show documentation
Show all versions of datadog-synthetic-test-support Show documentation
Kotlin library for managing Datadog Synthetic test as code
package com.personio.synthetics.client
import com.personio.synthetics.config.Credentials
class ConfigCredentialsProvider(val credentials: Credentials) : CredentialsProvider {
override fun getCredentials() = ApiCredentials(credentials.ddApiKey!!, credentials.ddAppKey!!)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy