@aws-sdk/client-glue 3.982.0 → 3.984.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.
Files changed (62) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +338 -70
  3. package/dist-es/Glue.js +4 -0
  4. package/dist-es/commands/DeleteConnectionTypeCommand.js +16 -0
  5. package/dist-es/commands/RegisterConnectionTypeCommand.js +16 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +24 -0
  8. package/dist-es/schemas/schemas_0.js +256 -70
  9. package/dist-types/Glue.d.ts +14 -0
  10. package/dist-types/GlueClient.d.ts +4 -2
  11. package/dist-types/commands/DeleteConnectionTypeCommand.d.ts +91 -0
  12. package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +156 -1
  13. package/dist-types/commands/DescribeEntityCommand.d.ts +1 -1
  14. package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
  15. package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
  16. package/dist-types/commands/GetMLTransformCommand.d.ts +1 -2
  17. package/dist-types/commands/ListConnectionTypesCommand.d.ts +3 -1
  18. package/dist-types/commands/RegisterConnectionTypeCommand.d.ts +284 -0
  19. package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
  21. package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
  23. package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
  24. package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
  30. package/dist-types/commands/index.d.ts +2 -0
  31. package/dist-types/models/enums.d.ts +64 -0
  32. package/dist-types/models/models_0.d.ts +11 -1
  33. package/dist-types/models/models_1.d.ts +252 -368
  34. package/dist-types/models/models_2.d.ts +664 -599
  35. package/dist-types/models/models_3.d.ts +585 -4
  36. package/dist-types/schemas/schemas_0.d.ts +25 -0
  37. package/dist-types/ts3.4/Glue.d.ts +34 -0
  38. package/dist-types/ts3.4/GlueClient.d.ts +12 -0
  39. package/dist-types/ts3.4/commands/DeleteConnectionTypeCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
  41. package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/RegisterConnectionTypeCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
  49. package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  56. package/dist-types/ts3.4/models/enums.d.ts +32 -0
  57. package/dist-types/ts3.4/models/models_0.d.ts +3 -0
  58. package/dist-types/ts3.4/models/models_1.d.ts +63 -85
  59. package/dist-types/ts3.4/models/models_2.d.ts +161 -134
  60. package/dist-types/ts3.4/models/models_3.d.ts +141 -1
  61. package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
  62. package/package.json +2 -2
