import { AbstractEntity } from '../../abstractEntity'; import { AccountsAggType, ScoreResultType, MonthlyTrendAggType, SeveritiesAggType, PaginationsType, PeriodsType, ChecksAggType, ScoresAggType, StandardWithCheckType } from '../types/securityScoreGraphQLTypes'; import { SecurityScoreQueries } from '../types/queryArguments'; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare enum GetCustomerDataFields { COLUMN_ACCOUNTS_AGG = "accountsAgg", COLUMN_CHECKS_AGG = "checksAgg", COLUMN_MONTHLY_TREND_AGG = "monthlyTrendAgg", COLUMN_PAGINATION = "pagination", COLUMN_PERIOD = "period", COLUMN_RESULTS = "results", COLUMN_SCORES_AGG = "scoresAgg", COLUMN_SEVERITIES_AGG = "severitiesAgg", COLUMN_STANDARDS = "standards", COLUMN_SUBSCRIPTION_REFERENCES = "subscriptionReferences" } /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetCustomerDataType = { [GetCustomerDataFields.COLUMN_ACCOUNTS_AGG]?: AccountsAggType; [GetCustomerDataFields.COLUMN_CHECKS_AGG]?: ChecksAggType; [GetCustomerDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggType; [GetCustomerDataFields.COLUMN_PAGINATION]?: PaginationsType; [GetCustomerDataFields.COLUMN_PERIOD]?: PeriodsType; [GetCustomerDataFields.COLUMN_RESULTS]?: ScoreResultType[]; [GetCustomerDataFields.COLUMN_SCORES_AGG]?: ScoresAggType; [GetCustomerDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggType; [GetCustomerDataFields.COLUMN_STANDARDS]?: StandardWithCheckType[]; [GetCustomerDataFields.COLUMN_SUBSCRIPTION_REFERENCES]?: number; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetCustomerDataGraphQLResultType = { [SecurityScoreQueries.GET_CUSTOMER_DATA]: GetCustomerDataType; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare class GetCustomerData extends AbstractEntity { #private; constructor(getCustomerDataInput: GetCustomerDataType); get accountsAgg(): AccountsAggType | undefined; get checksAgg(): ChecksAggType | undefined; get monthlyTrendAgg(): MonthlyTrendAggType | undefined; get pagination(): PaginationsType | undefined; get period(): PeriodsType | undefined; get results(): ScoreResultType[] | undefined; get scoresAgg(): ScoresAggType | undefined; get severitiesAgg(): SeveritiesAggType | undefined; get standards(): StandardWithCheckType[] | undefined; get subscriptionReferences(): number | undefined; toJSON(): GetCustomerDataType; }