@aws-sdk/client-supplychain 3.774.0 → 3.777.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/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/SupplyChainClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/CreateBillOfMaterialsImportJobCommand.d.ts +7 -7
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +47 -48
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +160 -161
- package/dist-types/commands/CreateInstanceCommand.d.ts +29 -30
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +7 -7
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +16 -17
- package/dist-types/commands/DeleteInstanceCommand.d.ts +14 -14
- package/dist-types/commands/GetBillOfMaterialsImportJobCommand.d.ts +19 -20
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +24 -24
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +136 -137
- package/dist-types/commands/GetInstanceCommand.d.ts +27 -28
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +44 -44
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +157 -158
- package/dist-types/commands/ListInstancesCommand.d.ts +60 -63
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +107 -121
- package/dist-types/commands/TagResourceCommand.d.ts +9 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +80 -81
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +138 -139
- package/dist-types/commands/UpdateInstanceCommand.d.ts +16 -16
- package/package.json +33 -33
|
@@ -97,133 +97,130 @@ declare const ListInstancesCommand_base: {
|
|
|
97
97
|
* @throws {@link SupplyChainServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example Successful ListInstance request with no input data
|
|
102
102
|
* ```javascript
|
|
103
103
|
* //
|
|
104
|
-
* const input = {};
|
|
104
|
+
* const input = { /* empty *\/ };
|
|
105
105
|
* const command = new ListInstancesCommand(input);
|
|
106
106
|
* const response = await client.send(command);
|
|
107
|
-
* /* response
|
|
107
|
+
* /* response is
|
|
108
108
|
* {
|
|
109
|
-
*
|
|
109
|
+
* instances: [
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
111
|
+
* awsAccountId: "123456789012",
|
|
112
|
+
* createdTime: 172615383136,
|
|
113
|
+
* instanceDescription: "example instance description",
|
|
114
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
115
|
+
* instanceName: "example instance name",
|
|
116
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
117
|
+
* lastModifiedTime: 172615383136,
|
|
118
|
+
* state: "Active",
|
|
119
|
+
* versionNumber: 2.0
|
|
120
120
|
* },
|
|
121
121
|
* {
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
122
|
+
* awsAccountId: "123456789012",
|
|
123
|
+
* createdTime: 17261674383136,
|
|
124
|
+
* instanceDescription: "example instance description",
|
|
125
|
+
* instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14",
|
|
126
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
127
|
+
* lastModifiedTime: 17261674383136,
|
|
128
|
+
* state: "Initializing",
|
|
129
|
+
* versionNumber: 2.0
|
|
130
130
|
* }
|
|
131
131
|
* ]
|
|
132
132
|
* }
|
|
133
133
|
* *\/
|
|
134
|
-
* // example id: example-1
|
|
135
134
|
* ```
|
|
136
135
|
*
|
|
137
136
|
* @example Successful ListInstance request with filters
|
|
138
137
|
* ```javascript
|
|
139
138
|
* //
|
|
140
139
|
* const input = {
|
|
141
|
-
*
|
|
140
|
+
* instanceNameFilter: [
|
|
142
141
|
* "example instance name"
|
|
143
142
|
* ],
|
|
144
|
-
*
|
|
143
|
+
* instanceStateFilter: [
|
|
145
144
|
* "Active"
|
|
146
145
|
* ]
|
|
147
146
|
* };
|
|
148
147
|
* const command = new ListInstancesCommand(input);
|
|
149
148
|
* const response = await client.send(command);
|
|
150
|
-
* /* response
|
|
149
|
+
* /* response is
|
|
151
150
|
* {
|
|
152
|
-
*
|
|
151
|
+
* instances: [
|
|
153
152
|
* {
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
153
|
+
* awsAccountId: "123456789012",
|
|
154
|
+
* createdTime: 172615383136,
|
|
155
|
+
* instanceDescription: "example instance description",
|
|
156
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
157
|
+
* instanceName: "example instance name",
|
|
158
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
159
|
+
* lastModifiedTime: 172615383136,
|
|
160
|
+
* state: "Active",
|
|
161
|
+
* versionNumber: 2.0
|
|
163
162
|
* }
|
|
164
163
|
* ]
|
|
165
164
|
* }
|
|
166
165
|
* *\/
|
|
167
|
-
* // example id: example-2
|
|
168
166
|
* ```
|
|
169
167
|
*
|
|
170
168
|
* @example Successful ListInstance request with maxResult override
|
|
171
169
|
* ```javascript
|
|
172
170
|
* //
|
|
173
171
|
* const input = {
|
|
174
|
-
*
|
|
172
|
+
* maxResults: 1
|
|
175
173
|
* };
|
|
176
174
|
* const command = new ListInstancesCommand(input);
|
|
177
175
|
* const response = await client.send(command);
|
|
178
|
-
* /* response
|
|
176
|
+
* /* response is
|
|
179
177
|
* {
|
|
180
|
-
*
|
|
178
|
+
* instances: [
|
|
181
179
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
*
|
|
186
|
-
*
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
*
|
|
180
|
+
* awsAccountId: "123456789012",
|
|
181
|
+
* createdTime: 172615383136,
|
|
182
|
+
* instanceDescription: "example instance description",
|
|
183
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
184
|
+
* instanceName: "example instance name",
|
|
185
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
186
|
+
* lastModifiedTime: 172615383136,
|
|
187
|
+
* state: "Active",
|
|
188
|
+
* versionNumber: 2.0
|
|
191
189
|
* }
|
|
192
190
|
* ],
|
|
193
|
-
*
|
|
191
|
+
* nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D"
|
|
194
192
|
* }
|
|
195
193
|
* *\/
|
|
196
|
-
* // example id: example-3
|
|
197
194
|
* ```
|
|
198
195
|
*
|
|
199
196
|
* @example Successful ListInstance request with nextToken
|
|
200
197
|
* ```javascript
|
|
201
198
|
* //
|
|
202
199
|
* const input = {
|
|
203
|
-
*
|
|
204
|
-
*
|
|
200
|
+
* maxResults: 1,
|
|
201
|
+
* nextToken: "AAQA-EFRSURBSGhtcng0c0dxbENwUHdnckVIbkFYNU1QVjRTZWN2ak5iMFVicC8zemlHOVF3SEpjSC9WTWJVVXBMV2Z1N3ZvZlQ0WEFBQUFmakI4QmdrcWhraUc5dzBCQndhZ2J6QnRBZ0VBTUdnR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTJibW9LemgrSWZTY0RaZEdBZ0VRZ0R2dDhsQnVGbGJ0dnFTZityWmNSWEVPbG93emJoSjhxOGNMbGQ1UGMvY0VRbWlTR3pQUFd4N2RraXY5Y0ovcS9vSmFYZVBGdWVHaU0zWmd0dz09n-rC1ejA5--7ltJxpDT2xP_i8xGqDPMOZfjpp8q6l5NuP9_bnBURvwwYhdqDriMK5_f96LuPEnPbuML-ItfgEiCcUy0p2tApvpZkZqOG5fbqP-4C5aDYPTffHLyq-MMqvfrGVJzL1nvkpZcnTkVR9VJsu5b8I0qqDW0H8EMKGgTo78U9lr4sj3Usi9VMwZxgKCBmr03HhFLYXOW--XMbIx0CTZF0fYIcRxmA_sVS6J7gpaB9yMcnzs5VUKokoA5JTcAPY5d1Y1VyE8KKxv51cfPgXw8OYCDbFQncw8mZPmE-VqxjFbksmk_FmghpPn9j2Ppoe-zr0LQ%3D"
|
|
205
202
|
* };
|
|
206
203
|
* const command = new ListInstancesCommand(input);
|
|
207
204
|
* const response = await client.send(command);
|
|
208
|
-
* /* response
|
|
205
|
+
* /* response is
|
|
209
206
|
* {
|
|
210
|
-
*
|
|
207
|
+
* instances: [
|
|
211
208
|
* {
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
*
|
|
209
|
+
* awsAccountId: "123456789012",
|
|
210
|
+
* createdTime: 17261674383136,
|
|
211
|
+
* instanceDescription: "example instance description",
|
|
212
|
+
* instanceId: "3ad8116a-644d-4172-8dcb-20e51d314c14",
|
|
213
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
214
|
+
* lastModifiedTime: 17261674383136,
|
|
215
|
+
* state: "Initializing",
|
|
216
|
+
* versionNumber: 2.0
|
|
220
217
|
* }
|
|
221
218
|
* ]
|
|
222
219
|
* }
|
|
223
220
|
* *\/
|
|
224
|
-
* // example id: example-4
|
|
225
221
|
* ```
|
|
226
222
|
*
|
|
223
|
+
* @public
|
|
227
224
|
*/
|
|
228
225
|
export declare class ListInstancesCommand extends ListInstancesCommand_base {
|
|
229
226
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -77,25 +77,25 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
77
77
|
* @throws {@link SupplyChainServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example Successful ListTagsForResource
|
|
82
82
|
* ```javascript
|
|
83
83
|
* //
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
85
|
+
* resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1"
|
|
86
86
|
* };
|
|
87
87
|
* const command = new ListTagsForResourceCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
89
|
-
* /* response
|
|
89
|
+
* /* response is
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
91
|
+
* tags: {
|
|
92
|
+
* tagKey1: "tagValue1"
|
|
93
93
|
* }
|
|
94
94
|
* }
|
|
95
95
|
* *\/
|
|
96
|
-
* // example id: example-1
|
|
97
96
|
* ```
|
|
98
97
|
*
|
|
98
|
+
* @public
|
|
99
99
|
*/
|
|
100
100
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
101
101
|
/** @internal type navigation helper, not in runtime. */
|