@@ -0,0 +1,284 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
+ import type { RegisterConnectionTypeRequest, RegisterConnectionTypeResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link RegisterConnectionTypeCommand}.
14
+ */
15
+ export interface RegisterConnectionTypeCommandInput extends RegisterConnectionTypeRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RegisterConnectionTypeCommand}.
21
+ */
22
+ export interface RegisterConnectionTypeCommandOutput extends RegisterConnectionTypeResponse, __MetadataBearer {
23
+ }
24
+ declare const RegisterConnectionTypeCommand_base: {
25
+ new (input: RegisterConnectionTypeCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterConnectionTypeCommandInput, RegisterConnectionTypeCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RegisterConnectionTypeCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterConnectionTypeCommandInput, RegisterConnectionTypeCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Registers a custom connection type in Glue based on the configuration provided. This operation enables customers to configure custom connectors for any data source with REST-based APIs, eliminating the need for building custom Lambda connectors.</p>
31
+ * <p>The registered connection type stores details about how requests and responses are interpreted by REST sources, including connection properties, authentication configuration, and REST configuration with entity definitions. Once registered, customers can create connections using this connection type and work with them the same way as natively supported Glue connectors.</p>
32
+ * <p>Supports multiple authentication types including Basic, OAuth2 (Client Credentials, JWT Bearer, Authorization Code), and Custom Auth configurations.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { GlueClient, RegisterConnectionTypeCommand } from "@aws-sdk/client-glue"; // ES Modules import
37
+ * // const { GlueClient, RegisterConnectionTypeCommand } = require("@aws-sdk/client-glue"); // CommonJS import
38
+ * // import type { GlueClientConfig } from "@aws-sdk/client-glue";
39
+ * const config = {}; // type is GlueClientConfig
40
+ * const client = new GlueClient(config);
41
+ * const input = { // RegisterConnectionTypeRequest
42
+ * ConnectionType: "STRING_VALUE", // required
43
+ * IntegrationType: "REST", // required
44
+ * Description: "STRING_VALUE",
45
+ * ConnectionProperties: { // ConnectionPropertiesConfiguration
46
+ * Url: { // ConnectorProperty
47
+ * Name: "STRING_VALUE", // required
48
+ * KeyOverride: "STRING_VALUE",
49
+ * Required: true || false, // required
50
+ * DefaultValue: "STRING_VALUE",
51
+ * AllowedValues: [ // ListOfString
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
55
+ * PropertyType: "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT", // required
56
+ * },
57
+ * AdditionalRequestParameters: [ // ConnectorPropertyList
58
+ * {
59
+ * Name: "STRING_VALUE", // required
60
+ * KeyOverride: "STRING_VALUE",
61
+ * Required: true || false, // required
62
+ * DefaultValue: "STRING_VALUE",
63
+ * AllowedValues: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
67
+ * PropertyType: "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT", // required
68
+ * },
69
+ * ],
70
+ * },
71
+ * ConnectorAuthenticationConfiguration: { // ConnectorAuthenticationConfiguration
72
+ * AuthenticationTypes: [ // AuthenticationTypes // required
73
+ * "BASIC" || "OAUTH2" || "CUSTOM" || "IAM",
74
+ * ],
75
+ * OAuth2Properties: { // ConnectorOAuth2Properties
76
+ * OAuth2GrantType: "CLIENT_CREDENTIALS" || "JWT_BEARER" || "AUTHORIZATION_CODE", // required
77
+ * ClientCredentialsProperties: { // ClientCredentialsProperties
78
+ * TokenUrl: "<ConnectorProperty>",
79
+ * RequestMethod: "GET" || "POST",
80
+ * ContentType: "APPLICATION_JSON" || "URL_ENCODED",
81
+ * ClientId: "<ConnectorProperty>",
82
+ * ClientSecret: "<ConnectorProperty>",
83
+ * Scope: "<ConnectorProperty>",
84
+ * TokenUrlParameters: [
85
+ * "<ConnectorProperty>",
86
+ * ],
87
+ * },
88
+ * JWTBearerProperties: { // JWTBearerProperties
89
+ * TokenUrl: "<ConnectorProperty>",
90
+ * RequestMethod: "GET" || "POST",
91
+ * ContentType: "APPLICATION_JSON" || "URL_ENCODED",
92
+ * JwtToken: "<ConnectorProperty>",
93
+ * TokenUrlParameters: [
94
+ * "<ConnectorProperty>",
95
+ * ],
96
+ * },
97
+ * AuthorizationCodeProperties: { // ConnectorAuthorizationCodeProperties
98
+ * AuthorizationCodeUrl: "<ConnectorProperty>",
99
+ * AuthorizationCode: "<ConnectorProperty>",
100
+ * RedirectUri: "<ConnectorProperty>",
101
+ * TokenUrl: "<ConnectorProperty>",
102
+ * RequestMethod: "GET" || "POST",
103
+ * ContentType: "APPLICATION_JSON" || "URL_ENCODED",
104
+ * ClientId: "<ConnectorProperty>",
105
+ * ClientSecret: "<ConnectorProperty>",
106
+ * Scope: "<ConnectorProperty>",
107
+ * Prompt: "<ConnectorProperty>",
108
+ * TokenUrlParameters: [
109
+ * "<ConnectorProperty>",
110
+ * ],
111
+ * },
112
+ * },
113
+ * BasicAuthenticationProperties: { // BasicAuthenticationProperties
114
+ * Username: "<ConnectorProperty>",
115
+ * Password: "<ConnectorProperty>",
116
+ * },
117
+ * CustomAuthenticationProperties: { // CustomAuthenticationProperties
118
+ * AuthenticationParameters: "<ConnectorPropertyList>", // required
119
+ * },
120
+ * },
121
+ * RestConfiguration: { // RestConfiguration
122
+ * GlobalSourceConfiguration: { // SourceConfiguration
123
+ * RequestMethod: "GET" || "POST",
124
+ * RequestPath: "STRING_VALUE",
125
+ * RequestParameters: "<ConnectorPropertyList>",
126
+ * ResponseConfiguration: { // ResponseConfiguration
127
+ * ResultPath: "STRING_VALUE", // required
128
+ * ErrorPath: "STRING_VALUE",
129
+ * },
130
+ * PaginationConfiguration: { // PaginationConfiguration
131
+ * CursorConfiguration: { // CursorConfiguration
132
+ * NextPage: { // ExtractedParameter
133
+ * Key: "STRING_VALUE",
134
+ * DefaultValue: "STRING_VALUE",
135
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
136
+ * Value: { // ResponseExtractionMapping
137
+ * ContentPath: "STRING_VALUE",
138
+ * HeaderKey: "STRING_VALUE",
139
+ * },
140
+ * },
141
+ * LimitParameter: {
142
+ * Key: "STRING_VALUE",
143
+ * DefaultValue: "STRING_VALUE",
144
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
145
+ * Value: {
146
+ * ContentPath: "STRING_VALUE",
147
+ * HeaderKey: "STRING_VALUE",
148
+ * },
149
+ * },
150
+ * },
151
+ * OffsetConfiguration: { // OffsetConfiguration
152
+ * OffsetParameter: {
153
+ * Key: "STRING_VALUE",
154
+ * DefaultValue: "STRING_VALUE",
155
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
156
+ * Value: {
157
+ * ContentPath: "STRING_VALUE",
158
+ * HeaderKey: "STRING_VALUE",
159
+ * },
160
+ * },
161
+ * LimitParameter: {
162
+ * Key: "STRING_VALUE",
163
+ * DefaultValue: "STRING_VALUE",
164
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
165
+ * Value: {
166
+ * ContentPath: "STRING_VALUE",
167
+ * HeaderKey: "STRING_VALUE",
168
+ * },
169
+ * },
170
+ * },
171
+ * },
172
+ * },
173
+ * ValidationEndpointConfiguration: {
174
+ * RequestMethod: "GET" || "POST",
175
+ * RequestPath: "STRING_VALUE",
176
+ * RequestParameters: "<ConnectorPropertyList>",
177
+ * ResponseConfiguration: {
178
+ * ResultPath: "STRING_VALUE", // required
179
+ * ErrorPath: "STRING_VALUE",
180
+ * },
181
+ * PaginationConfiguration: {
182
+ * CursorConfiguration: {
183
+ * NextPage: {
184
+ * Key: "STRING_VALUE",
185
+ * DefaultValue: "STRING_VALUE",
186
+ * PropertyLocation: "HEADER" || "BODY" || "QUERY_PARAM" || "PATH",
187
+ * Value: {
188
+ * ContentPath: "STRING_VALUE",
189
+ * HeaderKey: "STRING_VALUE",
190
+ * },
191
+ * },
192
+ * LimitParameter: "<ExtractedParameter>",
193
+ * },
194
+ * OffsetConfiguration: {
195
+ * OffsetParameter: "<ExtractedParameter>", // required
196
+ * LimitParameter: "<ExtractedParameter>", // required
197
+ * },
198
+ * },
199
+ * },
200
+ * EntityConfigurations: { // EntityConfigurationMap
201
+ * "<keys>": { // EntityConfiguration
202
+ * SourceConfiguration: {
203
+ * RequestMethod: "GET" || "POST",
204
+ * RequestPath: "STRING_VALUE",
205
+ * RequestParameters: "<ConnectorPropertyList>",
206
+ * ResponseConfiguration: {
207
+ * ResultPath: "STRING_VALUE", // required
208
+ * ErrorPath: "STRING_VALUE",
209
+ * },
210
+ * PaginationConfiguration: {
211
+ * CursorConfiguration: {
212
+ * NextPage: "<ExtractedParameter>", // required
213
+ * LimitParameter: "<ExtractedParameter>",
214
+ * },
215
+ * OffsetConfiguration: {
216
+ * OffsetParameter: "<ExtractedParameter>", // required
217
+ * LimitParameter: "<ExtractedParameter>", // required
218
+ * },
219
+ * },
220
+ * },
221
+ * Schema: { // FieldDefinitionMap
222
+ * "<keys>": { // FieldDefinition
223
+ * Name: "STRING_VALUE", // required
224
+ * FieldDataType: "INT" || "SMALLINT" || "BIGINT" || "FLOAT" || "LONG" || "DATE" || "BOOLEAN" || "MAP" || "ARRAY" || "STRING" || "TIMESTAMP" || "DECIMAL" || "BYTE" || "SHORT" || "DOUBLE" || "STRUCT" || "BINARY" || "UNION", // required
225
+ * },
226
+ * },
227
+ * },
228
+ * },
229
+ * },
230
+ * Tags: { // TagsMap
231
+ * "<keys>": "STRING_VALUE",
232
+ * },
233
+ * };
234
+ * const command = new RegisterConnectionTypeCommand(input);
235
+ * const response = await client.send(command);
236
+ * // { // RegisterConnectionTypeResponse
237
+ * // ConnectionTypeArn: "STRING_VALUE",
238
+ * // };
239
+ *
240
+ * ```
241
+ *
242
+ * @param RegisterConnectionTypeCommandInput - {@link RegisterConnectionTypeCommandInput}
243
+ * @returns {@link RegisterConnectionTypeCommandOutput}
244
+ * @see {@link RegisterConnectionTypeCommandInput} for command's `input` shape.
245
+ * @see {@link RegisterConnectionTypeCommandOutput} for command's `response` shape.
246
+ * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
247
+ *
248
+ * @throws {@link AccessDeniedException} (client fault)
249
+ * <p>Access to a resource was denied.</p>
250
+ *
251
+ * @throws {@link InternalServiceException} (server fault)
252
+ * <p>An internal service error occurred.</p>
253
+ *
254
+ * @throws {@link InvalidInputException} (client fault)
255
+ * <p>The input provided was not valid.</p>
256
+ *
257
+ * @throws {@link OperationTimeoutException} (client fault)
258
+ * <p>The operation timed out.</p>
259
+ *
260
+ * @throws {@link ResourceNumberLimitExceededException} (client fault)
261
+ * <p>A resource numerical limit was exceeded.</p>
262
+ *
263
+ * @throws {@link ValidationException} (client fault)
264
+ * <p>A value could not be validated.</p>
265
+ *
266
+ * @throws {@link GlueServiceException}
267
+ * <p>Base exception class for all service exceptions from Glue service.</p>
268
+ *
269
+ *
270
+ * @public
271
+ */
272
+ export declare class RegisterConnectionTypeCommand extends RegisterConnectionTypeCommand_base {
273
+ /** @internal type navigation helper, not in runtime. */
274
+ protected static __types: {
275
+ api: {
276
+ input: RegisterConnectionTypeRequest;
277
+ output: RegisterConnectionTypeResponse;
278
+ };
279
+ sdk: {
280
+ input: RegisterConnectionTypeCommandInput;
281
+ output: RegisterConnectionTypeCommandOutput;
282
+ };
283
+ };
284
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/models_2";
4
+ import type { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateGlueIdentityCenterConfigurationRequest, UpdateGlueIdentityCenterConfigurationResponse } from "../models/models_2";
4
+ import type { UpdateGlueIdentityCenterConfigurationRequest, UpdateGlueIdentityCenterConfigurationResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateIntegrationResourcePropertyRequest, UpdateIntegrationResourcePropertyResponse } from "../models/models_2";
4
+ import type { UpdateIntegrationResourcePropertyRequest, UpdateIntegrationResourcePropertyResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateIntegrationTablePropertiesRequest, UpdateIntegrationTablePropertiesResponse } from "../models/models_2";
4
+ import type { UpdateIntegrationTablePropertiesRequest, UpdateIntegrationTablePropertiesResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateJobResponse } from "../models/models_2";
5
- import type { UpdateJobRequest } from "../models/models_3";
4
+ import type { UpdateJobRequest, UpdateJobResponse } from "../models/models_3";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } from "../models/models_2";
4
+ import type { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateMLTransformRequest, UpdateMLTransformResponse } from "../models/models_2";
4
+ import type { UpdateMLTransformRequest, UpdateMLTransformResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdatePartitionRequest, UpdatePartitionResponse } from "../models/models_2";
4
+ import type { UpdatePartitionRequest, UpdatePartitionResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateRegistryInput, UpdateRegistryResponse } from "../models/models_2";
4
+ import type { UpdateRegistryInput, UpdateRegistryResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateSchemaInput, UpdateSchemaResponse } from "../models/models_2";
4
+ import type { UpdateSchemaInput, UpdateSchemaResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_2";
4
+ import type { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -57,6 +57,7 @@ export * from "./DeleteColumnStatisticsForPartitionCommand";
57
57
  export * from "./DeleteColumnStatisticsForTableCommand";
58
58
  export * from "./DeleteColumnStatisticsTaskSettingsCommand";
59
59
  export * from "./DeleteConnectionCommand";
60
+ export * from "./DeleteConnectionTypeCommand";
60
61
  export * from "./DeleteCrawlerCommand";
61
62
  export * from "./DeleteCustomEntityTypeCommand";
62
63
  export * from "./DeleteDataQualityRulesetCommand";
@@ -201,6 +202,7 @@ export * from "./PutResourcePolicyCommand";
201
202
  export * from "./PutSchemaVersionMetadataCommand";
202
203
  export * from "./PutWorkflowRunPropertiesCommand";
203
204
  export * from "./QuerySchemaVersionMetadataCommand";
205
+ export * from "./RegisterConnectionTypeCommand";
204
206
  export * from "./RegisterSchemaVersionCommand";
205
207
  export * from "./RemoveSchemaVersionMetadataCommand";
206
208
  export * from "./ResetJobBookmarkCommand";
@@ -72,6 +72,20 @@ export declare const DataOperation: {
72
72
  * @public
73
73
  */
74
74
  export type DataOperation = (typeof DataOperation)[keyof typeof DataOperation];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const PropertyLocation: {
80
+ readonly BODY: "BODY";
81
+ readonly HEADER: "HEADER";
82
+ readonly PATH: "PATH";
83
+ readonly QUERY_PARAM: "QUERY_PARAM";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type PropertyLocation = (typeof PropertyLocation)[keyof typeof PropertyLocation];
75
89
  /**
76
90
  * @public
77
91
  * @enum
@@ -1445,6 +1459,7 @@ export type RegistryStatus = (typeof RegistryStatus)[keyof typeof RegistryStatus
1445
1459
  export declare const FieldDataType: {
1446
1460
  readonly ARRAY: "ARRAY";
1447
1461
  readonly BIGINT: "BIGINT";
1462
+ readonly BINARY: "BINARY";
1448
1463
  readonly BOOLEAN: "BOOLEAN";
1449
1464
  readonly BYTE: "BYTE";
1450
1465
  readonly DATE: "DATE";
@@ -1459,11 +1474,24 @@ export declare const FieldDataType: {
1459
1474
  readonly STRING: "STRING";
1460
1475
  readonly STRUCT: "STRUCT";
1461
1476
  readonly TIMESTAMP: "TIMESTAMP";
1477
+ readonly UNION: "UNION";
1462
1478
  };
1463
1479
  /**
1464
1480
  * @public
1465
1481
  */
1466
1482
  export type FieldDataType = (typeof FieldDataType)[keyof typeof FieldDataType];
1483
+ /**
1484
+ * @public
1485
+ * @enum
1486
+ */
1487
+ export declare const HTTPMethod: {
1488
+ readonly GET: "GET";
1489
+ readonly POST: "POST";
1490
+ };
1491
+ /**
1492
+ * @public
1493
+ */
1494
+ export type HTTPMethod = (typeof HTTPMethod)[keyof typeof HTTPMethod];
1467
1495
  /**
1468
1496
  * @public
1469
1497
  * @enum
@@ -1927,6 +1955,42 @@ export declare const ExistCondition: {
1927
1955
  * @public
1928
1956
  */
1929
1957
  export type ExistCondition = (typeof ExistCondition)[keyof typeof ExistCondition];
1958
+ /**
1959
+ * @public
1960
+ * @enum
1961
+ */
1962
+ export declare const ContentType: {
1963
+ readonly APPLICATION_JSON: "APPLICATION_JSON";
1964
+ readonly URL_ENCODED: "URL_ENCODED";
1965
+ };
1966
+ /**
1967
+ * @public
1968
+ */
1969
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
1970
+ /**
1971
+ * @public
1972
+ * @enum
1973
+ */
1974
+ export declare const ConnectorOAuth2GrantType: {
1975
+ readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
1976
+ readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
1977
+ readonly JWT_BEARER: "JWT_BEARER";
1978
+ };
1979
+ /**
1980
+ * @public
1981
+ */
1982
+ export type ConnectorOAuth2GrantType = (typeof ConnectorOAuth2GrantType)[keyof typeof ConnectorOAuth2GrantType];
1983
+ /**
1984
+ * @public
1985
+ * @enum
1986
+ */
1987
+ export declare const IntegrationType: {
1988
+ readonly REST: "REST";
1989
+ };
1990
+ /**
1991
+ * @public
1992
+ */
1993
+ export type IntegrationType = (typeof IntegrationType)[keyof typeof IntegrationType];
1930
1994
  /**
1931
1995
  * @public
1932
1996
  * @enum
@@ -1,4 +1,4 @@
1
- import { AdditionalOptionKeys, AggFunction, AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintStatus, CompactionStrategy, CompressionType, ComputeEnvironment, ConfigurationSource, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CrawlerLineageSettings, CrawlerState, CrawlState, CsvHeaderOption, CsvSerdeOption, DataFormat, DataOperation, DataQualityRuleResultStatus, DdbExportType, DeleteBehavior, DeltaTargetCompressionType, DQStopJobOnFailureTiming, DQTransformOutput, ExecutionClass, FilterLogicalOperator, FilterOperation, FilterValueType, GlueRecordType, HudiTargetCompressionType, HyperTargetCompressionType, IcebergTargetCompressionType, InclusionAnnotationValue, JDBCConnectionType, JDBCDataType, JdbcMetadataEntry, JobMode, JobRunState, JoinType, LastCrawlStatus, Logical, LogicalOperator, NodeType, OAuth2GrantType, ParamType, ParquetCompressionType, Permission, PiiType, PropertyType, QuoteChar, RecrawlBehavior, ScheduleState, Separator, SourceControlAuthStrategy, SourceControlProvider, StartingPosition, TableOptimizerEventType, TableOptimizerType, TargetFormat, TaskStatusType, TriggerState, TriggerType, UnionType, UpdateBehavior, UpdateCatalogBehavior, WorkerType, WorkflowRunStatus } from "./enums";
1
+ import { AdditionalOptionKeys, AggFunction, AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintStatus, CompactionStrategy, CompressionType, ComputeEnvironment, ConfigurationSource, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CrawlerLineageSettings, CrawlerState, CrawlState, CsvHeaderOption, CsvSerdeOption, DataFormat, DataOperation, DataQualityRuleResultStatus, DdbExportType, DeleteBehavior, DeltaTargetCompressionType, DQStopJobOnFailureTiming, DQTransformOutput, ExecutionClass, FilterLogicalOperator, FilterOperation, FilterValueType, GlueRecordType, HudiTargetCompressionType, HyperTargetCompressionType, IcebergTargetCompressionType, InclusionAnnotationValue, JDBCConnectionType, JDBCDataType, JdbcMetadataEntry, JobMode, JobRunState, JoinType, LastCrawlStatus, Logical, LogicalOperator, NodeType, OAuth2GrantType, ParamType, ParquetCompressionType, Permission, PiiType, PropertyLocation, PropertyType, QuoteChar, RecrawlBehavior, ScheduleState, Separator, SourceControlAuthStrategy, SourceControlProvider, StartingPosition, TableOptimizerEventType, TableOptimizerType, TargetFormat, TaskStatusType, TriggerState, TriggerType, UnionType, UpdateBehavior, UpdateCatalogBehavior, WorkerType, WorkflowRunStatus } from "./enums";
2
2
  /**
3
3
  * <p>Specifies configuration properties of a notification.</p>
4
4
  * @public
@@ -524,6 +524,16 @@ export interface Property {
524
524
  * @public
525
525
  */
526
526
  DataOperationScopes?: DataOperation[] | undefined;
527
+ /**
528
+ * <p>A key name to use when sending this property in API requests, if different from the display name.</p>
529
+ * @public
530
+ */
531
+ KeyOverride?: string | undefined;
532
+ /**
533
+ * <p>Specifies where this property should be included in REST requests, such as in headers, query parameters, or request body.</p>
534
+ * @public
535
+ */
536
+ PropertyLocation?: PropertyLocation | undefined;
527
537
  }
528
538
  /**
529
539
  * <p>The authentication configuration for a connection returned by the <code>DescribeConnectionType</code> API.</p>