@aws-sdk/client-glue 3.931.0 → 3.933.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 +16 -0
- package/dist-cjs/index.js +98 -8
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/DeleteIntegrationResourcePropertyCommand.js +16 -0
- package/dist-es/commands/ListIntegrationResourcePropertiesCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +71 -8
- package/dist-types/Glue.d.ts +15 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/CreateIntegrationResourcePropertyCommand.d.ts +7 -0
- package/dist-types/commands/DeleteIntegrationResourcePropertyCommand.d.ts +93 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +2 -1
- package/dist-types/commands/GetCatalogImportStatusCommand.d.ts +1 -2
- package/dist-types/commands/GetIntegrationResourcePropertyCommand.d.ts +1 -0
- package/dist-types/commands/ListIntegrationResourcePropertiesCommand.d.ts +119 -0
- package/dist-types/commands/ListSchemaVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/commands/ListStatementsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_1.d.ts +26 -21
- package/dist-types/models/models_2.d.ts +102 -126
- package/dist-types/models/models_3.d.ts +135 -4
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/Glue.d.ts +47 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetCatalogImportStatusCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListIntegrationResourcePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +6 -6
- package/dist-types/ts3.4/models/models_2.d.ts +26 -31
- package/dist-types/ts3.4/models/models_3.d.ts +34 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -732,6 +732,14 @@ DeleteIntegration
|
|
|
732
732
|
|
|
733
733
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationCommandOutput/)
|
|
734
734
|
|
|
735
|
+
</details>
|
|
736
|
+
<details>
|
|
737
|
+
<summary>
|
|
738
|
+
DeleteIntegrationResourceProperty
|
|
739
|
+
</summary>
|
|
740
|
+
|
|
741
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/DeleteIntegrationResourcePropertyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationResourcePropertyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/DeleteIntegrationResourcePropertyCommandOutput/)
|
|
742
|
+
|
|
735
743
|
</details>
|
|
736
744
|
<details>
|
|
737
745
|
<summary>
|
|
@@ -1652,6 +1660,14 @@ ListEntities
|
|
|
1652
1660
|
|
|
1653
1661
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListEntitiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListEntitiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListEntitiesCommandOutput/)
|
|
1654
1662
|
|
|
1663
|
+
</details>
|
|
1664
|
+
<details>
|
|
1665
|
+
<summary>
|
|
1666
|
+
ListIntegrationResourceProperties
|
|
1667
|
+
</summary>
|
|
1668
|
+
|
|
1669
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListIntegrationResourcePropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListIntegrationResourcePropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListIntegrationResourcePropertiesCommandOutput/)
|
|
1670
|
+
|
|
1655
1671
|
</details>
|
|
1656
1672
|
<details>
|
|
1657
1673
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -2229,6 +2229,9 @@ const _DII = "DescribeInboundIntegrations";
|
|
|
2229
2229
|
const _DIIR = "DescribeInboundIntegrationsRequest";
|
|
2230
2230
|
const _DIIRe = "DescribeInboundIntegrationsResponse";
|
|
2231
2231
|
const _DIR = "DeleteIntegrationRequest";
|
|
2232
|
+
const _DIRP = "DeleteIntegrationResourceProperty";
|
|
2233
|
+
const _DIRPR = "DeleteIntegrationResourcePropertyRequest";
|
|
2234
|
+
const _DIRPRe = "DeleteIntegrationResourcePropertyResponse";
|
|
2232
2235
|
const _DIRe = "DeleteIntegrationResponse";
|
|
2233
2236
|
const _DIRes = "DescribeIntegrationsRequest";
|
|
2234
2237
|
const _DIResc = "DescribeIntegrationsResponse";
|
|
@@ -2817,6 +2820,10 @@ const _IQEF = "IntegrationQuotaExceededFault";
|
|
|
2817
2820
|
const _IR = "IamRole";
|
|
2818
2821
|
const _IRC = "IcebergRetentionConfiguration";
|
|
2819
2822
|
const _IRM = "IcebergRetentionMetrics";
|
|
2823
|
+
const _IRP = "IntegrationResourceProperty";
|
|
2824
|
+
const _IRPF = "IntegrationResourcePropertyFilter";
|
|
2825
|
+
const _IRPFL = "IntegrationResourcePropertyFilterList";
|
|
2826
|
+
const _IRPL = "IntegrationResourcePropertyList";
|
|
2820
2827
|
const _IRT = "InputRecordTables";
|
|
2821
2828
|
const _IRWLF = "IsRegisteredWithLakeFormation";
|
|
2822
2829
|
const _IRn = "IncludeRoot";
|
|
@@ -2965,6 +2972,9 @@ const _LERi = "ListEntitiesResponse";
|
|
|
2965
2972
|
const _LFC = "LakeFormationConfiguration";
|
|
2966
2973
|
const _LG = "LogGroup";
|
|
2967
2974
|
const _LGN = "LogGroupName";
|
|
2975
|
+
const _LIRP = "ListIntegrationResourceProperties";
|
|
2976
|
+
const _LIRPR = "ListIntegrationResourcePropertiesRequest";
|
|
2977
|
+
const _LIRPRi = "ListIntegrationResourcePropertiesResponse";
|
|
2968
2978
|
const _LJ = "ListJobs";
|
|
2969
2979
|
const _LJR = "ListJobsRequest";
|
|
2970
2980
|
const _LJRi = "ListJobsResponse";
|
|
@@ -3335,6 +3345,7 @@ const _RO = "RequestOrigin";
|
|
|
3335
3345
|
const _ROe = "RecordedOn";
|
|
3336
3346
|
const _ROep = "RepositoryOwner";
|
|
3337
3347
|
const _RP = "RecrawlPolicy";
|
|
3348
|
+
const _RPA = "ResourcePropertyArn";
|
|
3338
3349
|
const _RPE = "ResultsPublishingEnabled";
|
|
3339
3350
|
const _RPL = "RecordPollingLimit";
|
|
3340
3351
|
const _RPu = "RunProperties";
|
|
@@ -5198,16 +5209,16 @@ var CreateIntegrationResourcePropertyRequest = [
|
|
|
5198
5209
|
n0,
|
|
5199
5210
|
_CIRPR,
|
|
5200
5211
|
0,
|
|
5201
|
-
[_RAe, _SPP, _TPP],
|
|
5202
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
5212
|
+
[_RAe, _SPP, _TPP, _Tag],
|
|
5213
|
+
[0, () => SourceProcessingProperties, () => TargetProcessingProperties, () => IntegrationTagsList],
|
|
5203
5214
|
];
|
|
5204
5215
|
var CreateIntegrationResourcePropertyResponse = [
|
|
5205
5216
|
3,
|
|
5206
5217
|
n0,
|
|
5207
5218
|
_CIRPRr,
|
|
5208
5219
|
0,
|
|
5209
|
-
[_RAe, _SPP, _TPP],
|
|
5210
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
5220
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
5221
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
5211
5222
|
];
|
|
5212
5223
|
var CreateIntegrationResponse = [
|
|
5213
5224
|
3,
|
|
@@ -5697,6 +5708,8 @@ var DeleteDevEndpointResponse = [3, n0, _DDERe, 0, [], []];
|
|
|
5697
5708
|
var DeleteGlueIdentityCenterConfigurationRequest = [3, n0, _DGICCR, 0, [], []];
|
|
5698
5709
|
var DeleteGlueIdentityCenterConfigurationResponse = [3, n0, _DGICCRe, 0, [], []];
|
|
5699
5710
|
var DeleteIntegrationRequest = [3, n0, _DIR, 0, [_II], [0]];
|
|
5711
|
+
var DeleteIntegrationResourcePropertyRequest = [3, n0, _DIRPR, 0, [_RAe], [0]];
|
|
5712
|
+
var DeleteIntegrationResourcePropertyResponse = [3, n0, _DIRPRe, 0, [], []];
|
|
5700
5713
|
var DeleteIntegrationResponse = [
|
|
5701
5714
|
3,
|
|
5702
5715
|
n0,
|
|
@@ -6341,8 +6354,8 @@ var GetIntegrationResourcePropertyResponse = [
|
|
|
6341
6354
|
n0,
|
|
6342
6355
|
_GIRPRe,
|
|
6343
6356
|
0,
|
|
6344
|
-
[_RAe, _SPP, _TPP],
|
|
6345
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
6357
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
6358
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
6346
6359
|
];
|
|
6347
6360
|
var GetIntegrationTablePropertiesRequest = [3, n0, _GITPR, 0, [_RAe, _TN], [0, 0]];
|
|
6348
6361
|
var GetIntegrationTablePropertiesResponse = [
|
|
@@ -6949,6 +6962,15 @@ var IntegrationQuotaExceededFault = [
|
|
|
6949
6962
|
[0],
|
|
6950
6963
|
];
|
|
6951
6964
|
schema.TypeRegistry.for(n0).registerError(IntegrationQuotaExceededFault, IntegrationQuotaExceededFault$1);
|
|
6965
|
+
var IntegrationResourceProperty = [
|
|
6966
|
+
3,
|
|
6967
|
+
n0,
|
|
6968
|
+
_IRP,
|
|
6969
|
+
0,
|
|
6970
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
6971
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
6972
|
+
];
|
|
6973
|
+
var IntegrationResourcePropertyFilter = [3, n0, _IRPF, 0, [_N, _Val], [0, 64 | 0]];
|
|
6952
6974
|
var InternalServerException = [
|
|
6953
6975
|
-3,
|
|
6954
6976
|
n0,
|
|
@@ -7460,6 +7482,22 @@ var ListEntitiesRequest = [
|
|
|
7460
7482
|
[0, 0, 0, 0, 0],
|
|
7461
7483
|
];
|
|
7462
7484
|
var ListEntitiesResponse = [3, n0, _LERi, 0, [_Enti, _NTe], [() => EntityList, 0]];
|
|
7485
|
+
var ListIntegrationResourcePropertiesRequest = [
|
|
7486
|
+
3,
|
|
7487
|
+
n0,
|
|
7488
|
+
_LIRPR,
|
|
7489
|
+
0,
|
|
7490
|
+
[_Mar, _Fil, _MRa],
|
|
7491
|
+
[0, () => IntegrationResourcePropertyFilterList, 1],
|
|
7492
|
+
];
|
|
7493
|
+
var ListIntegrationResourcePropertiesResponse = [
|
|
7494
|
+
3,
|
|
7495
|
+
n0,
|
|
7496
|
+
_LIRPRi,
|
|
7497
|
+
0,
|
|
7498
|
+
[_IRPL, _Mar],
|
|
7499
|
+
[() => IntegrationResourcePropertyList, 0],
|
|
7500
|
+
];
|
|
7463
7501
|
var ListJobsRequest = [3, n0, _LJR, 0, [_NTe, _MRax, _Tag], [0, 1, 128 | 0]];
|
|
7464
7502
|
var ListJobsResponse = [3, n0, _LJRi, 0, [_JNo, _NTe], [64 | 0, 0]];
|
|
7465
7503
|
var ListMLTransformsRequest = [
|
|
@@ -9054,8 +9092,8 @@ var UpdateIntegrationResourcePropertyResponse = [
|
|
|
9054
9092
|
n0,
|
|
9055
9093
|
_UIRPRp,
|
|
9056
9094
|
0,
|
|
9057
|
-
[_RAe, _SPP, _TPP],
|
|
9058
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
9095
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
9096
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
9059
9097
|
];
|
|
9060
9098
|
var UpdateIntegrationTablePropertiesRequest = [
|
|
9061
9099
|
3,
|
|
@@ -9381,6 +9419,14 @@ var InclusionAnnotationList = [1, n0, _IAL, 0, () => DatapointInclusionAnnotatio
|
|
|
9381
9419
|
var IntegrationErrorList = [1, n0, _IEL, 0, () => IntegrationError];
|
|
9382
9420
|
var IntegrationFilterList = [1, n0, _IFL, 0, () => IntegrationFilter];
|
|
9383
9421
|
var IntegrationPartitionSpecList = [1, n0, _IPSL, 0, () => IntegrationPartition];
|
|
9422
|
+
var IntegrationResourcePropertyFilterList = [
|
|
9423
|
+
1,
|
|
9424
|
+
n0,
|
|
9425
|
+
_IRPFL,
|
|
9426
|
+
0,
|
|
9427
|
+
() => IntegrationResourcePropertyFilter,
|
|
9428
|
+
];
|
|
9429
|
+
var IntegrationResourcePropertyList = [1, n0, _IRPL, 0, () => IntegrationResourceProperty];
|
|
9384
9430
|
var IntegrationsList = [1, n0, _IL, 0, () => Integration];
|
|
9385
9431
|
var IntegrationTagsList = [1, n0, _ITLn, 0, () => Tag];
|
|
9386
9432
|
var JdbcTargetList = [1, n0, _JTL, 0, () => JdbcTarget];
|
|
@@ -9972,6 +10018,14 @@ var DeleteIntegration = [
|
|
|
9972
10018
|
() => DeleteIntegrationRequest,
|
|
9973
10019
|
() => DeleteIntegrationResponse,
|
|
9974
10020
|
];
|
|
10021
|
+
var DeleteIntegrationResourceProperty = [
|
|
10022
|
+
9,
|
|
10023
|
+
n0,
|
|
10024
|
+
_DIRP,
|
|
10025
|
+
0,
|
|
10026
|
+
() => DeleteIntegrationResourcePropertyRequest,
|
|
10027
|
+
() => DeleteIntegrationResourcePropertyResponse,
|
|
10028
|
+
];
|
|
9975
10029
|
var DeleteIntegrationTableProperties = [
|
|
9976
10030
|
9,
|
|
9977
10031
|
n0,
|
|
@@ -10724,6 +10778,14 @@ var ListDevEndpoints = [
|
|
|
10724
10778
|
() => ListDevEndpointsResponse,
|
|
10725
10779
|
];
|
|
10726
10780
|
var ListEntities = [9, n0, _LE, 0, () => ListEntitiesRequest, () => ListEntitiesResponse];
|
|
10781
|
+
var ListIntegrationResourceProperties = [
|
|
10782
|
+
9,
|
|
10783
|
+
n0,
|
|
10784
|
+
_LIRP,
|
|
10785
|
+
0,
|
|
10786
|
+
() => ListIntegrationResourcePropertiesRequest,
|
|
10787
|
+
() => ListIntegrationResourcePropertiesResponse,
|
|
10788
|
+
];
|
|
10727
10789
|
var ListJobs = [9, n0, _LJ, 0, () => ListJobsRequest, () => ListJobsResponse];
|
|
10728
10790
|
var ListMLTransforms = [
|
|
10729
10791
|
9,
|
|
@@ -12055,6 +12117,18 @@ class DeleteIntegrationCommand extends smithyClient.Command
|
|
|
12055
12117
|
.build() {
|
|
12056
12118
|
}
|
|
12057
12119
|
|
|
12120
|
+
class DeleteIntegrationResourcePropertyCommand extends smithyClient.Command
|
|
12121
|
+
.classBuilder()
|
|
12122
|
+
.ep(commonParams)
|
|
12123
|
+
.m(function (Command, cs, config, o) {
|
|
12124
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
12125
|
+
})
|
|
12126
|
+
.s("AWSGlue", "DeleteIntegrationResourceProperty", {})
|
|
12127
|
+
.n("GlueClient", "DeleteIntegrationResourcePropertyCommand")
|
|
12128
|
+
.sc(DeleteIntegrationResourceProperty)
|
|
12129
|
+
.build() {
|
|
12130
|
+
}
|
|
12131
|
+
|
|
12058
12132
|
class DeleteIntegrationTablePropertiesCommand extends smithyClient.Command
|
|
12059
12133
|
.classBuilder()
|
|
12060
12134
|
.ep(commonParams)
|
|
@@ -13435,6 +13509,18 @@ class ListEntitiesCommand extends smithyClient.Command
|
|
|
13435
13509
|
.build() {
|
|
13436
13510
|
}
|
|
13437
13511
|
|
|
13512
|
+
class ListIntegrationResourcePropertiesCommand extends smithyClient.Command
|
|
13513
|
+
.classBuilder()
|
|
13514
|
+
.ep(commonParams)
|
|
13515
|
+
.m(function (Command, cs, config, o) {
|
|
13516
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13517
|
+
})
|
|
13518
|
+
.s("AWSGlue", "ListIntegrationResourceProperties", {})
|
|
13519
|
+
.n("GlueClient", "ListIntegrationResourcePropertiesCommand")
|
|
13520
|
+
.sc(ListIntegrationResourceProperties)
|
|
13521
|
+
.build() {
|
|
13522
|
+
}
|
|
13523
|
+
|
|
13438
13524
|
class ListJobsCommand extends smithyClient.Command
|
|
13439
13525
|
.classBuilder()
|
|
13440
13526
|
.ep(commonParams)
|
|
@@ -14414,6 +14500,7 @@ const commands = {
|
|
|
14414
14500
|
DeleteDevEndpointCommand,
|
|
14415
14501
|
DeleteGlueIdentityCenterConfigurationCommand,
|
|
14416
14502
|
DeleteIntegrationCommand,
|
|
14503
|
+
DeleteIntegrationResourcePropertyCommand,
|
|
14417
14504
|
DeleteIntegrationTablePropertiesCommand,
|
|
14418
14505
|
DeleteJobCommand,
|
|
14419
14506
|
DeleteMLTransformCommand,
|
|
@@ -14529,6 +14616,7 @@ const commands = {
|
|
|
14529
14616
|
ListDataQualityStatisticsCommand,
|
|
14530
14617
|
ListDevEndpointsCommand,
|
|
14531
14618
|
ListEntitiesCommand,
|
|
14619
|
+
ListIntegrationResourcePropertiesCommand,
|
|
14532
14620
|
ListJobsCommand,
|
|
14533
14621
|
ListMLTransformsCommand,
|
|
14534
14622
|
ListRegistriesCommand,
|
|
@@ -14824,6 +14912,7 @@ exports.DeleteDatabaseCommand = DeleteDatabaseCommand;
|
|
|
14824
14912
|
exports.DeleteDevEndpointCommand = DeleteDevEndpointCommand;
|
|
14825
14913
|
exports.DeleteGlueIdentityCenterConfigurationCommand = DeleteGlueIdentityCenterConfigurationCommand;
|
|
14826
14914
|
exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
|
|
14915
|
+
exports.DeleteIntegrationResourcePropertyCommand = DeleteIntegrationResourcePropertyCommand;
|
|
14827
14916
|
exports.DeleteIntegrationTablePropertiesCommand = DeleteIntegrationTablePropertiesCommand;
|
|
14828
14917
|
exports.DeleteJobCommand = DeleteJobCommand;
|
|
14829
14918
|
exports.DeleteMLTransformCommand = DeleteMLTransformCommand;
|
|
@@ -14991,6 +15080,7 @@ exports.ListDataQualityStatisticAnnotationsCommand = ListDataQualityStatisticAnn
|
|
|
14991
15080
|
exports.ListDataQualityStatisticsCommand = ListDataQualityStatisticsCommand;
|
|
14992
15081
|
exports.ListDevEndpointsCommand = ListDevEndpointsCommand;
|
|
14993
15082
|
exports.ListEntitiesCommand = ListEntitiesCommand;
|
|
15083
|
+
exports.ListIntegrationResourcePropertiesCommand = ListIntegrationResourcePropertiesCommand;
|
|
14994
15084
|
exports.ListJobsCommand = ListJobsCommand;
|
|
14995
15085
|
exports.ListMLTransformsCommand = ListMLTransformsCommand;
|
|
14996
15086
|
exports.ListRegistriesCommand = ListRegistriesCommand;
|
package/dist-es/Glue.js
CHANGED
|
@@ -65,6 +65,7 @@ import { DeleteDataQualityRulesetCommand, } from "./commands/DeleteDataQualityRu
|
|
|
65
65
|
import { DeleteDevEndpointCommand, } from "./commands/DeleteDevEndpointCommand";
|
|
66
66
|
import { DeleteGlueIdentityCenterConfigurationCommand, } from "./commands/DeleteGlueIdentityCenterConfigurationCommand";
|
|
67
67
|
import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
|
|
68
|
+
import { DeleteIntegrationResourcePropertyCommand, } from "./commands/DeleteIntegrationResourcePropertyCommand";
|
|
68
69
|
import { DeleteIntegrationTablePropertiesCommand, } from "./commands/DeleteIntegrationTablePropertiesCommand";
|
|
69
70
|
import { DeleteJobCommand } from "./commands/DeleteJobCommand";
|
|
70
71
|
import { DeleteMLTransformCommand, } from "./commands/DeleteMLTransformCommand";
|
|
@@ -180,6 +181,7 @@ import { ListDataQualityStatisticAnnotationsCommand, } from "./commands/ListData
|
|
|
180
181
|
import { ListDataQualityStatisticsCommand, } from "./commands/ListDataQualityStatisticsCommand";
|
|
181
182
|
import { ListDevEndpointsCommand, } from "./commands/ListDevEndpointsCommand";
|
|
182
183
|
import { ListEntitiesCommand, } from "./commands/ListEntitiesCommand";
|
|
184
|
+
import { ListIntegrationResourcePropertiesCommand, } from "./commands/ListIntegrationResourcePropertiesCommand";
|
|
183
185
|
import { ListJobsCommand } from "./commands/ListJobsCommand";
|
|
184
186
|
import { ListMLTransformsCommand, } from "./commands/ListMLTransformsCommand";
|
|
185
187
|
import { ListRegistriesCommand, } from "./commands/ListRegistriesCommand";
|
|
@@ -324,6 +326,7 @@ const commands = {
|
|
|
324
326
|
DeleteDevEndpointCommand,
|
|
325
327
|
DeleteGlueIdentityCenterConfigurationCommand,
|
|
326
328
|
DeleteIntegrationCommand,
|
|
329
|
+
DeleteIntegrationResourcePropertyCommand,
|
|
327
330
|
DeleteIntegrationTablePropertiesCommand,
|
|
328
331
|
DeleteJobCommand,
|
|
329
332
|
DeleteMLTransformCommand,
|
|
@@ -439,6 +442,7 @@ const commands = {
|
|
|
439
442
|
ListDataQualityStatisticsCommand,
|
|
440
443
|
ListDevEndpointsCommand,
|
|
441
444
|
ListEntitiesCommand,
|
|
445
|
+
ListIntegrationResourcePropertiesCommand,
|
|
442
446
|
ListJobsCommand,
|
|
443
447
|
ListMLTransformsCommand,
|
|
444
448
|
ListRegistriesCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteIntegrationResourceProperty } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteIntegrationResourcePropertyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGlue", "DeleteIntegrationResourceProperty", {})
|
|
13
|
+
.n("GlueClient", "DeleteIntegrationResourcePropertyCommand")
|
|
14
|
+
.sc(DeleteIntegrationResourceProperty)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListIntegrationResourceProperties } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListIntegrationResourcePropertiesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGlue", "ListIntegrationResourceProperties", {})
|
|
13
|
+
.n("GlueClient", "ListIntegrationResourcePropertiesCommand")
|
|
14
|
+
.sc(ListIntegrationResourceProperties)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -64,6 +64,7 @@ export * from "./DeleteDatabaseCommand";
|
|
|
64
64
|
export * from "./DeleteDevEndpointCommand";
|
|
65
65
|
export * from "./DeleteGlueIdentityCenterConfigurationCommand";
|
|
66
66
|
export * from "./DeleteIntegrationCommand";
|
|
67
|
+
export * from "./DeleteIntegrationResourcePropertyCommand";
|
|
67
68
|
export * from "./DeleteIntegrationTablePropertiesCommand";
|
|
68
69
|
export * from "./DeleteJobCommand";
|
|
69
70
|
export * from "./DeleteMLTransformCommand";
|
|
@@ -179,6 +180,7 @@ export * from "./ListDataQualityStatisticAnnotationsCommand";
|
|
|
179
180
|
export * from "./ListDataQualityStatisticsCommand";
|
|
180
181
|
export * from "./ListDevEndpointsCommand";
|
|
181
182
|
export * from "./ListEntitiesCommand";
|
|
183
|
+
export * from "./ListIntegrationResourcePropertiesCommand";
|
|
182
184
|
export * from "./ListJobsCommand";
|
|
183
185
|
export * from "./ListMLTransformsCommand";
|
|
184
186
|
export * from "./ListRegistriesCommand";
|
|
@@ -558,6 +558,9 @@ const _DII = "DescribeInboundIntegrations";
|
|
|
558
558
|
const _DIIR = "DescribeInboundIntegrationsRequest";
|
|
559
559
|
const _DIIRe = "DescribeInboundIntegrationsResponse";
|
|
560
560
|
const _DIR = "DeleteIntegrationRequest";
|
|
561
|
+
const _DIRP = "DeleteIntegrationResourceProperty";
|
|
562
|
+
const _DIRPR = "DeleteIntegrationResourcePropertyRequest";
|
|
563
|
+
const _DIRPRe = "DeleteIntegrationResourcePropertyResponse";
|
|
561
564
|
const _DIRe = "DeleteIntegrationResponse";
|
|
562
565
|
const _DIRes = "DescribeIntegrationsRequest";
|
|
563
566
|
const _DIResc = "DescribeIntegrationsResponse";
|
|
@@ -1146,6 +1149,10 @@ const _IQEF = "IntegrationQuotaExceededFault";
|
|
|
1146
1149
|
const _IR = "IamRole";
|
|
1147
1150
|
const _IRC = "IcebergRetentionConfiguration";
|
|
1148
1151
|
const _IRM = "IcebergRetentionMetrics";
|
|
1152
|
+
const _IRP = "IntegrationResourceProperty";
|
|
1153
|
+
const _IRPF = "IntegrationResourcePropertyFilter";
|
|
1154
|
+
const _IRPFL = "IntegrationResourcePropertyFilterList";
|
|
1155
|
+
const _IRPL = "IntegrationResourcePropertyList";
|
|
1149
1156
|
const _IRT = "InputRecordTables";
|
|
1150
1157
|
const _IRWLF = "IsRegisteredWithLakeFormation";
|
|
1151
1158
|
const _IRn = "IncludeRoot";
|
|
@@ -1294,6 +1301,9 @@ const _LERi = "ListEntitiesResponse";
|
|
|
1294
1301
|
const _LFC = "LakeFormationConfiguration";
|
|
1295
1302
|
const _LG = "LogGroup";
|
|
1296
1303
|
const _LGN = "LogGroupName";
|
|
1304
|
+
const _LIRP = "ListIntegrationResourceProperties";
|
|
1305
|
+
const _LIRPR = "ListIntegrationResourcePropertiesRequest";
|
|
1306
|
+
const _LIRPRi = "ListIntegrationResourcePropertiesResponse";
|
|
1297
1307
|
const _LJ = "ListJobs";
|
|
1298
1308
|
const _LJR = "ListJobsRequest";
|
|
1299
1309
|
const _LJRi = "ListJobsResponse";
|
|
@@ -1664,6 +1674,7 @@ const _RO = "RequestOrigin";
|
|
|
1664
1674
|
const _ROe = "RecordedOn";
|
|
1665
1675
|
const _ROep = "RepositoryOwner";
|
|
1666
1676
|
const _RP = "RecrawlPolicy";
|
|
1677
|
+
const _RPA = "ResourcePropertyArn";
|
|
1667
1678
|
const _RPE = "ResultsPublishingEnabled";
|
|
1668
1679
|
const _RPL = "RecordPollingLimit";
|
|
1669
1680
|
const _RPu = "RunProperties";
|
|
@@ -3530,16 +3541,16 @@ export var CreateIntegrationResourcePropertyRequest = [
|
|
|
3530
3541
|
n0,
|
|
3531
3542
|
_CIRPR,
|
|
3532
3543
|
0,
|
|
3533
|
-
[_RAe, _SPP, _TPP],
|
|
3534
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
3544
|
+
[_RAe, _SPP, _TPP, _Tag],
|
|
3545
|
+
[0, () => SourceProcessingProperties, () => TargetProcessingProperties, () => IntegrationTagsList],
|
|
3535
3546
|
];
|
|
3536
3547
|
export var CreateIntegrationResourcePropertyResponse = [
|
|
3537
3548
|
3,
|
|
3538
3549
|
n0,
|
|
3539
3550
|
_CIRPRr,
|
|
3540
3551
|
0,
|
|
3541
|
-
[_RAe, _SPP, _TPP],
|
|
3542
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
3552
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
3553
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
3543
3554
|
];
|
|
3544
3555
|
export var CreateIntegrationResponse = [
|
|
3545
3556
|
3,
|
|
@@ -4029,6 +4040,8 @@ export var DeleteDevEndpointResponse = [3, n0, _DDERe, 0, [], []];
|
|
|
4029
4040
|
export var DeleteGlueIdentityCenterConfigurationRequest = [3, n0, _DGICCR, 0, [], []];
|
|
4030
4041
|
export var DeleteGlueIdentityCenterConfigurationResponse = [3, n0, _DGICCRe, 0, [], []];
|
|
4031
4042
|
export var DeleteIntegrationRequest = [3, n0, _DIR, 0, [_II], [0]];
|
|
4043
|
+
export var DeleteIntegrationResourcePropertyRequest = [3, n0, _DIRPR, 0, [_RAe], [0]];
|
|
4044
|
+
export var DeleteIntegrationResourcePropertyResponse = [3, n0, _DIRPRe, 0, [], []];
|
|
4032
4045
|
export var DeleteIntegrationResponse = [
|
|
4033
4046
|
3,
|
|
4034
4047
|
n0,
|
|
@@ -4673,8 +4686,8 @@ export var GetIntegrationResourcePropertyResponse = [
|
|
|
4673
4686
|
n0,
|
|
4674
4687
|
_GIRPRe,
|
|
4675
4688
|
0,
|
|
4676
|
-
[_RAe, _SPP, _TPP],
|
|
4677
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
4689
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
4690
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
4678
4691
|
];
|
|
4679
4692
|
export var GetIntegrationTablePropertiesRequest = [3, n0, _GITPR, 0, [_RAe, _TN], [0, 0]];
|
|
4680
4693
|
export var GetIntegrationTablePropertiesResponse = [
|
|
@@ -5281,6 +5294,15 @@ export var IntegrationQuotaExceededFault = [
|
|
|
5281
5294
|
[0],
|
|
5282
5295
|
];
|
|
5283
5296
|
TypeRegistry.for(n0).registerError(IntegrationQuotaExceededFault, __IntegrationQuotaExceededFault);
|
|
5297
|
+
export var IntegrationResourceProperty = [
|
|
5298
|
+
3,
|
|
5299
|
+
n0,
|
|
5300
|
+
_IRP,
|
|
5301
|
+
0,
|
|
5302
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
5303
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
5304
|
+
];
|
|
5305
|
+
export var IntegrationResourcePropertyFilter = [3, n0, _IRPF, 0, [_N, _Val], [0, 64 | 0]];
|
|
5284
5306
|
export var InternalServerException = [
|
|
5285
5307
|
-3,
|
|
5286
5308
|
n0,
|
|
@@ -5792,6 +5814,22 @@ export var ListEntitiesRequest = [
|
|
|
5792
5814
|
[0, 0, 0, 0, 0],
|
|
5793
5815
|
];
|
|
5794
5816
|
export var ListEntitiesResponse = [3, n0, _LERi, 0, [_Enti, _NTe], [() => EntityList, 0]];
|
|
5817
|
+
export var ListIntegrationResourcePropertiesRequest = [
|
|
5818
|
+
3,
|
|
5819
|
+
n0,
|
|
5820
|
+
_LIRPR,
|
|
5821
|
+
0,
|
|
5822
|
+
[_Mar, _Fil, _MRa],
|
|
5823
|
+
[0, () => IntegrationResourcePropertyFilterList, 1],
|
|
5824
|
+
];
|
|
5825
|
+
export var ListIntegrationResourcePropertiesResponse = [
|
|
5826
|
+
3,
|
|
5827
|
+
n0,
|
|
5828
|
+
_LIRPRi,
|
|
5829
|
+
0,
|
|
5830
|
+
[_IRPL, _Mar],
|
|
5831
|
+
[() => IntegrationResourcePropertyList, 0],
|
|
5832
|
+
];
|
|
5795
5833
|
export var ListJobsRequest = [3, n0, _LJR, 0, [_NTe, _MRax, _Tag], [0, 1, 128 | 0]];
|
|
5796
5834
|
export var ListJobsResponse = [3, n0, _LJRi, 0, [_JNo, _NTe], [64 | 0, 0]];
|
|
5797
5835
|
export var ListMLTransformsRequest = [
|
|
@@ -7386,8 +7424,8 @@ export var UpdateIntegrationResourcePropertyResponse = [
|
|
|
7386
7424
|
n0,
|
|
7387
7425
|
_UIRPRp,
|
|
7388
7426
|
0,
|
|
7389
|
-
[_RAe, _SPP, _TPP],
|
|
7390
|
-
[0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
7427
|
+
[_RAe, _RPA, _SPP, _TPP],
|
|
7428
|
+
[0, 0, () => SourceProcessingProperties, () => TargetProcessingProperties],
|
|
7391
7429
|
];
|
|
7392
7430
|
export var UpdateIntegrationTablePropertiesRequest = [
|
|
7393
7431
|
3,
|
|
@@ -7752,6 +7790,15 @@ export var IntegrationErrorList = [1, n0, _IEL, 0, () => IntegrationError];
|
|
|
7752
7790
|
export var IntegrationFilterList = [1, n0, _IFL, 0, () => IntegrationFilter];
|
|
7753
7791
|
export var IntegrationFilterValues = 64 | 0;
|
|
7754
7792
|
export var IntegrationPartitionSpecList = [1, n0, _IPSL, 0, () => IntegrationPartition];
|
|
7793
|
+
export var IntegrationResourcePropertyFilterList = [
|
|
7794
|
+
1,
|
|
7795
|
+
n0,
|
|
7796
|
+
_IRPFL,
|
|
7797
|
+
0,
|
|
7798
|
+
() => IntegrationResourcePropertyFilter,
|
|
7799
|
+
];
|
|
7800
|
+
export var IntegrationResourcePropertyFilterValues = 64 | 0;
|
|
7801
|
+
export var IntegrationResourcePropertyList = [1, n0, _IRPL, 0, () => IntegrationResourceProperty];
|
|
7755
7802
|
export var IntegrationsList = [1, n0, _IL, 0, () => Integration];
|
|
7756
7803
|
export var IntegrationTagsList = [1, n0, _ITLn, 0, () => Tag];
|
|
7757
7804
|
export var JdbcTargetList = [1, n0, _JTL, 0, () => JdbcTarget];
|
|
@@ -8403,6 +8450,14 @@ export var DeleteIntegration = [
|
|
|
8403
8450
|
() => DeleteIntegrationRequest,
|
|
8404
8451
|
() => DeleteIntegrationResponse,
|
|
8405
8452
|
];
|
|
8453
|
+
export var DeleteIntegrationResourceProperty = [
|
|
8454
|
+
9,
|
|
8455
|
+
n0,
|
|
8456
|
+
_DIRP,
|
|
8457
|
+
0,
|
|
8458
|
+
() => DeleteIntegrationResourcePropertyRequest,
|
|
8459
|
+
() => DeleteIntegrationResourcePropertyResponse,
|
|
8460
|
+
];
|
|
8406
8461
|
export var DeleteIntegrationTableProperties = [
|
|
8407
8462
|
9,
|
|
8408
8463
|
n0,
|
|
@@ -9155,6 +9210,14 @@ export var ListDevEndpoints = [
|
|
|
9155
9210
|
() => ListDevEndpointsResponse,
|
|
9156
9211
|
];
|
|
9157
9212
|
export var ListEntities = [9, n0, _LE, 0, () => ListEntitiesRequest, () => ListEntitiesResponse];
|
|
9213
|
+
export var ListIntegrationResourceProperties = [
|
|
9214
|
+
9,
|
|
9215
|
+
n0,
|
|
9216
|
+
_LIRP,
|
|
9217
|
+
0,
|
|
9218
|
+
() => ListIntegrationResourcePropertiesRequest,
|
|
9219
|
+
() => ListIntegrationResourcePropertiesResponse,
|
|
9220
|
+
];
|
|
9158
9221
|
export var ListJobs = [9, n0, _LJ, 0, () => ListJobsRequest, () => ListJobsResponse];
|
|
9159
9222
|
export var ListMLTransforms = [
|
|
9160
9223
|
9,
|
package/dist-types/Glue.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ import { DeleteDataQualityRulesetCommandInput, DeleteDataQualityRulesetCommandOu
|
|
|
65
65
|
import { DeleteDevEndpointCommandInput, DeleteDevEndpointCommandOutput } from "./commands/DeleteDevEndpointCommand";
|
|
66
66
|
import { DeleteGlueIdentityCenterConfigurationCommandInput, DeleteGlueIdentityCenterConfigurationCommandOutput } from "./commands/DeleteGlueIdentityCenterConfigurationCommand";
|
|
67
67
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
68
|
+
import { DeleteIntegrationResourcePropertyCommandInput, DeleteIntegrationResourcePropertyCommandOutput } from "./commands/DeleteIntegrationResourcePropertyCommand";
|
|
68
69
|
import { DeleteIntegrationTablePropertiesCommandInput, DeleteIntegrationTablePropertiesCommandOutput } from "./commands/DeleteIntegrationTablePropertiesCommand";
|
|
69
70
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
70
71
|
import { DeleteMLTransformCommandInput, DeleteMLTransformCommandOutput } from "./commands/DeleteMLTransformCommand";
|
|
@@ -180,6 +181,7 @@ import { ListDataQualityStatisticAnnotationsCommandInput, ListDataQualityStatist
|
|
|
180
181
|
import { ListDataQualityStatisticsCommandInput, ListDataQualityStatisticsCommandOutput } from "./commands/ListDataQualityStatisticsCommand";
|
|
181
182
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "./commands/ListDevEndpointsCommand";
|
|
182
183
|
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
|
|
184
|
+
import { ListIntegrationResourcePropertiesCommandInput, ListIntegrationResourcePropertiesCommandOutput } from "./commands/ListIntegrationResourcePropertiesCommand";
|
|
183
185
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
184
186
|
import { ListMLTransformsCommandInput, ListMLTransformsCommandOutput } from "./commands/ListMLTransformsCommand";
|
|
185
187
|
import { ListRegistriesCommandInput, ListRegistriesCommandOutput } from "./commands/ListRegistriesCommand";
|
|
@@ -657,6 +659,12 @@ export interface Glue {
|
|
|
657
659
|
deleteIntegration(args: DeleteIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationCommandOutput>;
|
|
658
660
|
deleteIntegration(args: DeleteIntegrationCommandInput, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
659
661
|
deleteIntegration(args: DeleteIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
662
|
+
/**
|
|
663
|
+
* @see {@link DeleteIntegrationResourcePropertyCommand}
|
|
664
|
+
*/
|
|
665
|
+
deleteIntegrationResourceProperty(args: DeleteIntegrationResourcePropertyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationResourcePropertyCommandOutput>;
|
|
666
|
+
deleteIntegrationResourceProperty(args: DeleteIntegrationResourcePropertyCommandInput, cb: (err: any, data?: DeleteIntegrationResourcePropertyCommandOutput) => void): void;
|
|
667
|
+
deleteIntegrationResourceProperty(args: DeleteIntegrationResourcePropertyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationResourcePropertyCommandOutput) => void): void;
|
|
660
668
|
/**
|
|
661
669
|
* @see {@link DeleteIntegrationTablePropertiesCommand}
|
|
662
670
|
*/
|
|
@@ -1382,6 +1390,13 @@ export interface Glue {
|
|
|
1382
1390
|
listEntities(args: ListEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitiesCommandOutput>;
|
|
1383
1391
|
listEntities(args: ListEntitiesCommandInput, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
1384
1392
|
listEntities(args: ListEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
1393
|
+
/**
|
|
1394
|
+
* @see {@link ListIntegrationResourcePropertiesCommand}
|
|
1395
|
+
*/
|
|
1396
|
+
listIntegrationResourceProperties(): Promise<ListIntegrationResourcePropertiesCommandOutput>;
|
|
1397
|
+
listIntegrationResourceProperties(args: ListIntegrationResourcePropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationResourcePropertiesCommandOutput>;
|
|
1398
|
+
listIntegrationResourceProperties(args: ListIntegrationResourcePropertiesCommandInput, cb: (err: any, data?: ListIntegrationResourcePropertiesCommandOutput) => void): void;
|
|
1399
|
+
listIntegrationResourceProperties(args: ListIntegrationResourcePropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationResourcePropertiesCommandOutput) => void): void;
|
|
1385
1400
|
/**
|
|
1386
1401
|
* @see {@link ListJobsCommand}
|
|
1387
1402
|
*/
|