@aws-sdk/client-glue 3.1095.0 → 3.1097.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist-cjs/index.js +221 -90
- package/dist-es/Glue.js +2 -0
- package/dist-es/commands/BatchGetDataQualityRulesetEvaluationRunCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +26 -13
- package/dist-es/schemas/schemas_0.js +177 -76
- package/dist-types/Glue.d.ts +7 -0
- package/dist-types/GlueClient.d.ts +3 -2
- package/dist-types/commands/BatchGetDataQualityResultCommand.d.ts +11 -0
- package/dist-types/commands/BatchGetDataQualityRulesetEvaluationRunCommand.d.ts +202 -0
- package/dist-types/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateCrawlerCommand.d.ts +1 -2
- package/dist-types/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityResultCommand.d.ts +12 -1
- package/dist-types/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +4 -1
- package/dist-types/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +48 -0
- package/dist-types/commands/ListDataQualityRuleRecommendationRunsCommand.d.ts +4 -0
- package/dist-types/commands/ListDataQualityStatisticsCommand.d.ts +9 -0
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +3 -0
- package/dist-types/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +48 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +66 -29
- package/dist-types/models/models_0.d.ts +305 -439
- package/dist-types/models/models_1.d.ts +440 -342
- package/dist-types/models/models_2.d.ts +358 -222
- package/dist-types/models/models_3.d.ts +218 -4
- package/dist-types/schemas/schemas_0.d.ts +12 -0
- package/dist-types/ts3.4/Glue.d.ts +17 -0
- package/dist-types/ts3.4/GlueClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/BatchGetDataQualityRulesetEvaluationRunCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateCrawlerCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -16
- package/dist-types/ts3.4/models/models_0.d.ts +74 -76
- package/dist-types/ts3.4/models/models_1.d.ts +80 -87
- package/dist-types/ts3.4/models/models_2.d.ts +91 -57
- package/dist-types/ts3.4/models/models_3.d.ts +55 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/package.json +3 -3
|
@@ -1,7 +1,216 @@
|
|
|
1
|
-
import type { Compatibility, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceState, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
|
|
2
|
-
import type { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogInput, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column,
|
|
3
|
-
import type { ColumnStatistics, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
4
|
-
import type { ColumnRowFilter,
|
|
1
|
+
import type { Comparator, Compatibility, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceShareType, ResourceState, Sort, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
|
|
2
|
+
import type { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogInput, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataQualityEvaluationRunAdditionalRunOptions, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, Route, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogIcebergSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergCatalogTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlDetails, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, Trigger, Union } from "./models_0";
|
|
3
|
+
import type { ColumnStatistics, ConnectionInput, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
4
|
+
import type { ColumnRowFilter, DataQualityRuleRecommendationRunAdditionalRunOptions, FederatedTable, IcebergTableMetadata, SchemaVersionNumber, SearchAttributeFilter, SearchMapFilter, SearchSort, ViewDefinition, ViewValidation } from "./models_2";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Defines a property predicate.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface PropertyPredicate {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The key of the property.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Key?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The value of the property.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
Value?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The comparator used to compare this property to others.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
Comparator?: Comparator | undefined;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* <p>Specifies a field to sort by and a sort order.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface SortCriterion {
|
|
31
|
+
/**
|
|
32
|
+
* <p>The name of the field on which to sort.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
FieldName?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>An ascending or descending sort.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
Sort?: Sort | undefined;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export interface SearchTablesRequest {
|
|
46
|
+
/**
|
|
47
|
+
* <p>A unique identifier, consisting of <code>
|
|
48
|
+
* <i>account_id</i>
|
|
49
|
+
* </code>.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
CatalogId?: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>A continuation token, included if this is a continuation call.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
NextToken?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>A list of key-value pairs, and a comparator used to filter the search results. Returns all entities matching the predicate.</p>
|
|
60
|
+
* <p>The <code>Comparator</code> member of the <code>PropertyPredicate</code> struct is used only for time fields, and can be omitted for other field types. Also, when comparing string values, such as when <code>Key=Name</code>, a fuzzy match algorithm is used. The <code>Key</code> field (for example, the value of the <code>Name</code> field) is split on certain punctuation characters, for example, -, :, #, etc. into tokens. Then each token is exact-match compared with the <code>Value</code> member of <code>PropertyPredicate</code>. For example, if <code>Key=Name</code> and <code>Value=link</code>, tables named <code>customer-link</code> and <code>xx-link-yy</code> are returned, but <code>xxlinkyy</code> is not returned.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Filters?: PropertyPredicate[] | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>A string used for a text search.</p>
|
|
66
|
+
* <p>Specifying a value in quotes filters based on an exact match to the value.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
SearchText?: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>A list of criteria for sorting the results by a field name, in an ascending or descending order.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
SortCriteria?: SortCriterion[] | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The maximum number of tables to return in a single response.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
MaxResults?: number | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>Allows you to specify that you want to search the tables shared with your account. The allowable values are <code>FOREIGN</code> or <code>ALL</code>. </p>
|
|
82
|
+
* <ul>
|
|
83
|
+
* <li>
|
|
84
|
+
* <p>If set to <code>FOREIGN</code>, will search the tables shared with your account. </p>
|
|
85
|
+
* </li>
|
|
86
|
+
* <li>
|
|
87
|
+
* <p>If set to <code>ALL</code>, will search the tables shared with your account, as well as the tables in yor local account. </p>
|
|
88
|
+
* </li>
|
|
89
|
+
* </ul>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
ResourceShareType?: ResourceShareType | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
IncludeStatusDetails?: boolean | undefined;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export interface StartBlueprintRunRequest {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The name of the blueprint.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
BlueprintName: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>Specifies the parameters as a <code>BlueprintParameters</code> object.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
Parameters?: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>Specifies the IAM role used to create the workflow.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
RoleArn: string | undefined;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export interface StartBlueprintRunResponse {
|
|
123
|
+
/**
|
|
124
|
+
* <p>The run ID for this blueprint run.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
RunId?: string | undefined;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export interface StartColumnStatisticsTaskRunRequest {
|
|
133
|
+
/**
|
|
134
|
+
* <p>The name of the database where the table resides.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
DatabaseName: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>The name of the table to generate statistics.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
TableName: string | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* <p>A list of the column names to generate statistics. If none is supplied, all column names for the table will be used by default.</p>
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
ColumnNameList?: string[] | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* <p>The IAM role that the service assumes to generate statistics.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
Role: string | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* <p>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.</p>
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
SampleSize?: number | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* <p>The ID of the Data Catalog where the table reside. If none is supplied, the Amazon Web Services account ID is used by default.</p>
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
CatalogID?: string | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* <p>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
SecurityConfiguration?: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export interface StartColumnStatisticsTaskRunResponse {
|
|
173
|
+
/**
|
|
174
|
+
* <p>The identifier for the column statistics task run.</p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
ColumnStatisticsTaskRunId?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export interface StartColumnStatisticsTaskRunScheduleRequest {
|
|
183
|
+
/**
|
|
184
|
+
* <p>The name of the database where the table resides.</p>
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
DatabaseName: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* <p>The name of the table for which to start a column statistic task run schedule.</p>
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
TableName: string | undefined;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export interface StartColumnStatisticsTaskRunScheduleResponse {
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export interface StartCrawlerRequest {
|
|
203
|
+
/**
|
|
204
|
+
* <p>Name of the crawler to start.</p>
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
Name: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export interface StartCrawlerResponse {
|
|
213
|
+
}
|
|
5
214
|
/**
|
|
6
215
|
* @public
|
|
7
216
|
*/
|
|
@@ -57,6 +266,11 @@ export interface StartDataQualityRuleRecommendationRunRequest {
|
|
|
57
266
|
* @public
|
|
58
267
|
*/
|
|
59
268
|
ClientToken?: string | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* <p>Additional run options you can specify for a recommendation run.</p>
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
AdditionalRunOptions?: DataQualityRuleRecommendationRunAdditionalRunOptions | undefined;
|
|
60
274
|
}
|
|
61
275
|
/**
|
|
62
276
|
* @public
|
|
@@ -100,6 +100,8 @@ export declare var BatchGetCustomEntityTypesRequest$: StaticStructureSchema;
|
|
|
100
100
|
export declare var BatchGetCustomEntityTypesResponse$: StaticStructureSchema;
|
|
101
101
|
export declare var BatchGetDataQualityResultRequest$: StaticStructureSchema;
|
|
102
102
|
export declare var BatchGetDataQualityResultResponse$: StaticStructureSchema;
|
|
103
|
+
export declare var BatchGetDataQualityRulesetEvaluationRunRequest$: StaticStructureSchema;
|
|
104
|
+
export declare var BatchGetDataQualityRulesetEvaluationRunResponse$: StaticStructureSchema;
|
|
103
105
|
export declare var BatchGetDevEndpointsRequest$: StaticStructureSchema;
|
|
104
106
|
export declare var BatchGetDevEndpointsResponse$: StaticStructureSchema;
|
|
105
107
|
export declare var BatchGetIterableFormsRequest$: StaticStructureSchema;
|
|
@@ -154,6 +156,7 @@ export declare var CatalogProperties$: StaticStructureSchema;
|
|
|
154
156
|
export declare var CatalogPropertiesOutput$: StaticStructureSchema;
|
|
155
157
|
export declare var CatalogSchemaChangePolicy$: StaticStructureSchema;
|
|
156
158
|
export declare var CatalogSource$: StaticStructureSchema;
|
|
159
|
+
export declare var CatalogTableConfigOptions$: StaticStructureSchema;
|
|
157
160
|
export declare var CatalogTarget$: StaticStructureSchema;
|
|
158
161
|
export declare var CheckSchemaVersionValidityInput$: StaticStructureSchema;
|
|
159
162
|
export declare var CheckSchemaVersionValidityResponse$: StaticStructureSchema;
|
|
@@ -290,9 +293,12 @@ export declare var DataQualityObservation$: StaticStructureSchema;
|
|
|
290
293
|
export declare var DataQualityResult$: StaticStructureSchema;
|
|
291
294
|
export declare var DataQualityResultDescription$: StaticStructureSchema;
|
|
292
295
|
export declare var DataQualityResultFilterCriteria$: StaticStructureSchema;
|
|
296
|
+
export declare var DataQualityRuleRecommendationRunAdditionalRunOptions$: StaticStructureSchema;
|
|
293
297
|
export declare var DataQualityRuleRecommendationRunDescription$: StaticStructureSchema;
|
|
294
298
|
export declare var DataQualityRuleRecommendationRunFilter$: StaticStructureSchema;
|
|
295
299
|
export declare var DataQualityRuleResult$: StaticStructureSchema;
|
|
300
|
+
export declare var DataQualityRuleResultsOptions$: StaticStructureSchema;
|
|
301
|
+
export declare var DataQualityRulesetEvaluationRun$: StaticStructureSchema;
|
|
296
302
|
export declare var DataQualityRulesetEvaluationRunDescription$: StaticStructureSchema;
|
|
297
303
|
export declare var DataQualityRulesetEvaluationRunFilter$: StaticStructureSchema;
|
|
298
304
|
export declare var DataQualityRulesetFilterCriteria$: StaticStructureSchema;
|
|
@@ -402,6 +408,8 @@ export declare var DirectKinesisSource$: StaticStructureSchema;
|
|
|
402
408
|
export declare var DirectSchemaChangePolicy$: StaticStructureSchema;
|
|
403
409
|
export declare var DisassociateGlossaryTermsRequest$: StaticStructureSchema;
|
|
404
410
|
export declare var DisassociateGlossaryTermsResponse$: StaticStructureSchema;
|
|
411
|
+
export declare var DistributionData$: StaticStructureSchema;
|
|
412
|
+
export declare var DistributionResultsOptions$: StaticStructureSchema;
|
|
405
413
|
export declare var DoubleColumnStatisticsData$: StaticStructureSchema;
|
|
406
414
|
export declare var DQResultsPublishingOptions$: StaticStructureSchema;
|
|
407
415
|
export declare var DQStopJobOnFailureOptions$: StaticStructureSchema;
|
|
@@ -771,6 +779,7 @@ export declare var OAuth2ClientApplication$: StaticStructureSchema;
|
|
|
771
779
|
export declare var OAuth2Credentials$: StaticStructureSchema;
|
|
772
780
|
export declare var OAuth2Properties$: StaticStructureSchema;
|
|
773
781
|
export declare var OAuth2PropertiesInput$: StaticStructureSchema;
|
|
782
|
+
export declare var ObservationResultsOptions$: StaticStructureSchema;
|
|
774
783
|
export declare var OffsetConfiguration$: StaticStructureSchema;
|
|
775
784
|
export declare var OpenTableFormatInput$: StaticStructureSchema;
|
|
776
785
|
export declare var Option$: StaticStructureSchema;
|
|
@@ -795,6 +804,7 @@ export declare var Predecessor$: StaticStructureSchema;
|
|
|
795
804
|
export declare var Predicate$: StaticStructureSchema;
|
|
796
805
|
export declare var PrincipalPermissions$: StaticStructureSchema;
|
|
797
806
|
export declare var ProfileConfiguration$: StaticStructureSchema;
|
|
807
|
+
export declare var ProfilingResultsOptions$: StaticStructureSchema;
|
|
798
808
|
export declare var Property$: StaticStructureSchema;
|
|
799
809
|
export declare var PropertyPredicate$: StaticStructureSchema;
|
|
800
810
|
export declare var PutAssetRequest$: StaticStructureSchema;
|
|
@@ -846,6 +856,7 @@ export declare var ResumeWorkflowRunResponse$: StaticStructureSchema;
|
|
|
846
856
|
export declare var RetentionConfiguration$: StaticStructureSchema;
|
|
847
857
|
export declare var RetentionMetrics$: StaticStructureSchema;
|
|
848
858
|
export declare var Route$: StaticStructureSchema;
|
|
859
|
+
export declare var RowLevelResultsOptions$: StaticStructureSchema;
|
|
849
860
|
export declare var RunIdentifier$: StaticStructureSchema;
|
|
850
861
|
export declare var RunMetrics$: StaticStructureSchema;
|
|
851
862
|
export declare var RunStatementRequest$: StaticStructureSchema;
|
|
@@ -1106,6 +1117,7 @@ export declare var BatchGetBlueprints$: StaticOperationSchema;
|
|
|
1106
1117
|
export declare var BatchGetCrawlers$: StaticOperationSchema;
|
|
1107
1118
|
export declare var BatchGetCustomEntityTypes$: StaticOperationSchema;
|
|
1108
1119
|
export declare var BatchGetDataQualityResult$: StaticOperationSchema;
|
|
1120
|
+
export declare var BatchGetDataQualityRulesetEvaluationRun$: StaticOperationSchema;
|
|
1109
1121
|
export declare var BatchGetDevEndpoints$: StaticOperationSchema;
|
|
1110
1122
|
export declare var BatchGetIterableForms$: StaticOperationSchema;
|
|
1111
1123
|
export declare var BatchGetJobs$: StaticOperationSchema;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
BatchGetDataQualityResultCommandInput,
|
|
44
44
|
BatchGetDataQualityResultCommandOutput,
|
|
45
45
|
} from "./commands/BatchGetDataQualityResultCommand";
|
|
46
|
+
import {
|
|
47
|
+
BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
48
|
+
BatchGetDataQualityRulesetEvaluationRunCommandOutput,
|
|
49
|
+
} from "./commands/BatchGetDataQualityRulesetEvaluationRunCommand";
|
|
46
50
|
import {
|
|
47
51
|
BatchGetDevEndpointsCommandInput,
|
|
48
52
|
BatchGetDevEndpointsCommandOutput,
|
|
@@ -1196,6 +1200,19 @@ export interface Glue {
|
|
|
1196
1200
|
options: __HttpHandlerOptions,
|
|
1197
1201
|
cb: (err: any, data?: BatchGetDataQualityResultCommandOutput) => void,
|
|
1198
1202
|
): void;
|
|
1203
|
+
batchGetDataQualityRulesetEvaluationRun(
|
|
1204
|
+
args: BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
1205
|
+
options?: __HttpHandlerOptions,
|
|
1206
|
+
): Promise<BatchGetDataQualityRulesetEvaluationRunCommandOutput>;
|
|
1207
|
+
batchGetDataQualityRulesetEvaluationRun(
|
|
1208
|
+
args: BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
1209
|
+
cb: (err: any, data?: BatchGetDataQualityRulesetEvaluationRunCommandOutput) => void,
|
|
1210
|
+
): void;
|
|
1211
|
+
batchGetDataQualityRulesetEvaluationRun(
|
|
1212
|
+
args: BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
1213
|
+
options: __HttpHandlerOptions,
|
|
1214
|
+
cb: (err: any, data?: BatchGetDataQualityRulesetEvaluationRunCommandOutput) => void,
|
|
1215
|
+
): void;
|
|
1199
1216
|
batchGetDevEndpoints(
|
|
1200
1217
|
args: BatchGetDevEndpointsCommandInput,
|
|
1201
1218
|
options?: __HttpHandlerOptions,
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
BatchGetDataQualityResultCommandInput,
|
|
74
74
|
BatchGetDataQualityResultCommandOutput,
|
|
75
75
|
} from "./commands/BatchGetDataQualityResultCommand";
|
|
76
|
+
import {
|
|
77
|
+
BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
78
|
+
BatchGetDataQualityRulesetEvaluationRunCommandOutput,
|
|
79
|
+
} from "./commands/BatchGetDataQualityRulesetEvaluationRunCommand";
|
|
76
80
|
import {
|
|
77
81
|
BatchGetDevEndpointsCommandInput,
|
|
78
82
|
BatchGetDevEndpointsCommandOutput,
|
|
@@ -1112,6 +1116,7 @@ export type ServiceInputTypes =
|
|
|
1112
1116
|
| BatchGetCrawlersCommandInput
|
|
1113
1117
|
| BatchGetCustomEntityTypesCommandInput
|
|
1114
1118
|
| BatchGetDataQualityResultCommandInput
|
|
1119
|
+
| BatchGetDataQualityRulesetEvaluationRunCommandInput
|
|
1115
1120
|
| BatchGetDevEndpointsCommandInput
|
|
1116
1121
|
| BatchGetIterableFormsCommandInput
|
|
1117
1122
|
| BatchGetJobsCommandInput
|
|
@@ -1409,6 +1414,7 @@ export type ServiceOutputTypes =
|
|
|
1409
1414
|
| BatchGetCrawlersCommandOutput
|
|
1410
1415
|
| BatchGetCustomEntityTypesCommandOutput
|
|
1411
1416
|
| BatchGetDataQualityResultCommandOutput
|
|
1417
|
+
| BatchGetDataQualityRulesetEvaluationRunCommandOutput
|
|
1412
1418
|
| BatchGetDevEndpointsCommandOutput
|
|
1413
1419
|
| BatchGetIterableFormsCommandOutput
|
|
1414
1420
|
| BatchGetJobsCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchGetDataQualityRulesetEvaluationRunRequest,
|
|
4
|
+
BatchGetDataQualityRulesetEvaluationRunResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface BatchGetDataQualityRulesetEvaluationRunCommandInput extends BatchGetDataQualityRulesetEvaluationRunRequest {}
|
|
8
|
+
export interface BatchGetDataQualityRulesetEvaluationRunCommandOutput
|
|
9
|
+
extends BatchGetDataQualityRulesetEvaluationRunResponse, __MetadataBearer {}
|
|
10
|
+
declare const BatchGetDataQualityRulesetEvaluationRunCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
15
|
+
BatchGetDataQualityRulesetEvaluationRunCommandOutput,
|
|
16
|
+
import("..").GlueClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchGetDataQualityRulesetEvaluationRunCommandInput,
|
|
24
|
+
BatchGetDataQualityRulesetEvaluationRunCommandOutput,
|
|
25
|
+
import("..").GlueClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class BatchGetDataQualityRulesetEvaluationRunCommand extends BatchGetDataQualityRulesetEvaluationRunCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: BatchGetDataQualityRulesetEvaluationRunRequest;
|
|
35
|
+
output: BatchGetDataQualityRulesetEvaluationRunResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: BatchGetDataQualityRulesetEvaluationRunCommandInput;
|
|
39
|
+
output: BatchGetDataQualityRulesetEvaluationRunCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { CreateClassifierRequest, CreateClassifierResponse } from "../models/
|
|
2
|
+
import { CreateClassifierRequest, CreateClassifierResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateClassifierCommandInput extends CreateClassifierRequest {}
|
|
5
5
|
export interface CreateClassifierCommandOutput extends CreateClassifierResponse, __MetadataBearer {}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
CreateColumnStatisticsTaskSettingsRequest,
|
|
4
4
|
CreateColumnStatisticsTaskSettingsResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface CreateColumnStatisticsTaskSettingsCommandInput extends CreateColumnStatisticsTaskSettingsRequest {}
|
|
8
8
|
export interface CreateColumnStatisticsTaskSettingsCommandOutput
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { CreateConnectionRequest, CreateConnectionResponse } from "../models/
|
|
2
|
+
import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateConnectionCommandInput extends CreateConnectionRequest {}
|
|
5
5
|
export interface CreateConnectionCommandOutput extends CreateConnectionResponse, __MetadataBearer {}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { CreateCrawlerRequest } from "../models/
|
|
3
|
-
import { CreateCrawlerResponse } from "../models/models_1";
|
|
2
|
+
import { CreateCrawlerRequest, CreateCrawlerResponse } from "../models/models_1";
|
|
4
3
|
export { __MetadataBearer };
|
|
5
4
|
export interface CreateCrawlerCommandInput extends CreateCrawlerRequest {}
|
|
6
5
|
export interface CreateCrawlerCommandOutput extends CreateCrawlerResponse, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { GetDataQualityModelRequest, GetDataQualityModelResponse } from "../models/
|
|
2
|
+
import { GetDataQualityModelRequest, GetDataQualityModelResponse } from "../models/models_2";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDataQualityModelCommandInput extends GetDataQualityModelRequest {}
|
|
5
5
|
export interface GetDataQualityModelCommandOutput
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetDataQualityModelResultRequest,
|
|
4
4
|
GetDataQualityModelResultResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_2";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetDataQualityModelResultCommandInput extends GetDataQualityModelResultRequest {}
|
|
8
8
|
export interface GetDataQualityModelResultCommandOutput
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { GetDataQualityResultRequest, GetDataQualityResultResponse } from "../models/
|
|
2
|
+
import { GetDataQualityResultRequest, GetDataQualityResultResponse } from "../models/models_2";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDataQualityResultCommandInput extends GetDataQualityResultRequest {}
|
|
5
5
|
export interface GetDataQualityResultCommandOutput
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
GetDataQualityRuleRecommendationRunRequest,
|
|
4
4
|
GetDataQualityRuleRecommendationRunResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_2";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface GetDataQualityRuleRecommendationRunCommandInput extends GetDataQualityRuleRecommendationRunRequest {}
|
|
8
8
|
export interface GetDataQualityRuleRecommendationRunCommandOutput
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { GetDataQualityRulesetRequest, GetDataQualityRulesetResponse } from "../models/
|
|
2
|
+
import { GetDataQualityRulesetRequest, GetDataQualityRulesetResponse } from "../models/models_2";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDataQualityRulesetCommandInput extends GetDataQualityRulesetRequest {}
|
|
5
5
|
export interface GetDataQualityRulesetCommandOutput
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { SearchTablesRequest } from "../models/
|
|
3
|
-
import { SearchTablesResponse } from "../models/models_3";
|
|
2
|
+
import { SearchTablesRequest, SearchTablesResponse } from "../models/models_3";
|
|
4
3
|
export { __MetadataBearer };
|
|
5
4
|
export interface SearchTablesCommandInput extends SearchTablesRequest {}
|
|
6
5
|
export interface SearchTablesCommandOutput extends SearchTablesResponse, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { StartBlueprintRunRequest, StartBlueprintRunResponse } from "../models/
|
|
2
|
+
import { StartBlueprintRunRequest, StartBlueprintRunResponse } from "../models/models_3";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartBlueprintRunCommandInput extends StartBlueprintRunRequest {}
|
|
5
5
|
export interface StartBlueprintRunCommandOutput
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
StartColumnStatisticsTaskRunRequest,
|
|
4
4
|
StartColumnStatisticsTaskRunResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_3";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface StartColumnStatisticsTaskRunCommandInput extends StartColumnStatisticsTaskRunRequest {}
|
|
8
8
|
export interface StartColumnStatisticsTaskRunCommandOutput
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
StartColumnStatisticsTaskRunScheduleRequest,
|
|
4
4
|
StartColumnStatisticsTaskRunScheduleResponse,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_3";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface StartColumnStatisticsTaskRunScheduleCommandInput extends StartColumnStatisticsTaskRunScheduleRequest {}
|
|
8
8
|
export interface StartColumnStatisticsTaskRunScheduleCommandOutput
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { StartCrawlerRequest, StartCrawlerResponse } from "../models/
|
|
2
|
+
import { StartCrawlerRequest, StartCrawlerResponse } from "../models/models_3";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartCrawlerCommandInput extends StartCrawlerRequest {}
|
|
5
5
|
export interface StartCrawlerCommandOutput extends StartCrawlerResponse, __MetadataBearer {}
|
|
@@ -8,6 +8,7 @@ export * from "./BatchGetBlueprintsCommand";
|
|
|
8
8
|
export * from "./BatchGetCrawlersCommand";
|
|
9
9
|
export * from "./BatchGetCustomEntityTypesCommand";
|
|
10
10
|
export * from "./BatchGetDataQualityResultCommand";
|
|
11
|
+
export * from "./BatchGetDataQualityRulesetEvaluationRunCommand";
|
|
11
12
|
export * from "./BatchGetDevEndpointsCommand";
|
|
12
13
|
export * from "./BatchGetIterableFormsCommand";
|
|
13
14
|
export * from "./BatchGetJobsCommand";
|
|
@@ -127,6 +127,39 @@ export declare const DataQualityRuleResultStatus: {
|
|
|
127
127
|
};
|
|
128
128
|
export type DataQualityRuleResultStatus =
|
|
129
129
|
(typeof DataQualityRuleResultStatus)[keyof typeof DataQualityRuleResultStatus];
|
|
130
|
+
export declare const DQCompositeRuleEvaluationMethod: {
|
|
131
|
+
readonly COLUMN: "COLUMN";
|
|
132
|
+
readonly ROW: "ROW";
|
|
133
|
+
};
|
|
134
|
+
export type DQCompositeRuleEvaluationMethod =
|
|
135
|
+
(typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
136
|
+
export declare const ObservationMode: {
|
|
137
|
+
readonly FIXED: "FIXED";
|
|
138
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
139
|
+
};
|
|
140
|
+
export type ObservationMode = (typeof ObservationMode)[keyof typeof ObservationMode];
|
|
141
|
+
export declare const ObservationConfiguration: {
|
|
142
|
+
readonly ALL: "ALL";
|
|
143
|
+
readonly NONE: "NONE";
|
|
144
|
+
};
|
|
145
|
+
export type ObservationConfiguration =
|
|
146
|
+
(typeof ObservationConfiguration)[keyof typeof ObservationConfiguration];
|
|
147
|
+
export declare const ResultTypeEnum: {
|
|
148
|
+
readonly ALL: "ALL";
|
|
149
|
+
readonly FAILED_ONLY: "FAILED_ONLY";
|
|
150
|
+
readonly PASSED_ONLY: "PASSED_ONLY";
|
|
151
|
+
};
|
|
152
|
+
export type ResultTypeEnum = (typeof ResultTypeEnum)[keyof typeof ResultTypeEnum];
|
|
153
|
+
export declare const TaskStatusType: {
|
|
154
|
+
readonly FAILED: "FAILED";
|
|
155
|
+
readonly RUNNING: "RUNNING";
|
|
156
|
+
readonly STARTING: "STARTING";
|
|
157
|
+
readonly STOPPED: "STOPPED";
|
|
158
|
+
readonly STOPPING: "STOPPING";
|
|
159
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
160
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
161
|
+
};
|
|
162
|
+
export type TaskStatusType = (typeof TaskStatusType)[keyof typeof TaskStatusType];
|
|
130
163
|
export declare const WorkerType: {
|
|
131
164
|
readonly G_025X: "G.025X";
|
|
132
165
|
readonly G_1X: "G.1X";
|
|
@@ -482,16 +515,6 @@ export declare const WorkflowRunStatus: {
|
|
|
482
515
|
readonly STOPPING: "STOPPING";
|
|
483
516
|
};
|
|
484
517
|
export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
485
|
-
export declare const TaskStatusType: {
|
|
486
|
-
readonly FAILED: "FAILED";
|
|
487
|
-
readonly RUNNING: "RUNNING";
|
|
488
|
-
readonly STARTING: "STARTING";
|
|
489
|
-
readonly STOPPED: "STOPPED";
|
|
490
|
-
readonly STOPPING: "STOPPING";
|
|
491
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
492
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
493
|
-
};
|
|
494
|
-
export type TaskStatusType = (typeof TaskStatusType)[keyof typeof TaskStatusType];
|
|
495
518
|
export declare const DataFormat: {
|
|
496
519
|
readonly AVRO: "AVRO";
|
|
497
520
|
readonly JSON: "JSON";
|
|
@@ -948,12 +971,6 @@ export declare const DataQualityModelStatus: {
|
|
|
948
971
|
};
|
|
949
972
|
export type DataQualityModelStatus =
|
|
950
973
|
(typeof DataQualityModelStatus)[keyof typeof DataQualityModelStatus];
|
|
951
|
-
export declare const DQCompositeRuleEvaluationMethod: {
|
|
952
|
-
readonly COLUMN: "COLUMN";
|
|
953
|
-
readonly ROW: "ROW";
|
|
954
|
-
};
|
|
955
|
-
export type DQCompositeRuleEvaluationMethod =
|
|
956
|
-
(typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
957
974
|
export declare const MaterializedViewRefreshType: {
|
|
958
975
|
readonly FULL: "FULL";
|
|
959
976
|
readonly INCREMENTAL: "INCREMENTAL";
|