Interface ApiAuthApiKeyConfig

The API secret.

interface ApiAuthApiKeyConfig {
    apiKeySecretVersion?: string;
    apiKeyString?: string;
}

Properties

apiKeySecretVersion?: string

Required. The SecretManager secret version resource name storing API key. e.g. projects/{project}/secrets/{secret}/versions/{version}

apiKeyString?: string

The API key string. Either this or api_key_secret_version must be set.