/** Interface defining the credentials deployment config */
export interface DynatraceDeploymentConfig {
    /** ClientID for the Oauth client.  (Used for automated deployment in a pipeline) */
    clientID?: string;
    /** ClientSecret for the Oauth client.  (Used for automated deployment in a pipeline) */
    clientSecret?: string;
    /** AccountURN required for the Oauth client to get the token.  (Used for automated deployment in a pipeline) */
    accountURN?: string;
}
