@aws-sdk/client-dataexchange 3.163.0 → 3.168.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/CHANGELOG.md +27 -0
- package/README.md +4 -1
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/DataExchange.d.ts +4 -1
- package/dist-types/DataExchangeClient.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +36 -69
- package/dist-types/ts3.4/models/models_0.d.ts +0 -11
- package/package.json +34 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-dataexchange
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.166.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.165.0...v3.166.0) (2022-09-07)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **client-dataexchange:** Documentation updates for AWS Data Exchange. ([b794a32](https://github.com/aws/aws-sdk-js-v3/commit/b794a32957a9760695a612b07022b59975125cb3))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.165.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.164.0...v3.165.0) (2022-09-06)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-dataexchange
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.163.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.162.0...v3.163.0) (2022-09-01)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-dataexchange
|
package/README.md
CHANGED
|
@@ -9,7 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
AWS SDK for JavaScript DataExchange Client for Node.js, Browser and React Native.
|
|
11
11
|
|
|
12
|
-
<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p
|
|
12
|
+
<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
|
|
13
|
+
<p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p>
|
|
14
|
+
<p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p>
|
|
15
|
+
<p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets.</p>
|
|
13
16
|
|
|
14
17
|
## Installing
|
|
15
18
|
|
|
@@ -3018,6 +3018,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
3018
3018
|
if (typeof cleanValue === "number") {
|
|
3019
3019
|
cleanValue = cleanValue.toString();
|
|
3020
3020
|
}
|
|
3021
|
+
if (cleanValue.indexOf(",") >= 0) {
|
|
3022
|
+
cleanValue = cleanValue.split(",")[0];
|
|
3023
|
+
}
|
|
3021
3024
|
if (cleanValue.indexOf(":") >= 0) {
|
|
3022
3025
|
cleanValue = cleanValue.split(":")[0];
|
|
3023
3026
|
}
|
|
@@ -3766,6 +3766,9 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
3766
3766
|
if (typeof cleanValue === "number") {
|
|
3767
3767
|
cleanValue = cleanValue.toString();
|
|
3768
3768
|
}
|
|
3769
|
+
if (cleanValue.indexOf(",") >= 0) {
|
|
3770
|
+
cleanValue = cleanValue.split(",")[0];
|
|
3771
|
+
}
|
|
3769
3772
|
if (cleanValue.indexOf(":") >= 0) {
|
|
3770
3773
|
cleanValue = cleanValue.split(":")[0];
|
|
3771
3774
|
}
|
|
@@ -30,7 +30,10 @@ import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from ".
|
|
|
30
30
|
import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "./commands/UpdateRevisionCommand";
|
|
31
31
|
import { DataExchangeClient } from "./DataExchangeClient";
|
|
32
32
|
/**
|
|
33
|
-
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p
|
|
33
|
+
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
|
|
34
|
+
* <p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p>
|
|
35
|
+
* <p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p>
|
|
36
|
+
* <p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets.</p>
|
|
34
37
|
*/
|
|
35
38
|
export declare class DataExchange extends DataExchangeClient {
|
|
36
39
|
/**
|
|
@@ -155,7 +155,10 @@ declare type DataExchangeClientResolvedConfigType = __SmithyResolvedConfiguratio
|
|
|
155
155
|
export interface DataExchangeClientResolvedConfig extends DataExchangeClientResolvedConfigType {
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
|
-
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p
|
|
158
|
+
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
|
|
159
|
+
* <p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p>
|
|
160
|
+
* <p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p>
|
|
161
|
+
* <p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets.</p>
|
|
159
162
|
*/
|
|
160
163
|
export declare class DataExchangeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DataExchangeClientResolvedConfig> {
|
|
161
164
|
/**
|
|
@@ -20,7 +20,7 @@ export declare enum ServerSideEncryptionTypes {
|
|
|
20
20
|
aws_kms = "aws:kms"
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
* <p>Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption
|
|
23
|
+
* <p>Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.</p>
|
|
24
24
|
*/
|
|
25
25
|
export interface ExportServerSideEncryption {
|
|
26
26
|
/**
|
|
@@ -129,11 +129,11 @@ export interface AssetDestinationEntry {
|
|
|
129
129
|
Key?: string;
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
|
-
* The Amazon Redshift datashare asset
|
|
132
|
+
* <p>The Amazon Redshift datashare asset.</p>
|
|
133
133
|
*/
|
|
134
134
|
export interface RedshiftDataShareAsset {
|
|
135
135
|
/**
|
|
136
|
-
* The Amazon Resource Name (ARN) of the datashare asset
|
|
136
|
+
* <p>The Amazon Resource Name (ARN) of the datashare asset.</p>
|
|
137
137
|
*/
|
|
138
138
|
Arn: string | undefined;
|
|
139
139
|
}
|
|
@@ -263,13 +263,13 @@ export declare class ConflictException extends __BaseException {
|
|
|
263
263
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
|
-
* An exception occurred with the service
|
|
266
|
+
* <p>An exception occurred with the service.</p>
|
|
267
267
|
*/
|
|
268
268
|
export declare class InternalServerException extends __BaseException {
|
|
269
269
|
readonly name: "InternalServerException";
|
|
270
270
|
readonly $fault: "server";
|
|
271
271
|
/**
|
|
272
|
-
* The message identifying the service exception that occurred
|
|
272
|
+
* <p>The message identifying the service exception that occurred.</p>
|
|
273
273
|
*/
|
|
274
274
|
Message: string | undefined;
|
|
275
275
|
/**
|
|
@@ -330,7 +330,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
330
330
|
*/
|
|
331
331
|
Message: string | undefined;
|
|
332
332
|
/**
|
|
333
|
-
* <p>The
|
|
333
|
+
* <p>The unique identifier for the resource that couldn't be found.</p>
|
|
334
334
|
*/
|
|
335
335
|
ExceptionCause?: ExceptionCause | string;
|
|
336
336
|
/**
|
|
@@ -347,9 +347,6 @@ export declare enum Code {
|
|
|
347
347
|
SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
|
|
348
348
|
VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION"
|
|
349
349
|
}
|
|
350
|
-
/**
|
|
351
|
-
* <p>The request body for CreateDataSet.</p>
|
|
352
|
-
*/
|
|
353
350
|
export interface CreateDataSetRequest {
|
|
354
351
|
/**
|
|
355
352
|
* <p>The type of asset that is added to a data set.</p>
|
|
@@ -458,11 +455,11 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
458
455
|
readonly name: "ServiceLimitExceededException";
|
|
459
456
|
readonly $fault: "client";
|
|
460
457
|
/**
|
|
461
|
-
* <p>The name of the
|
|
458
|
+
* <p>The name of the limit that was reached.</p>
|
|
462
459
|
*/
|
|
463
460
|
LimitName?: LimitName | string;
|
|
464
461
|
/**
|
|
465
|
-
* <p>The
|
|
462
|
+
* <p>The value of the exceeded limit.</p>
|
|
466
463
|
*/
|
|
467
464
|
LimitValue?: number;
|
|
468
465
|
/**
|
|
@@ -492,9 +489,6 @@ export interface Event {
|
|
|
492
489
|
*/
|
|
493
490
|
RevisionPublished?: RevisionPublished;
|
|
494
491
|
}
|
|
495
|
-
/**
|
|
496
|
-
* <p>The request body for CreateEventAction.</p>
|
|
497
|
-
*/
|
|
498
492
|
export interface CreateEventActionRequest {
|
|
499
493
|
/**
|
|
500
494
|
* <p>What occurs after a certain event.</p>
|
|
@@ -670,24 +664,24 @@ export interface ImportAssetFromSignedUrlRequestDetails {
|
|
|
670
664
|
*/
|
|
671
665
|
export interface RedshiftDataShareAssetSourceEntry {
|
|
672
666
|
/**
|
|
673
|
-
* The Amazon Resource Name (ARN) of the datashare asset
|
|
667
|
+
* <p>The Amazon Resource Name (ARN) of the datashare asset.</p>
|
|
674
668
|
*/
|
|
675
669
|
DataShareArn: string | undefined;
|
|
676
670
|
}
|
|
677
671
|
/**
|
|
678
|
-
* Details from an import from Amazon Redshift datashare request
|
|
672
|
+
* <p>Details from an import from Amazon Redshift datashare request.</p>
|
|
679
673
|
*/
|
|
680
674
|
export interface ImportAssetsFromRedshiftDataSharesRequestDetails {
|
|
681
675
|
/**
|
|
682
|
-
* A list of Amazon Redshift datashare assets
|
|
676
|
+
* <p>A list of Amazon Redshift datashare assets.</p>
|
|
683
677
|
*/
|
|
684
678
|
AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
|
|
685
679
|
/**
|
|
686
|
-
* The unique identifier for the data set associated with this import job
|
|
680
|
+
* <p>The unique identifier for the data set associated with this import job.</p>
|
|
687
681
|
*/
|
|
688
682
|
DataSetId: string | undefined;
|
|
689
683
|
/**
|
|
690
|
-
* The unique identifier for the revision associated with this import job
|
|
684
|
+
* <p>The unique identifier for the revision associated with this import job.</p>
|
|
691
685
|
*/
|
|
692
686
|
RevisionId: string | undefined;
|
|
693
687
|
}
|
|
@@ -725,11 +719,11 @@ export interface RequestDetails {
|
|
|
725
719
|
*/
|
|
726
720
|
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
|
|
727
721
|
/**
|
|
728
|
-
* <p>Details about the import from
|
|
722
|
+
* <p>Details about the import from Amazon S3 request.</p>
|
|
729
723
|
*/
|
|
730
724
|
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
|
|
731
725
|
/**
|
|
732
|
-
* <p>
|
|
726
|
+
* <p>Information about the import asset from API Gateway API request.</p>
|
|
733
727
|
*/
|
|
734
728
|
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
735
729
|
/**
|
|
@@ -737,7 +731,7 @@ export interface RequestDetails {
|
|
|
737
731
|
*/
|
|
738
732
|
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
|
|
739
733
|
/**
|
|
740
|
-
* <p>
|
|
734
|
+
* <p>Details about the import from signed URL request.</p>
|
|
741
735
|
*/
|
|
742
736
|
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
|
|
743
737
|
}
|
|
@@ -750,9 +744,6 @@ export declare enum Type {
|
|
|
750
744
|
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
751
745
|
IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL"
|
|
752
746
|
}
|
|
753
|
-
/**
|
|
754
|
-
* <p>The request body for CreateJob.</p>
|
|
755
|
-
*/
|
|
756
747
|
export interface CreateJobRequest {
|
|
757
748
|
/**
|
|
758
749
|
* <p>The details for the CreateJob request.</p>
|
|
@@ -909,19 +900,19 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
909
900
|
SignedUrlExpiresAt?: Date;
|
|
910
901
|
}
|
|
911
902
|
/**
|
|
912
|
-
* Details from an import from Amazon Redshift datashare response
|
|
903
|
+
* <p>Details from an import from Amazon Redshift datashare response.</p>
|
|
913
904
|
*/
|
|
914
905
|
export interface ImportAssetsFromRedshiftDataSharesResponseDetails {
|
|
915
906
|
/**
|
|
916
|
-
* A list of Amazon Redshift datashare asset sources
|
|
907
|
+
* <p>A list of Amazon Redshift datashare asset sources.</p>
|
|
917
908
|
*/
|
|
918
909
|
AssetSources: RedshiftDataShareAssetSourceEntry[] | undefined;
|
|
919
910
|
/**
|
|
920
|
-
* The unique identifier for the data set associated with this import job
|
|
911
|
+
* <p>The unique identifier for the data set associated with this import job.</p>
|
|
921
912
|
*/
|
|
922
913
|
DataSetId: string | undefined;
|
|
923
914
|
/**
|
|
924
|
-
* The unique identifier for the revision associated with this import job
|
|
915
|
+
* <p>The unique identifier for the revision associated with this import job.</p>
|
|
925
916
|
*/
|
|
926
917
|
RevisionId: string | undefined;
|
|
927
918
|
}
|
|
@@ -1008,11 +999,11 @@ export declare enum JobErrorResourceTypes {
|
|
|
1008
999
|
REVISION = "REVISION"
|
|
1009
1000
|
}
|
|
1010
1001
|
/**
|
|
1011
|
-
* An error that occurred with the job request
|
|
1002
|
+
* <p>An error that occurred with the job request.</p>
|
|
1012
1003
|
*/
|
|
1013
1004
|
export interface JobError {
|
|
1014
1005
|
/**
|
|
1015
|
-
* The code for the job error
|
|
1006
|
+
* <p>The code for the job error.</p>
|
|
1016
1007
|
*/
|
|
1017
1008
|
Code: Code | string | undefined;
|
|
1018
1009
|
/**
|
|
@@ -1024,19 +1015,19 @@ export interface JobError {
|
|
|
1024
1015
|
*/
|
|
1025
1016
|
LimitName?: JobErrorLimitName | string;
|
|
1026
1017
|
/**
|
|
1027
|
-
* The value of the exceeded limit
|
|
1018
|
+
* <p>The value of the exceeded limit.</p>
|
|
1028
1019
|
*/
|
|
1029
1020
|
LimitValue?: number;
|
|
1030
1021
|
/**
|
|
1031
|
-
* The message related to the job error
|
|
1022
|
+
* <p>The message related to the job error.</p>
|
|
1032
1023
|
*/
|
|
1033
1024
|
Message: string | undefined;
|
|
1034
1025
|
/**
|
|
1035
|
-
* The unique identifier for the resource related to the error
|
|
1026
|
+
* <p>The unique identifier for the resource related to the error.</p>
|
|
1036
1027
|
*/
|
|
1037
1028
|
ResourceId?: string;
|
|
1038
1029
|
/**
|
|
1039
|
-
* The type of resource related to the error
|
|
1030
|
+
* <p>The type of resource related to the error.</p>
|
|
1040
1031
|
*/
|
|
1041
1032
|
ResourceType?: JobErrorResourceTypes | string;
|
|
1042
1033
|
}
|
|
@@ -1082,9 +1073,6 @@ export interface CreateJobResponse {
|
|
|
1082
1073
|
*/
|
|
1083
1074
|
UpdatedAt?: Date;
|
|
1084
1075
|
}
|
|
1085
|
-
/**
|
|
1086
|
-
* <p>The request body for CreateRevision.</p>
|
|
1087
|
-
*/
|
|
1088
1076
|
export interface CreateRevisionRequest {
|
|
1089
1077
|
/**
|
|
1090
1078
|
* <p>An optional comment about the revision.</p>
|
|
@@ -1117,7 +1105,7 @@ export interface CreateRevisionResponse {
|
|
|
1117
1105
|
*/
|
|
1118
1106
|
DataSetId?: string;
|
|
1119
1107
|
/**
|
|
1120
|
-
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products
|
|
1108
|
+
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products. Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
1121
1109
|
*/
|
|
1122
1110
|
Finalized?: boolean;
|
|
1123
1111
|
/**
|
|
@@ -1393,7 +1381,7 @@ export interface GetRevisionResponse {
|
|
|
1393
1381
|
*/
|
|
1394
1382
|
DataSetId?: string;
|
|
1395
1383
|
/**
|
|
1396
|
-
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products
|
|
1384
|
+
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products. Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
1397
1385
|
*/
|
|
1398
1386
|
Finalized?: boolean;
|
|
1399
1387
|
/**
|
|
@@ -1460,7 +1448,7 @@ export interface RevisionEntry {
|
|
|
1460
1448
|
*/
|
|
1461
1449
|
DataSetId: string | undefined;
|
|
1462
1450
|
/**
|
|
1463
|
-
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products
|
|
1451
|
+
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that your changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products. Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
1464
1452
|
*/
|
|
1465
1453
|
Finalized?: boolean;
|
|
1466
1454
|
/**
|
|
@@ -1639,7 +1627,7 @@ export interface ListJobsRequest {
|
|
|
1639
1627
|
RevisionId?: string;
|
|
1640
1628
|
}
|
|
1641
1629
|
/**
|
|
1642
|
-
* AWS Data Exchange Jobs are asynchronous import or export operations used to create or copy assets. A data set owner can both import and export as they see fit. Someone with an entitlement to a data set can only export. Jobs are deleted 90 days after they are created
|
|
1630
|
+
* <p>AWS Data Exchange Jobs are asynchronous import or export operations used to create or copy assets. A data set owner can both import and export as they see fit. Someone with an entitlement to a data set can only export. Jobs are deleted 90 days after they are created.</p>
|
|
1643
1631
|
*/
|
|
1644
1632
|
export interface JobEntry {
|
|
1645
1633
|
/**
|
|
@@ -1721,13 +1709,10 @@ export interface ListTagsForResourceRequest {
|
|
|
1721
1709
|
}
|
|
1722
1710
|
export interface ListTagsForResourceResponse {
|
|
1723
1711
|
/**
|
|
1724
|
-
* A label that consists of a customer-defined key and an optional value
|
|
1712
|
+
* <p>A label that consists of a customer-defined key and an optional value.</p>
|
|
1725
1713
|
*/
|
|
1726
1714
|
Tags?: Record<string, string>;
|
|
1727
1715
|
}
|
|
1728
|
-
/**
|
|
1729
|
-
* <p>The request body for RevokeRevision.</p>
|
|
1730
|
-
*/
|
|
1731
1716
|
export interface RevokeRevisionRequest {
|
|
1732
1717
|
/**
|
|
1733
1718
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1760,7 +1745,7 @@ export interface RevokeRevisionResponse {
|
|
|
1760
1745
|
*/
|
|
1761
1746
|
DataSetId?: string;
|
|
1762
1747
|
/**
|
|
1763
|
-
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products
|
|
1748
|
+
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products. Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
1764
1749
|
*/
|
|
1765
1750
|
Finalized?: boolean;
|
|
1766
1751
|
/**
|
|
@@ -1788,9 +1773,6 @@ export interface RevokeRevisionResponse {
|
|
|
1788
1773
|
*/
|
|
1789
1774
|
RevokedAt?: Date;
|
|
1790
1775
|
}
|
|
1791
|
-
/**
|
|
1792
|
-
* <p>The request body for SendApiAsset.</p>
|
|
1793
|
-
*/
|
|
1794
1776
|
export interface SendApiAssetRequest {
|
|
1795
1777
|
/**
|
|
1796
1778
|
* <p>The request body.</p>
|
|
@@ -1817,7 +1799,7 @@ export interface SendApiAssetRequest {
|
|
|
1817
1799
|
*/
|
|
1818
1800
|
Method?: string;
|
|
1819
1801
|
/**
|
|
1820
|
-
* <p>URI path value for the API request. Alternatively, you can set the URI path directly by invoking /v1/{pathValue}
|
|
1802
|
+
* <p>URI path value for the API request. Alternatively, you can set the URI path directly by invoking /v1/{pathValue}.</p>
|
|
1821
1803
|
*/
|
|
1822
1804
|
Path?: string;
|
|
1823
1805
|
/**
|
|
@@ -1843,16 +1825,13 @@ export interface StartJobRequest {
|
|
|
1843
1825
|
}
|
|
1844
1826
|
export interface StartJobResponse {
|
|
1845
1827
|
}
|
|
1846
|
-
/**
|
|
1847
|
-
* <p>The request body for TagResource.</p>
|
|
1848
|
-
*/
|
|
1849
1828
|
export interface TagResourceRequest {
|
|
1850
1829
|
/**
|
|
1851
1830
|
* <p>An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.</p>
|
|
1852
1831
|
*/
|
|
1853
1832
|
ResourceArn: string | undefined;
|
|
1854
1833
|
/**
|
|
1855
|
-
* A label that consists of a customer-defined key and an optional value
|
|
1834
|
+
* <p>A label that consists of a customer-defined key and an optional value.</p>
|
|
1856
1835
|
*/
|
|
1857
1836
|
Tags: Record<string, string> | undefined;
|
|
1858
1837
|
}
|
|
@@ -1862,13 +1841,10 @@ export interface UntagResourceRequest {
|
|
|
1862
1841
|
*/
|
|
1863
1842
|
ResourceArn: string | undefined;
|
|
1864
1843
|
/**
|
|
1865
|
-
* The key tags
|
|
1844
|
+
* <p>The key tags.</p>
|
|
1866
1845
|
*/
|
|
1867
1846
|
TagKeys: string[] | undefined;
|
|
1868
1847
|
}
|
|
1869
|
-
/**
|
|
1870
|
-
* <p>The request body for UpdateAsset.</p>
|
|
1871
|
-
*/
|
|
1872
1848
|
export interface UpdateAssetRequest {
|
|
1873
1849
|
/**
|
|
1874
1850
|
* <p>The unique identifier for an asset.</p>
|
|
@@ -1929,9 +1905,6 @@ export interface UpdateAssetResponse {
|
|
|
1929
1905
|
*/
|
|
1930
1906
|
UpdatedAt?: Date;
|
|
1931
1907
|
}
|
|
1932
|
-
/**
|
|
1933
|
-
* <p>The request body for UpdateDataSet.</p>
|
|
1934
|
-
*/
|
|
1935
1908
|
export interface UpdateDataSetRequest {
|
|
1936
1909
|
/**
|
|
1937
1910
|
* <p>The unique identifier for a data set.</p>
|
|
@@ -1988,9 +1961,6 @@ export interface UpdateDataSetResponse {
|
|
|
1988
1961
|
*/
|
|
1989
1962
|
UpdatedAt?: Date;
|
|
1990
1963
|
}
|
|
1991
|
-
/**
|
|
1992
|
-
* <p>The request body for UpdateEventAction.</p>
|
|
1993
|
-
*/
|
|
1994
1964
|
export interface UpdateEventActionRequest {
|
|
1995
1965
|
/**
|
|
1996
1966
|
* <p>What occurs after a certain event.</p>
|
|
@@ -2027,9 +1997,6 @@ export interface UpdateEventActionResponse {
|
|
|
2027
1997
|
*/
|
|
2028
1998
|
UpdatedAt?: Date;
|
|
2029
1999
|
}
|
|
2030
|
-
/**
|
|
2031
|
-
* <p>The request body for UpdateRevision.</p>
|
|
2032
|
-
*/
|
|
2033
2000
|
export interface UpdateRevisionRequest {
|
|
2034
2001
|
/**
|
|
2035
2002
|
* <p>An optional comment about the revision.</p>
|
|
@@ -2066,7 +2033,7 @@ export interface UpdateRevisionResponse {
|
|
|
2066
2033
|
*/
|
|
2067
2034
|
DataSetId?: string;
|
|
2068
2035
|
/**
|
|
2069
|
-
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products
|
|
2036
|
+
* <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products. Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
2070
2037
|
*/
|
|
2071
2038
|
Finalized?: boolean;
|
|
2072
2039
|
/**
|
|
@@ -205,7 +205,6 @@ export declare enum Code {
|
|
|
205
205
|
SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
|
|
206
206
|
VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION"
|
|
207
207
|
}
|
|
208
|
-
|
|
209
208
|
export interface CreateDataSetRequest {
|
|
210
209
|
|
|
211
210
|
AssetType: AssetType | string | undefined;
|
|
@@ -296,7 +295,6 @@ export interface Event {
|
|
|
296
295
|
|
|
297
296
|
RevisionPublished?: RevisionPublished;
|
|
298
297
|
}
|
|
299
|
-
|
|
300
298
|
export interface CreateEventActionRequest {
|
|
301
299
|
|
|
302
300
|
Action: Action | undefined;
|
|
@@ -436,7 +434,6 @@ export declare enum Type {
|
|
|
436
434
|
IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
|
|
437
435
|
IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL"
|
|
438
436
|
}
|
|
439
|
-
|
|
440
437
|
export interface CreateJobRequest {
|
|
441
438
|
|
|
442
439
|
Details: RequestDetails | undefined;
|
|
@@ -618,7 +615,6 @@ export interface CreateJobResponse {
|
|
|
618
615
|
|
|
619
616
|
UpdatedAt?: Date;
|
|
620
617
|
}
|
|
621
|
-
|
|
622
618
|
export interface CreateRevisionRequest {
|
|
623
619
|
|
|
624
620
|
Comment?: string;
|
|
@@ -969,7 +965,6 @@ export interface ListTagsForResourceResponse {
|
|
|
969
965
|
|
|
970
966
|
Tags?: Record<string, string>;
|
|
971
967
|
}
|
|
972
|
-
|
|
973
968
|
export interface RevokeRevisionRequest {
|
|
974
969
|
|
|
975
970
|
DataSetId: string | undefined;
|
|
@@ -1002,7 +997,6 @@ export interface RevokeRevisionResponse {
|
|
|
1002
997
|
|
|
1003
998
|
RevokedAt?: Date;
|
|
1004
999
|
}
|
|
1005
|
-
|
|
1006
1000
|
export interface SendApiAssetRequest {
|
|
1007
1001
|
|
|
1008
1002
|
Body?: string;
|
|
@@ -1033,7 +1027,6 @@ export interface StartJobRequest {
|
|
|
1033
1027
|
}
|
|
1034
1028
|
export interface StartJobResponse {
|
|
1035
1029
|
}
|
|
1036
|
-
|
|
1037
1030
|
export interface TagResourceRequest {
|
|
1038
1031
|
|
|
1039
1032
|
ResourceArn: string | undefined;
|
|
@@ -1046,7 +1039,6 @@ export interface UntagResourceRequest {
|
|
|
1046
1039
|
|
|
1047
1040
|
TagKeys: string[] | undefined;
|
|
1048
1041
|
}
|
|
1049
|
-
|
|
1050
1042
|
export interface UpdateAssetRequest {
|
|
1051
1043
|
|
|
1052
1044
|
AssetId: string | undefined;
|
|
@@ -1079,7 +1071,6 @@ export interface UpdateAssetResponse {
|
|
|
1079
1071
|
|
|
1080
1072
|
UpdatedAt?: Date;
|
|
1081
1073
|
}
|
|
1082
|
-
|
|
1083
1074
|
export interface UpdateDataSetRequest {
|
|
1084
1075
|
|
|
1085
1076
|
DataSetId: string | undefined;
|
|
@@ -1110,7 +1101,6 @@ export interface UpdateDataSetResponse {
|
|
|
1110
1101
|
|
|
1111
1102
|
UpdatedAt?: Date;
|
|
1112
1103
|
}
|
|
1113
|
-
|
|
1114
1104
|
export interface UpdateEventActionRequest {
|
|
1115
1105
|
|
|
1116
1106
|
Action?: Action;
|
|
@@ -1131,7 +1121,6 @@ export interface UpdateEventActionResponse {
|
|
|
1131
1121
|
|
|
1132
1122
|
UpdatedAt?: Date;
|
|
1133
1123
|
}
|
|
1134
|
-
|
|
1135
1124
|
export interface UpdateRevisionRequest {
|
|
1136
1125
|
|
|
1137
1126
|
Comment?: string;
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dataexchange",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.168.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
@@ -18,41 +19,41 @@
|
|
|
18
19
|
"dependencies": {
|
|
19
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-node": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.168.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.168.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.168.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.168.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.168.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.168.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.168.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.168.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.168.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.168.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.168.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.168.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.168.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.168.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.168.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.168.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.168.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.168.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.168.0",
|
|
41
|
+
"@aws-sdk/types": "3.168.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.168.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.168.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.168.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.168.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.168.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.168.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.168.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.168.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.168.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.168.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.168.0",
|
|
52
53
|
"tslib": "^2.3.1"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.168.0",
|
|
56
57
|
"@tsconfig/recommended": "1.0.1",
|
|
57
58
|
"@types/node": "^12.7.5",
|
|
58
59
|
"concurrently": "7.0.0",
|