@@ -167,6 +167,11 @@ import {
167
167
CreateDevEndpointCommandInput,
168
168
CreateDevEndpointCommandOutput,
169
169
} from "./commands/CreateDevEndpointCommand";
170
+
import {
171
+
CreateGlueIdentityCenterConfigurationCommand,
172
+
CreateGlueIdentityCenterConfigurationCommandInput,
173
+
CreateGlueIdentityCenterConfigurationCommandOutput,
174
+
} from "./commands/CreateGlueIdentityCenterConfigurationCommand";
170
175
import {
171
176
CreateIntegrationCommand,
172
177
CreateIntegrationCommandInput,
@@ -309,6 +314,11 @@ import {
309
314
DeleteDevEndpointCommandInput,
310
315
DeleteDevEndpointCommandOutput,
311
316
} from "./commands/DeleteDevEndpointCommand";
317
+
import {
318
+
DeleteGlueIdentityCenterConfigurationCommand,
319
+
DeleteGlueIdentityCenterConfigurationCommandInput,
320
+
DeleteGlueIdentityCenterConfigurationCommandOutput,
321
+
} from "./commands/DeleteGlueIdentityCenterConfigurationCommand";
312
322
import {
313
323
DeleteIntegrationCommand,
314
324
DeleteIntegrationCommandInput,
@@ -556,6 +566,11 @@ import {
556
566
GetEntityRecordsCommandInput,
557
567
GetEntityRecordsCommandOutput,
558
568
} from "./commands/GetEntityRecordsCommand";
569
+
import {
570
+
GetGlueIdentityCenterConfigurationCommand,
571
+
GetGlueIdentityCenterConfigurationCommandInput,
572
+
GetGlueIdentityCenterConfigurationCommandOutput,
573
+
} from "./commands/GetGlueIdentityCenterConfigurationCommand";
559
574
import {
560
575
GetIntegrationResourcePropertyCommand,
561
576
GetIntegrationResourcePropertyCommandInput,
@@ -1064,6 +1079,11 @@ import {
1064
1079
UpdateDevEndpointCommandInput,
1065
1080
UpdateDevEndpointCommandOutput,
1066
1081
} from "./commands/UpdateDevEndpointCommand";
1082
+
import {
1083
+
UpdateGlueIdentityCenterConfigurationCommand,
1084
+
UpdateGlueIdentityCenterConfigurationCommandInput,
1085
+
UpdateGlueIdentityCenterConfigurationCommandOutput,
1086
+
} from "./commands/UpdateGlueIdentityCenterConfigurationCommand";
1067
1087
import {
1068
1088
UpdateIntegrationResourcePropertyCommand,
1069
1089
UpdateIntegrationResourcePropertyCommandInput,
@@ -1167,6 +1187,7 @@ const commands = {
1167
1187
CreateDatabaseCommand,
1168
1188
CreateDataQualityRulesetCommand,
1169
1189
CreateDevEndpointCommand,
1190
+
CreateGlueIdentityCenterConfigurationCommand,
1170
1191
CreateIntegrationCommand,
1171
1192
CreateIntegrationResourcePropertyCommand,
1172
1193
CreateIntegrationTablePropertiesCommand,
@@ -1197,6 +1218,7 @@ const commands = {
1197
1218
DeleteDatabaseCommand,
1198
1219
DeleteDataQualityRulesetCommand,
1199
1220
DeleteDevEndpointCommand,
1221
+
DeleteGlueIdentityCenterConfigurationCommand,
1200
1222
DeleteIntegrationCommand,
1201
1223
DeleteIntegrationTablePropertiesCommand,
1202
1224
DeleteJobCommand,
@@ -1252,6 +1274,7 @@ const commands = {
1252
1274
GetDevEndpointCommand,
1253
1275
GetDevEndpointsCommand,
1254
1276
GetEntityRecordsCommand,
1277
+
GetGlueIdentityCenterConfigurationCommand,
1255
1278
GetIntegrationResourcePropertyCommand,
1256
1279
GetIntegrationTablePropertiesCommand,
1257
1280
GetJobCommand,
@@ -1372,6 +1395,7 @@ const commands = {
1372
1395
UpdateDatabaseCommand,
1373
1396
UpdateDataQualityRulesetCommand,
1374
1397
UpdateDevEndpointCommand,
1398
+
UpdateGlueIdentityCenterConfigurationCommand,
1375
1399
UpdateIntegrationResourcePropertyCommand,
1376
1400
UpdateIntegrationTablePropertiesCommand,
1377
1401
UpdateJobCommand,
@@ -1919,6 +1943,23 @@ export interface Glue {
1919
1943
cb: (err: any, data?: CreateDevEndpointCommandOutput) => void
1920
1944
): void;
1921
1945
1946
+
/**
1947
+
* @see {@link CreateGlueIdentityCenterConfigurationCommand}
1948
+
*/
1949
+
createGlueIdentityCenterConfiguration(
1950
+
args: CreateGlueIdentityCenterConfigurationCommandInput,
1951
+
options?: __HttpHandlerOptions
1952
+
): Promise<CreateGlueIdentityCenterConfigurationCommandOutput>;
1953
+
createGlueIdentityCenterConfiguration(
1954
+
args: CreateGlueIdentityCenterConfigurationCommandInput,
1955
+
cb: (err: any, data?: CreateGlueIdentityCenterConfigurationCommandOutput) => void
1956
+
): void;
1957
+
createGlueIdentityCenterConfiguration(
1958
+
args: CreateGlueIdentityCenterConfigurationCommandInput,
1959
+
options: __HttpHandlerOptions,
1960
+
cb: (err: any, data?: CreateGlueIdentityCenterConfigurationCommandOutput) => void
1961
+
): void;
1962
+
1922
1963
/**
1923
1964
* @see {@link CreateIntegrationCommand}
1924
1965
*/
@@ -2367,6 +2408,24 @@ export interface Glue {
2367
2408
cb: (err: any, data?: DeleteDevEndpointCommandOutput) => void
2368
2409
): void;
2369
2410
2411
+
/**
2412
+
* @see {@link DeleteGlueIdentityCenterConfigurationCommand}
2413
+
*/
2414
+
deleteGlueIdentityCenterConfiguration(): Promise<DeleteGlueIdentityCenterConfigurationCommandOutput>;
2415
+
deleteGlueIdentityCenterConfiguration(
2416
+
args: DeleteGlueIdentityCenterConfigurationCommandInput,
2417
+
options?: __HttpHandlerOptions
2418
+
): Promise<DeleteGlueIdentityCenterConfigurationCommandOutput>;
2419
+
deleteGlueIdentityCenterConfiguration(
2420
+
args: DeleteGlueIdentityCenterConfigurationCommandInput,
2421
+
cb: (err: any, data?: DeleteGlueIdentityCenterConfigurationCommandOutput) => void
2422
+
): void;
2423
+
deleteGlueIdentityCenterConfiguration(
2424
+
args: DeleteGlueIdentityCenterConfigurationCommandInput,
2425
+
options: __HttpHandlerOptions,
2426
+
cb: (err: any, data?: DeleteGlueIdentityCenterConfigurationCommandOutput) => void
2427
+
): void;
2428
+
2370
2429
/**
2371
2430
* @see {@link DeleteIntegrationCommand}
2372
2431
*/
@@ -3204,6 +3263,24 @@ export interface Glue {
3204
3263
cb: (err: any, data?: GetEntityRecordsCommandOutput) => void
3205
3264
): void;
3206
3265
3266
+
/**
3267
+
* @see {@link GetGlueIdentityCenterConfigurationCommand}
3268
+
*/
3269
+
getGlueIdentityCenterConfiguration(): Promise<GetGlueIdentityCenterConfigurationCommandOutput>;
3270
+
getGlueIdentityCenterConfiguration(
3271
+
args: GetGlueIdentityCenterConfigurationCommandInput,
3272
+
options?: __HttpHandlerOptions
3273
+
): Promise<GetGlueIdentityCenterConfigurationCommandOutput>;
3274
+
getGlueIdentityCenterConfiguration(
3275
+
args: GetGlueIdentityCenterConfigurationCommandInput,
3276
+
cb: (err: any, data?: GetGlueIdentityCenterConfigurationCommandOutput) => void
3277
+
): void;
3278
+
getGlueIdentityCenterConfiguration(
3279
+
args: GetGlueIdentityCenterConfigurationCommandInput,
3280
+
options: __HttpHandlerOptions,
3281
+
cb: (err: any, data?: GetGlueIdentityCenterConfigurationCommandOutput) => void
3282
+
): void;
3283
+
3207
3284
/**
3208
3285
* @see {@link GetIntegrationResourcePropertyCommand}
3209
3286
*/
@@ -4995,6 +5072,24 @@ export interface Glue {
4995
5072
cb: (err: any, data?: UpdateDevEndpointCommandOutput) => void
4996
5073
): void;
4997
5074
5075
+
/**
5076
+
* @see {@link UpdateGlueIdentityCenterConfigurationCommand}
5077
+
*/
5078
+
updateGlueIdentityCenterConfiguration(): Promise<UpdateGlueIdentityCenterConfigurationCommandOutput>;
5079
+
updateGlueIdentityCenterConfiguration(
5080
+
args: UpdateGlueIdentityCenterConfigurationCommandInput,
5081
+
options?: __HttpHandlerOptions
5082
+
): Promise<UpdateGlueIdentityCenterConfigurationCommandOutput>;
5083
+
updateGlueIdentityCenterConfiguration(
5084
+
args: UpdateGlueIdentityCenterConfigurationCommandInput,
5085
+
cb: (err: any, data?: UpdateGlueIdentityCenterConfigurationCommandOutput) => void
5086
+
): void;
5087
+
updateGlueIdentityCenterConfiguration(
5088
+
args: UpdateGlueIdentityCenterConfigurationCommandInput,
5089
+
options: __HttpHandlerOptions,
5090
+
cb: (err: any, data?: UpdateGlueIdentityCenterConfigurationCommandOutput) => void
5091
+
): void;
5092
+
4998
5093
/**
4999
5094
* @see {@link UpdateIntegrationResourcePropertyCommand}
5000
5095
*/
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4