LogAnalyticsAuthBasic type

Represents Basic Authentication Type for Azure Log Analytics Source. User is required to specify clientSecret for Create with Basic type. clientSecret being a secret will not be returned by the service.

type LogAnalyticsAuthBasic = {
  authenticationType: "Basic"
  clientId: string
  clientSecret?: string
  tenantId: string
}