Skip to content

Commit 4959747

Browse files
author
awstools
committed
feat(client-datazone): Update Configurations and registerS3AccessGrantLocation as public attributes for cfn
1 parent 5107b43 commit 4959747

13 files changed

Lines changed: 478 additions & 157 deletions

clients/client-datazone/src/commands/CreateConnectionCommand.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
4444
* iamConnectionId: "STRING_VALUE",
4545
* },
4646
* clientToken: "STRING_VALUE",
47+
* configurations: [ // Configurations
48+
* { // Configuration
49+
* classification: "STRING_VALUE",
50+
* properties: { // PropertyMap
51+
* "<keys>": "STRING_VALUE",
52+
* },
53+
* },
54+
* ],
4755
* description: "STRING_VALUE",
4856
* domainIdentifier: "STRING_VALUE", // required
4957
* environmentIdentifier: "STRING_VALUE",
@@ -75,7 +83,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
7583
* validateForComputeEnvironments: [ // ComputeEnvironmentsList
7684
* "SPARK" || "ATHENA" || "PYTHON",
7785
* ],
78-
* sparkProperties: { // PropertyMap
86+
* sparkProperties: {
7987
* "<keys>": "STRING_VALUE",
8088
* },
8189
* athenaProperties: {
@@ -162,6 +170,9 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
162170
* connection: "STRING_VALUE",
163171
* },
164172
* glueConnectionName: "STRING_VALUE",
173+
* glueConnectionNames: [ // GlueConnectionNames
174+
* "STRING_VALUE",
175+
* ],
165176
* glueVersion: "STRING_VALUE",
166177
* idleTimeout: Number("int"),
167178
* javaVirtualEnv: "STRING_VALUE",
@@ -172,6 +183,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
172183
* s3Properties: { // S3PropertiesInput
173184
* s3Uri: "STRING_VALUE", // required
174185
* s3AccessGrantLocationId: "STRING_VALUE",
186+
* registerS3AccessGrantLocation: true || false,
175187
* },
176188
* amazonQProperties: { // AmazonQPropertiesInput
177189
* isEnabled: true || false, // required
@@ -193,6 +205,14 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
193205
* const response = await client.send(command);
194206
* // { // CreateConnectionOutput
195207
* // connectionId: "STRING_VALUE", // required
208+
* // configurations: [ // Configurations
209+
* // { // Configuration
210+
* // classification: "STRING_VALUE",
211+
* // properties: { // PropertyMap
212+
* // "<keys>": "STRING_VALUE",
213+
* // },
214+
* // },
215+
* // ],
196216
* // description: "STRING_VALUE",
197217
* // domainId: "STRING_VALUE", // required
198218
* // domainUnitId: "STRING_VALUE", // required
@@ -207,6 +227,9 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
207227
* // iamConnectionId: "STRING_VALUE",
208228
* // },
209229
* // glueConnectionName: "STRING_VALUE",
230+
* // glueConnectionNames: [ // GlueConnectionNames
231+
* // "STRING_VALUE",
232+
* // ],
210233
* // glueConnection: { // GlueConnection
211234
* // name: "STRING_VALUE",
212235
* // description: "STRING_VALUE",
@@ -217,7 +240,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
217240
* // connectionProperties: { // ConnectionProperties
218241
* // "<keys>": "STRING_VALUE",
219242
* // },
220-
* // sparkProperties: { // PropertyMap
243+
* // sparkProperties: {
221244
* // "<keys>": "STRING_VALUE",
222245
* // },
223246
* // athenaProperties: {
@@ -350,6 +373,9 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
350373
* // connection: "STRING_VALUE",
351374
* // },
352375
* // glueConnectionName: "STRING_VALUE",
376+
* // glueConnectionNames: [
377+
* // "STRING_VALUE",
378+
* // ],
353379
* // glueVersion: "STRING_VALUE",
354380
* // idleTimeout: Number("int"),
355381
* // javaVirtualEnv: "STRING_VALUE",
@@ -360,6 +386,7 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
360386
* // s3Properties: { // S3PropertiesOutput
361387
* // s3Uri: "STRING_VALUE", // required
362388
* // s3AccessGrantLocationId: "STRING_VALUE",
389+
* // registerS3AccessGrantLocation: true || false,
363390
* // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
364391
* // errorMessage: "STRING_VALUE",
365392
* // },

clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { CreateSubscriptionTargetInput } from "../models/models_0";
9-
import type { CreateSubscriptionTargetOutput } from "../models/models_1";
8+
import type { CreateSubscriptionTargetInput, CreateSubscriptionTargetOutput } from "../models/models_1";
109
import { CreateSubscriptionTarget$ } from "../schemas/schemas_0";
1110

1211
/**

clients/client-datazone/src/commands/GetConnectionCommand.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
5050
* // sessionToken: "STRING_VALUE",
5151
* // expiration: new Date("TIMESTAMP"),
5252
* // },
53+
* // configurations: [ // Configurations
54+
* // { // Configuration
55+
* // classification: "STRING_VALUE",
56+
* // properties: { // PropertyMap
57+
* // "<keys>": "STRING_VALUE",
58+
* // },
59+
* // },
60+
* // ],
5361
* // connectionId: "STRING_VALUE", // required
5462
* // description: "STRING_VALUE",
5563
* // domainId: "STRING_VALUE", // required
@@ -66,6 +74,9 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
6674
* // iamConnectionId: "STRING_VALUE",
6775
* // },
6876
* // glueConnectionName: "STRING_VALUE",
77+
* // glueConnectionNames: [ // GlueConnectionNames
78+
* // "STRING_VALUE",
79+
* // ],
6980
* // glueConnection: { // GlueConnection
7081
* // name: "STRING_VALUE",
7182
* // description: "STRING_VALUE",
@@ -76,7 +87,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
7687
* // connectionProperties: { // ConnectionProperties
7788
* // "<keys>": "STRING_VALUE",
7889
* // },
79-
* // sparkProperties: { // PropertyMap
90+
* // sparkProperties: {
8091
* // "<keys>": "STRING_VALUE",
8192
* // },
8293
* // athenaProperties: {
@@ -209,6 +220,9 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
209220
* // connection: "STRING_VALUE",
210221
* // },
211222
* // glueConnectionName: "STRING_VALUE",
223+
* // glueConnectionNames: [
224+
* // "STRING_VALUE",
225+
* // ],
212226
* // glueVersion: "STRING_VALUE",
213227
* // idleTimeout: Number("int"),
214228
* // javaVirtualEnv: "STRING_VALUE",
@@ -219,6 +233,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
219233
* // s3Properties: { // S3PropertiesOutput
220234
* // s3Uri: "STRING_VALUE", // required
221235
* // s3AccessGrantLocationId: "STRING_VALUE",
236+
* // registerS3AccessGrantLocation: true || false,
222237
* // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
223238
* // errorMessage: "STRING_VALUE",
224239
* // },

clients/client-datazone/src/commands/ListConnectionsCommand.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
5353
* // { // ListConnectionsOutput
5454
* // items: [ // ConnectionSummaries // required
5555
* // { // ConnectionSummary
56+
* // configurations: [ // Configurations
57+
* // { // Configuration
58+
* // classification: "STRING_VALUE",
59+
* // properties: { // PropertyMap
60+
* // "<keys>": "STRING_VALUE",
61+
* // },
62+
* // },
63+
* // ],
5664
* // connectionId: "STRING_VALUE", // required
5765
* // domainId: "STRING_VALUE", // required
5866
* // domainUnitId: "STRING_VALUE", // required
@@ -67,6 +75,9 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
6775
* // iamConnectionId: "STRING_VALUE",
6876
* // },
6977
* // glueConnectionName: "STRING_VALUE",
78+
* // glueConnectionNames: [ // GlueConnectionNames
79+
* // "STRING_VALUE",
80+
* // ],
7081
* // glueConnection: { // GlueConnection
7182
* // name: "STRING_VALUE",
7283
* // description: "STRING_VALUE",
@@ -77,7 +88,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
7788
* // connectionProperties: { // ConnectionProperties
7889
* // "<keys>": "STRING_VALUE",
7990
* // },
80-
* // sparkProperties: { // PropertyMap
91+
* // sparkProperties: {
8192
* // "<keys>": "STRING_VALUE",
8293
* // },
8394
* // athenaProperties: {
@@ -210,6 +221,9 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
210221
* // connection: "STRING_VALUE",
211222
* // },
212223
* // glueConnectionName: "STRING_VALUE",
224+
* // glueConnectionNames: [
225+
* // "STRING_VALUE",
226+
* // ],
213227
* // glueVersion: "STRING_VALUE",
214228
* // idleTimeout: Number("int"),
215229
* // javaVirtualEnv: "STRING_VALUE",
@@ -220,6 +234,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
220234
* // s3Properties: { // S3PropertiesOutput
221235
* // s3Uri: "STRING_VALUE", // required
222236
* // s3AccessGrantLocationId: "STRING_VALUE",
237+
* // registerS3AccessGrantLocation: true || false,
223238
* // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
224239
* // errorMessage: "STRING_VALUE",
225240
* // },

clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { SearchGroupProfilesInput, SearchGroupProfilesOutput } from "../models/models_1";
8+
import type { SearchGroupProfilesInput } from "../models/models_1";
9+
import type { SearchGroupProfilesOutput } from "../models/models_2";
910
import { SearchGroupProfiles$ } from "../schemas/schemas_0";
1011

1112
/**

clients/client-datazone/src/commands/UpdateConnectionCommand.ts

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
3737
* const config = {}; // type is DataZoneClientConfig
3838
* const client = new DataZoneClient(config);
3939
* const input = { // UpdateConnectionInput
40+
* configurations: [ // Configurations
41+
* { // Configuration
42+
* classification: "STRING_VALUE",
43+
* properties: { // PropertyMap
44+
* "<keys>": "STRING_VALUE",
45+
* },
46+
* },
47+
* ],
4048
* domainIdentifier: "STRING_VALUE", // required
4149
* identifier: "STRING_VALUE", // required
4250
* description: "STRING_VALUE",
@@ -103,6 +111,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
103111
* s3Properties: { // S3PropertiesPatch
104112
* s3Uri: "STRING_VALUE", // required
105113
* s3AccessGrantLocationId: "STRING_VALUE",
114+
* registerS3AccessGrantLocation: true || false,
106115
* },
107116
* amazonQProperties: { // AmazonQPropertiesPatch
108117
* isEnabled: true || false, // required
@@ -117,6 +126,14 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
117126
* const command = new UpdateConnectionCommand(input);
118127
* const response = await client.send(command);
119128
* // { // UpdateConnectionOutput
129+
* // configurations: [ // Configurations
130+
* // { // Configuration
131+
* // classification: "STRING_VALUE",
132+
* // properties: { // PropertyMap
133+
* // "<keys>": "STRING_VALUE",
134+
* // },
135+
* // },
136+
* // ],
120137
* // connectionId: "STRING_VALUE", // required
121138
* // description: "STRING_VALUE",
122139
* // domainId: "STRING_VALUE", // required
@@ -132,6 +149,9 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
132149
* // iamConnectionId: "STRING_VALUE",
133150
* // },
134151
* // glueConnectionName: "STRING_VALUE",
152+
* // glueConnectionNames: [ // GlueConnectionNames
153+
* // "STRING_VALUE",
154+
* // ],
135155
* // glueConnection: { // GlueConnection
136156
* // name: "STRING_VALUE",
137157
* // description: "STRING_VALUE",
@@ -142,7 +162,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
142162
* // connectionProperties: { // ConnectionProperties
143163
* // "<keys>": "STRING_VALUE",
144164
* // },
145-
* // sparkProperties: { // PropertyMap
165+
* // sparkProperties: {
146166
* // "<keys>": "STRING_VALUE",
147167
* // },
148168
* // athenaProperties: {
@@ -275,6 +295,9 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
275295
* // connection: "STRING_VALUE",
276296
* // },
277297
* // glueConnectionName: "STRING_VALUE",
298+
* // glueConnectionNames: [
299+
* // "STRING_VALUE",
300+
* // ],
278301
* // glueVersion: "STRING_VALUE",
279302
* // idleTimeout: Number("int"),
280303
* // javaVirtualEnv: "STRING_VALUE",
@@ -285,6 +308,7 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
285308
* // s3Properties: { // S3PropertiesOutput
286309
* // s3Uri: "STRING_VALUE", // required
287310
* // s3AccessGrantLocationId: "STRING_VALUE",
311+
* // registerS3AccessGrantLocation: true || false,
288312
* // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
289313
* // errorMessage: "STRING_VALUE",
290314
* // },

0 commit comments

Comments
 (0)