/** * @public * @enum */ export declare const AutoRefreshMode: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type AutoRefreshMode = (typeof AutoRefreshMode)[keyof typeof AutoRefreshMode]; /** * @public * @enum */ export declare const AccessBudgetType: { readonly CALENDAR_DAY: "CALENDAR_DAY"; readonly CALENDAR_MONTH: "CALENDAR_MONTH"; readonly CALENDAR_WEEK: "CALENDAR_WEEK"; readonly LIFETIME: "LIFETIME"; }; /** * @public */ export type AccessBudgetType = (typeof AccessBudgetType)[keyof typeof AccessBudgetType]; /** * @public * @enum */ export declare const AccessDeniedExceptionReason: { readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS"; }; /** * @public */ export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason]; /** * @public * @enum */ export declare const AdditionalAnalyses: { readonly ALLOWED: "ALLOWED"; readonly NOT_ALLOWED: "NOT_ALLOWED"; readonly REQUIRED: "REQUIRED"; }; /** * @public */ export type AdditionalAnalyses = (typeof AdditionalAnalyses)[keyof typeof AdditionalAnalyses]; /** * @public * @enum */ export declare const AggregateFunctionName: { readonly AVG: "AVG"; readonly COUNT: "COUNT"; readonly COUNT_DISTINCT: "COUNT_DISTINCT"; readonly SUM: "SUM"; readonly SUM_DISTINCT: "SUM_DISTINCT"; }; /** * @public */ export type AggregateFunctionName = (typeof AggregateFunctionName)[keyof typeof AggregateFunctionName]; /** * @public * @enum */ export declare const AggregationType: { readonly COUNT_DISTINCT: "COUNT_DISTINCT"; }; /** * @public */ export type AggregationType = (typeof AggregationType)[keyof typeof AggregationType]; /** * @public * @enum */ export declare const AllowedAggregateExpressionType: { readonly ANY_EXPRESSION: "ANY_EXPRESSION"; readonly COLUMNS_ONLY: "COLUMNS_ONLY"; }; /** * @public */ export type AllowedAggregateExpressionType = (typeof AllowedAggregateExpressionType)[keyof typeof AllowedAggregateExpressionType]; /** * @public * @enum */ export declare const AggregationThresholdType: { readonly COUNT_DISTINCT: "COUNT_DISTINCT"; }; /** * @public */ export type AggregationThresholdType = (typeof AggregationThresholdType)[keyof typeof AggregationThresholdType]; /** * @public * @enum */ export declare const SupportedS3Region: { readonly AF_SOUTH_1: "af-south-1"; readonly AP_EAST_1: "ap-east-1"; readonly AP_EAST_2: "ap-east-2"; readonly AP_NORTHEAST_1: "ap-northeast-1"; readonly AP_NORTHEAST_2: "ap-northeast-2"; readonly AP_NORTHEAST_3: "ap-northeast-3"; readonly AP_SOUTHEAST_1: "ap-southeast-1"; readonly AP_SOUTHEAST_2: "ap-southeast-2"; readonly AP_SOUTHEAST_3: "ap-southeast-3"; readonly AP_SOUTHEAST_4: "ap-southeast-4"; readonly AP_SOUTHEAST_5: "ap-southeast-5"; readonly AP_SOUTHEAST_7: "ap-southeast-7"; readonly AP_SOUTH_1: "ap-south-1"; readonly AP_SOUTH_2: "ap-south-2"; readonly CA_CENTRAL_1: "ca-central-1"; readonly CA_WEST_1: "ca-west-1"; readonly EU_CENTRAL_1: "eu-central-1"; readonly EU_CENTRAL_2: "eu-central-2"; readonly EU_NORTH_1: "eu-north-1"; readonly EU_SOUTH_1: "eu-south-1"; readonly EU_SOUTH_2: "eu-south-2"; readonly EU_WEST_1: "eu-west-1"; readonly EU_WEST_2: "eu-west-2"; readonly EU_WEST_3: "eu-west-3"; readonly IL_CENTRAL_1: "il-central-1"; readonly ME_CENTRAL_1: "me-central-1"; readonly ME_SOUTH_1: "me-south-1"; readonly MX_CENTRAL_1: "mx-central-1"; readonly SA_EAST_1: "sa-east-1"; readonly US_EAST_1: "us-east-1"; readonly US_EAST_2: "us-east-2"; readonly US_WEST_1: "us-west-1"; readonly US_WEST_2: "us-west-2"; }; /** * @public */ export type SupportedS3Region = (typeof SupportedS3Region)[keyof typeof SupportedS3Region]; /** * @public * @enum */ export declare const AnalysisFormat: { readonly PYSPARK_1_0: "PYSPARK_1_0"; readonly SQL: "SQL"; }; /** * @public */ export type AnalysisFormat = (typeof AnalysisFormat)[keyof typeof AnalysisFormat]; /** * @public * @enum */ export declare const LogExportAnalysisType: { readonly PROTECTED_QUERY: "PROTECTED_QUERY"; }; /** * @public */ export type LogExportAnalysisType = (typeof LogExportAnalysisType)[keyof typeof LogExportAnalysisType]; /** * @public * @enum */ export declare const AnalysisLogExportStatus: { readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUCCESS: "SUCCESS"; }; /** * @public */ export type AnalysisLogExportStatus = (typeof AnalysisLogExportStatus)[keyof typeof AnalysisLogExportStatus]; /** * @public * @enum */ export declare const AnalysisMethod: { readonly DIRECT_JOB: "DIRECT_JOB"; readonly DIRECT_QUERY: "DIRECT_QUERY"; readonly MULTIPLE: "MULTIPLE"; }; /** * @public */ export type AnalysisMethod = (typeof AnalysisMethod)[keyof typeof AnalysisMethod]; /** * @public * @enum */ export declare const ParameterType: { readonly BIGINT: "BIGINT"; readonly BINARY: "BINARY"; readonly BOOLEAN: "BOOLEAN"; readonly BYTE: "BYTE"; readonly CHAR: "CHAR"; readonly CHARACTER: "CHARACTER"; readonly DATE: "DATE"; readonly DECIMAL: "DECIMAL"; readonly DOUBLE: "DOUBLE"; readonly DOUBLE_PRECISION: "DOUBLE_PRECISION"; readonly FLOAT: "FLOAT"; readonly INT: "INT"; readonly INTEGER: "INTEGER"; readonly LONG: "LONG"; readonly NUMERIC: "NUMERIC"; readonly REAL: "REAL"; readonly SHORT: "SHORT"; readonly SMALLINT: "SMALLINT"; readonly STRING: "STRING"; readonly TIME: "TIME"; readonly TIMESTAMP: "TIMESTAMP"; readonly TIMESTAMPTZ: "TIMESTAMPTZ"; readonly TIMESTAMP_LTZ: "TIMESTAMP_LTZ"; readonly TIMESTAMP_NTZ: "TIMESTAMP_NTZ"; readonly TIMETZ: "TIMETZ"; readonly TINYINT: "TINYINT"; readonly VARBYTE: "VARBYTE"; readonly VARCHAR: "VARCHAR"; }; /** * @public */ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType]; /** * @public * @enum */ export declare const JoinOperator: { readonly AND: "AND"; readonly OR: "OR"; }; /** * @public */ export type JoinOperator = (typeof JoinOperator)[keyof typeof JoinOperator]; /** * @public * @enum */ export declare const JoinRequiredOption: { readonly QUERY_RUNNER: "QUERY_RUNNER"; }; /** * @public */ export type JoinRequiredOption = (typeof JoinRequiredOption)[keyof typeof JoinRequiredOption]; /** * @public * @enum */ export declare const ScalarFunctions: { readonly ABS: "ABS"; readonly CAST: "CAST"; readonly CEILING: "CEILING"; readonly COALESCE: "COALESCE"; readonly CONVERT: "CONVERT"; readonly CURRENT_DATE: "CURRENT_DATE"; readonly DATEADD: "DATEADD"; readonly EXTRACT: "EXTRACT"; readonly FLOOR: "FLOOR"; readonly GETDATE: "GETDATE"; readonly LN: "LN"; readonly LOG: "LOG"; readonly LOWER: "LOWER"; readonly ROUND: "ROUND"; readonly RTRIM: "RTRIM"; readonly SQRT: "SQRT"; readonly SUBSTRING: "SUBSTRING"; readonly TO_CHAR: "TO_CHAR"; readonly TO_DATE: "TO_DATE"; readonly TO_NUMBER: "TO_NUMBER"; readonly TO_TIMESTAMP: "TO_TIMESTAMP"; readonly TRIM: "TRIM"; readonly TRUNC: "TRUNC"; readonly UPPER: "UPPER"; }; /** * @public */ export type ScalarFunctions = (typeof ScalarFunctions)[keyof typeof ScalarFunctions]; /** * @public * @enum */ export declare const AnalysisRuleType: { readonly AGGREGATION: "AGGREGATION"; readonly CUSTOM: "CUSTOM"; readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE"; readonly LIST: "LIST"; }; /** * @public */ export type AnalysisRuleType = (typeof AnalysisRuleType)[keyof typeof AnalysisRuleType]; /** * @public * @enum */ export declare const ErrorMessageType: { readonly DETAILED: "DETAILED"; }; /** * @public */ export type ErrorMessageType = (typeof ErrorMessageType)[keyof typeof ErrorMessageType]; /** * @public * @enum */ export declare const SyntheticDataColumnType: { readonly CATEGORICAL: "CATEGORICAL"; readonly NUMERICAL: "NUMERICAL"; }; /** * @public */ export type SyntheticDataColumnType = (typeof SyntheticDataColumnType)[keyof typeof SyntheticDataColumnType]; /** * @public * @enum */ export declare const AnalysisTemplateValidationStatus: { readonly INVALID: "INVALID"; readonly UNABLE_TO_VALIDATE: "UNABLE_TO_VALIDATE"; readonly VALID: "VALID"; }; /** * @public */ export type AnalysisTemplateValidationStatus = (typeof AnalysisTemplateValidationStatus)[keyof typeof AnalysisTemplateValidationStatus]; /** * @public * @enum */ export declare const AnalysisTemplateValidationType: { readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY"; }; /** * @public */ export type AnalysisTemplateValidationType = (typeof AnalysisTemplateValidationType)[keyof typeof AnalysisTemplateValidationType]; /** * @public * @enum */ export declare const ConflictExceptionReason: { readonly ALREADY_EXISTS: "ALREADY_EXISTS"; readonly INVALID_STATE: "INVALID_STATE"; readonly SUBRESOURCES_EXIST: "SUBRESOURCES_EXIST"; }; /** * @public */ export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason]; /** * @public * @enum */ export declare const ResourceType: { readonly COLLABORATION: "COLLABORATION"; readonly CONFIGURED_TABLE: "CONFIGURED_TABLE"; readonly CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION"; readonly MEMBERSHIP: "MEMBERSHIP"; }; /** * @public */ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED"; readonly IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY"; readonly INVALID_CONFIGURATION: "INVALID_CONFIGURATION"; readonly INVALID_QUERY: "INVALID_QUERY"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const AnalysisType: { readonly ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS"; readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS"; }; /** * @public */ export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType]; /** * @public * @enum */ export declare const AnalyticsEngine: { readonly CLEAN_ROOMS_SQL: "CLEAN_ROOMS_SQL"; readonly SPARK: "SPARK"; }; /** * @public */ export type AnalyticsEngine = (typeof AnalyticsEngine)[keyof typeof AnalyticsEngine]; /** * @public * @enum */ export declare const ApprovalStatus: { readonly APPROVED: "APPROVED"; readonly DENIED: "DENIED"; readonly PENDING: "PENDING"; }; /** * @public */ export type ApprovalStatus = (typeof ApprovalStatus)[keyof typeof ApprovalStatus]; /** * @public * @enum */ export declare const CommercialRegion: { readonly AF_SOUTH_1: "af-south-1"; readonly AP_EAST_1: "ap-east-1"; readonly AP_EAST_2: "ap-east-2"; readonly AP_NORTHEAST_1: "ap-northeast-1"; readonly AP_NORTHEAST_2: "ap-northeast-2"; readonly AP_NORTHEAST_3: "ap-northeast-3"; readonly AP_SOUTHEAST_1: "ap-southeast-1"; readonly AP_SOUTHEAST_2: "ap-southeast-2"; readonly AP_SOUTHEAST_3: "ap-southeast-3"; readonly AP_SOUTHEAST_4: "ap-southeast-4"; readonly AP_SOUTHEAST_5: "ap-southeast-5"; readonly AP_SOUTHEAST_7: "ap-southeast-7"; readonly AP_SOUTH_1: "ap-south-1"; readonly AP_SOUTH_2: "ap-south-2"; readonly CA_CENTRAL_1: "ca-central-1"; readonly CA_WEST_1: "ca-west-1"; readonly EU_CENTRAL_1: "eu-central-1"; readonly EU_CENTRAL_2: "eu-central-2"; readonly EU_NORTH_1: "eu-north-1"; readonly EU_SOUTH_1: "eu-south-1"; readonly EU_SOUTH_2: "eu-south-2"; readonly EU_WEST_1: "eu-west-1"; readonly EU_WEST_2: "eu-west-2"; readonly EU_WEST_3: "eu-west-3"; readonly IL_CENTRAL_1: "il-central-1"; readonly ME_CENTRAL_1: "me-central-1"; readonly ME_SOUTH_1: "me-south-1"; readonly MX_CENTRAL_1: "mx-central-1"; readonly SA_EAST_1: "sa-east-1"; readonly US_EAST_1: "us-east-1"; readonly US_EAST_2: "us-east-2"; readonly US_WEST_1: "us-west-1"; readonly US_WEST_2: "us-west-2"; }; /** * @public */ export type CommercialRegion = (typeof CommercialRegion)[keyof typeof CommercialRegion]; /** * @public * @enum */ export declare const AutoApprovedChangeType: { readonly ADD_MEMBER: "ADD_MEMBER"; readonly GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY"; readonly GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY"; readonly REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY"; readonly REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY"; }; /** * @public */ export type AutoApprovedChangeType = (typeof AutoApprovedChangeType)[keyof typeof AutoApprovedChangeType]; /** * @public * @enum */ export declare const SchemaConfiguration: { readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY"; }; /** * @public */ export type SchemaConfiguration = (typeof SchemaConfiguration)[keyof typeof SchemaConfiguration]; /** * @public * @enum */ export declare const SchemaStatusReasonCode: { readonly ADDITIONAL_ANALYSES_NOT_ALLOWED: "ADDITIONAL_ANALYSES_NOT_ALLOWED"; readonly ADDITIONAL_ANALYSES_NOT_CONFIGURED: "ADDITIONAL_ANALYSES_NOT_CONFIGURED"; readonly ANALYSIS_PROVIDERS_NOT_CONFIGURED: "ANALYSIS_PROVIDERS_NOT_CONFIGURED"; readonly ANALYSIS_RULE_MISSING: "ANALYSIS_RULE_MISSING"; readonly ANALYSIS_RULE_TYPES_NOT_COMPATIBLE: "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE"; readonly ANALYSIS_TEMPLATES_NOT_CONFIGURED: "ANALYSIS_TEMPLATES_NOT_CONFIGURED"; readonly COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED: "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED"; readonly DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED"; readonly ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED"; readonly INTERMEDIATE_TABLE_ANALYSIS_RULE_MISSING: "INTERMEDIATE_TABLE_ANALYSIS_RULE_MISSING"; readonly INTERMEDIATE_TABLE_BASE_TABLE_REMOVED: "INTERMEDIATE_TABLE_BASE_TABLE_REMOVED"; readonly INTERMEDIATE_TABLE_DISALLOWED_BY_DATA_PROVIDER: "INTERMEDIATE_TABLE_DISALLOWED_BY_DATA_PROVIDER"; readonly INTERMEDIATE_TABLE_INHERITED_CONSTRAINTS_VIOLATED: "INTERMEDIATE_TABLE_INHERITED_CONSTRAINTS_VIOLATED"; readonly INTERMEDIATE_TABLE_NOT_POPULATED: "INTERMEDIATE_TABLE_NOT_POPULATED"; readonly INTERMEDIATE_TABLE_RETENTION_PERIOD_EXPIRED: "INTERMEDIATE_TABLE_RETENTION_PERIOD_EXPIRED"; readonly RESULT_RECEIVERS_NOT_ALLOWED: "RESULT_RECEIVERS_NOT_ALLOWED"; readonly RESULT_RECEIVERS_NOT_CONFIGURED: "RESULT_RECEIVERS_NOT_CONFIGURED"; }; /** * @public */ export type SchemaStatusReasonCode = (typeof SchemaStatusReasonCode)[keyof typeof SchemaStatusReasonCode]; /** * @public * @enum */ export declare const SchemaStatus: { readonly NOT_READY: "NOT_READY"; readonly READY: "READY"; }; /** * @public */ export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus]; /** * @public * @enum */ export declare const IdNamespaceType: { readonly SOURCE: "SOURCE"; readonly TARGET: "TARGET"; }; /** * @public */ export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType]; /** * @public * @enum */ export declare const SelectedAnalysisMethod: { readonly DIRECT_JOB: "DIRECT_JOB"; readonly DIRECT_QUERY: "DIRECT_QUERY"; }; /** * @public */ export type SelectedAnalysisMethod = (typeof SelectedAnalysisMethod)[keyof typeof SelectedAnalysisMethod]; /** * @public * @enum */ export declare const SchemaType: { readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE"; readonly INTERMEDIATE_TABLE: "INTERMEDIATE_TABLE"; readonly TABLE: "TABLE"; }; /** * @public */ export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType]; /** * @public * @enum */ export declare const MemberAbility: { readonly CAN_EXPORT_QUERY_ANALYSIS_LOG: "CAN_EXPORT_QUERY_ANALYSIS_LOG"; readonly CAN_QUERY: "CAN_QUERY"; readonly CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS"; readonly CAN_RUN_JOB: "CAN_RUN_JOB"; }; /** * @public */ export type MemberAbility = (typeof MemberAbility)[keyof typeof MemberAbility]; /** * @public * @enum */ export declare const CustomMLMemberAbility: { readonly CAN_RECEIVE_INFERENCE_OUTPUT: "CAN_RECEIVE_INFERENCE_OUTPUT"; readonly CAN_RECEIVE_MODEL_OUTPUT: "CAN_RECEIVE_MODEL_OUTPUT"; }; /** * @public */ export type CustomMLMemberAbility = (typeof CustomMLMemberAbility)[keyof typeof CustomMLMemberAbility]; /** * @public * @enum */ export declare const CollaborationJobLogStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type CollaborationJobLogStatus = (typeof CollaborationJobLogStatus)[keyof typeof CollaborationJobLogStatus]; /** * @public * @enum */ export declare const CollaborationQueryLogStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type CollaborationQueryLogStatus = (typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus]; /** * @public * @enum */ export declare const MemberStatus: { readonly ACTIVE: "ACTIVE"; readonly INVITED: "INVITED"; readonly LEFT: "LEFT"; readonly REMOVED: "REMOVED"; }; /** * @public */ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus]; /** * @public * @enum */ export declare const ChangeSpecificationType: { readonly COLLABORATION: "COLLABORATION"; readonly MEMBER: "MEMBER"; }; /** * @public */ export type ChangeSpecificationType = (typeof ChangeSpecificationType)[keyof typeof ChangeSpecificationType]; /** * @public * @enum */ export declare const ChangeType: { readonly ADD_MEMBER: "ADD_MEMBER"; readonly ADD_PAYER_CANDIDATE: "ADD_PAYER_CANDIDATE"; readonly EDIT_AUTO_APPROVED_CHANGE_TYPES: "EDIT_AUTO_APPROVED_CHANGE_TYPES"; readonly GRANT_CAN_RECEIVE_INFERENCE_OUTPUT: "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT"; readonly GRANT_CAN_RECEIVE_MODEL_OUTPUT: "GRANT_CAN_RECEIVE_MODEL_OUTPUT"; readonly GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY"; readonly GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY"; readonly REMOVE_PAYER_CANDIDATE: "REMOVE_PAYER_CANDIDATE"; readonly REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT: "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT"; readonly REVOKE_CAN_RECEIVE_MODEL_OUTPUT: "REVOKE_CAN_RECEIVE_MODEL_OUTPUT"; readonly REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY"; readonly REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY"; }; /** * @public */ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType]; /** * @public * @enum */ export declare const ChangeRequestStatus: { readonly APPROVED: "APPROVED"; readonly CANCELLED: "CANCELLED"; readonly COMMITTED: "COMMITTED"; readonly DENIED: "DENIED"; readonly PENDING: "PENDING"; }; /** * @public */ export type ChangeRequestStatus = (typeof ChangeRequestStatus)[keyof typeof ChangeRequestStatus]; /** * @public * @enum */ export declare const PrivacyBudgetTemplateAutoRefresh: { readonly CALENDAR_MONTH: "CALENDAR_MONTH"; readonly NONE: "NONE"; }; /** * @public */ export type PrivacyBudgetTemplateAutoRefresh = (typeof PrivacyBudgetTemplateAutoRefresh)[keyof typeof PrivacyBudgetTemplateAutoRefresh]; /** * @public * @enum */ export declare const PrivacyBudgetType: { readonly ACCESS_BUDGET: "ACCESS_BUDGET"; readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY"; }; /** * @public */ export type PrivacyBudgetType = (typeof PrivacyBudgetType)[keyof typeof PrivacyBudgetType]; /** * @public * @enum */ export declare const DifferentialPrivacyAggregationType: { readonly AVG: "AVG"; readonly COUNT: "COUNT"; readonly COUNT_DISTINCT: "COUNT_DISTINCT"; readonly STDDEV: "STDDEV"; readonly SUM: "SUM"; }; /** * @public */ export type DifferentialPrivacyAggregationType = (typeof DifferentialPrivacyAggregationType)[keyof typeof DifferentialPrivacyAggregationType]; /** * @public * @enum */ export declare const FilterableMemberStatus: { readonly ACTIVE: "ACTIVE"; readonly INVITED: "INVITED"; }; /** * @public */ export type FilterableMemberStatus = (typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus]; /** * @public * @enum */ export declare const ChangeRequestAction: { readonly APPROVE: "APPROVE"; readonly CANCEL: "CANCEL"; readonly COMMIT: "COMMIT"; readonly DENY: "DENY"; }; /** * @public */ export type ChangeRequestAction = (typeof ChangeRequestAction)[keyof typeof ChangeRequestAction]; /** * @public * @enum */ export declare const ConfiguredTableAssociationAnalysisRuleType: { readonly AGGREGATION: "AGGREGATION"; readonly CUSTOM: "CUSTOM"; readonly LIST: "LIST"; }; /** * @public */ export type ConfiguredTableAssociationAnalysisRuleType = (typeof ConfiguredTableAssociationAnalysisRuleType)[keyof typeof ConfiguredTableAssociationAnalysisRuleType]; /** * @public * @enum */ export declare const ResourceStatus: { readonly BASE_TABLE_REMOVED: "BASE_TABLE_REMOVED"; readonly CREATED: "CREATED"; readonly DISALLOWED_BY_DATA_PROVIDER: "DISALLOWED_BY_DATA_PROVIDER"; readonly POPULATE_FAILED: "POPULATE_FAILED"; readonly POPULATE_STARTED: "POPULATE_STARTED"; readonly POPULATE_SUCCESS: "POPULATE_SUCCESS"; readonly RETENTION_PERIOD_EXPIRED: "RETENTION_PERIOD_EXPIRED"; }; /** * @public */ export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus]; /** * @public * @enum */ export declare const ChildResourceType: { readonly INTERMEDIATE_TABLE: "INTERMEDIATE_TABLE"; }; /** * @public */ export type ChildResourceType = (typeof ChildResourceType)[keyof typeof ChildResourceType]; /** * @public * @enum */ export declare const ConfiguredTableAnalysisRuleType: { readonly AGGREGATION: "AGGREGATION"; readonly CUSTOM: "CUSTOM"; readonly LIST: "LIST"; }; /** * @public */ export type ConfiguredTableAnalysisRuleType = (typeof ConfiguredTableAnalysisRuleType)[keyof typeof ConfiguredTableAnalysisRuleType]; /** * @public * @enum */ export declare const JobType: { readonly BATCH: "BATCH"; readonly DELETE_ONLY: "DELETE_ONLY"; readonly INCREMENTAL: "INCREMENTAL"; }; /** * @public */ export type JobType = (typeof JobType)[keyof typeof JobType]; /** * @public * @enum */ export declare const IntermediateTableAnalysisRuleType: { readonly CUSTOM: "CUSTOM"; }; /** * @public */ export type IntermediateTableAnalysisRuleType = (typeof IntermediateTableAnalysisRuleType)[keyof typeof IntermediateTableAnalysisRuleType]; /** * @public * @enum */ export declare const PopulateIntermediateTableAnalysisType: { readonly QUERY: "QUERY"; }; /** * @public */ export type PopulateIntermediateTableAnalysisType = (typeof PopulateIntermediateTableAnalysisType)[keyof typeof PopulateIntermediateTableAnalysisType]; /** * @public * @enum */ export declare const BaseTableDependencyType: { readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE"; readonly INTERMEDIATE_TABLE: "INTERMEDIATE_TABLE"; readonly TABLE: "TABLE"; }; /** * @public */ export type BaseTableDependencyType = (typeof BaseTableDependencyType)[keyof typeof BaseTableDependencyType]; /** * @public * @enum */ export declare const IntermediateTableStatus: { readonly BASE_TABLE_REMOVED: "BASE_TABLE_REMOVED"; readonly CREATED: "CREATED"; readonly DISALLOWED_BY_DATA_PROVIDER: "DISALLOWED_BY_DATA_PROVIDER"; readonly POPULATE_FAILED: "POPULATE_FAILED"; readonly POPULATE_STARTED: "POPULATE_STARTED"; readonly POPULATE_SUCCESS: "POPULATE_SUCCESS"; readonly RETENTION_PERIOD_EXPIRED: "RETENTION_PERIOD_EXPIRED"; }; /** * @public */ export type IntermediateTableStatus = (typeof IntermediateTableStatus)[keyof typeof IntermediateTableStatus]; /** * @public * @enum */ export declare const BaseTableParentType: { readonly DIRECT: "DIRECT"; readonly INDIRECT: "INDIRECT"; }; /** * @public */ export type BaseTableParentType = (typeof BaseTableParentType)[keyof typeof BaseTableParentType]; /** * @public * @enum */ export declare const IntermediateTableVersionStatus: { readonly POPULATE_FAILED: "POPULATE_FAILED"; readonly POPULATE_STARTED: "POPULATE_STARTED"; readonly POPULATE_SUCCESS: "POPULATE_SUCCESS"; readonly RETENTION_PERIOD_EXPIRED: "RETENTION_PERIOD_EXPIRED"; }; /** * @public */ export type IntermediateTableVersionStatus = (typeof IntermediateTableVersionStatus)[keyof typeof IntermediateTableVersionStatus]; /** * @public * @enum */ export declare const WorkerComputeType: { readonly CR1X: "CR.1X"; readonly CR4X: "CR.4X"; readonly CR8X: "CR.8X"; }; /** * @public */ export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType]; /** * @public * @enum */ export declare const ResultFormat: { readonly CSV: "CSV"; readonly PARQUET: "PARQUET"; }; /** * @public */ export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat]; /** * @public * @enum */ export declare const MembershipJobLogStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type MembershipJobLogStatus = (typeof MembershipJobLogStatus)[keyof typeof MembershipJobLogStatus]; /** * @public * @enum */ export declare const MembershipQueryLogStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type MembershipQueryLogStatus = (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus]; /** * @public * @enum */ export declare const MembershipStatus: { readonly ACTIVE: "ACTIVE"; readonly COLLABORATION_DELETED: "COLLABORATION_DELETED"; readonly REMOVED: "REMOVED"; }; /** * @public */ export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus]; /** * @public * @enum */ export declare const ProtectedJobWorkerComputeType: { readonly CR1X: "CR.1X"; readonly CR4X: "CR.4X"; }; /** * @public */ export type ProtectedJobWorkerComputeType = (typeof ProtectedJobWorkerComputeType)[keyof typeof ProtectedJobWorkerComputeType]; /** * @public * @enum */ export declare const ProtectedJobStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly FAILED: "FAILED"; readonly STARTED: "STARTED"; readonly SUBMITTED: "SUBMITTED"; readonly SUCCESS: "SUCCESS"; }; /** * @public */ export type ProtectedJobStatus = (typeof ProtectedJobStatus)[keyof typeof ProtectedJobStatus]; /** * @public * @enum */ export declare const ProtectedQueryStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly FAILED: "FAILED"; readonly STARTED: "STARTED"; readonly SUBMITTED: "SUBMITTED"; readonly SUCCESS: "SUCCESS"; readonly TIMED_OUT: "TIMED_OUT"; }; /** * @public */ export type ProtectedQueryStatus = (typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus]; /** * @public * @enum */ export declare const ProtectedJobAnalysisType: { readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS"; }; /** * @public */ export type ProtectedJobAnalysisType = (typeof ProtectedJobAnalysisType)[keyof typeof ProtectedJobAnalysisType]; /** * @public * @enum */ export declare const ProtectedJobType: { readonly PYSPARK: "PYSPARK"; }; /** * @public */ export type ProtectedJobType = (typeof ProtectedJobType)[keyof typeof ProtectedJobType]; /** * @public * @enum */ export declare const ProtectedQueryType: { readonly SQL: "SQL"; }; /** * @public */ export type ProtectedQueryType = (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType]; /** * @public * @enum */ export declare const TargetProtectedJobStatus: { readonly CANCELLED: "CANCELLED"; }; /** * @public */ export type TargetProtectedJobStatus = (typeof TargetProtectedJobStatus)[keyof typeof TargetProtectedJobStatus]; /** * @public * @enum */ export declare const TargetProtectedQueryStatus: { readonly CANCELLED: "CANCELLED"; }; /** * @public */ export type TargetProtectedQueryStatus = (typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];