UNPKG

dt-app

Version:

The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.

10 lines (9 loc) 481 B
/** 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; }