aws-sdk 2.569.0 → 2.570.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.
@@ -0,0 +1,305 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-09-17",
5
+ "endpointPrefix": "catalog.marketplace",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "AWS Marketplace Catalog",
9
+ "serviceFullName": "AWS Marketplace Catalog Service",
10
+ "serviceId": "Marketplace Catalog",
11
+ "signatureVersion": "v4",
12
+ "signingName": "aws-marketplace",
13
+ "uid": "marketplace-catalog-2018-09-17"
14
+ },
15
+ "operations": {
16
+ "CancelChangeSet": {
17
+ "http": {
18
+ "method": "PATCH",
19
+ "requestUri": "/CancelChangeSet"
20
+ },
21
+ "input": {
22
+ "type": "structure",
23
+ "required": [
24
+ "Catalog",
25
+ "ChangeSetId"
26
+ ],
27
+ "members": {
28
+ "Catalog": {
29
+ "location": "querystring",
30
+ "locationName": "catalog"
31
+ },
32
+ "ChangeSetId": {
33
+ "location": "querystring",
34
+ "locationName": "changeSetId"
35
+ }
36
+ }
37
+ },
38
+ "output": {
39
+ "type": "structure",
40
+ "members": {
41
+ "ChangeSetId": {},
42
+ "ChangeSetArn": {}
43
+ }
44
+ }
45
+ },
46
+ "DescribeChangeSet": {
47
+ "http": {
48
+ "method": "GET",
49
+ "requestUri": "/DescribeChangeSet"
50
+ },
51
+ "input": {
52
+ "type": "structure",
53
+ "required": [
54
+ "Catalog",
55
+ "ChangeSetId"
56
+ ],
57
+ "members": {
58
+ "Catalog": {
59
+ "location": "querystring",
60
+ "locationName": "catalog"
61
+ },
62
+ "ChangeSetId": {
63
+ "location": "querystring",
64
+ "locationName": "changeSetId"
65
+ }
66
+ }
67
+ },
68
+ "output": {
69
+ "type": "structure",
70
+ "members": {
71
+ "ChangeSetId": {},
72
+ "ChangeSetArn": {},
73
+ "ChangeSetName": {},
74
+ "StartTime": {},
75
+ "EndTime": {},
76
+ "Status": {},
77
+ "FailureDescription": {},
78
+ "ChangeSet": {
79
+ "type": "list",
80
+ "member": {
81
+ "type": "structure",
82
+ "members": {
83
+ "ChangeType": {},
84
+ "Entity": {
85
+ "shape": "Sf"
86
+ },
87
+ "ErrorDetailList": {
88
+ "type": "list",
89
+ "member": {
90
+ "type": "structure",
91
+ "members": {
92
+ "ErrorCode": {},
93
+ "ErrorMessage": {}
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
102
+ },
103
+ "DescribeEntity": {
104
+ "http": {
105
+ "method": "GET",
106
+ "requestUri": "/DescribeEntity"
107
+ },
108
+ "input": {
109
+ "type": "structure",
110
+ "required": [
111
+ "Catalog",
112
+ "EntityId"
113
+ ],
114
+ "members": {
115
+ "Catalog": {
116
+ "location": "querystring",
117
+ "locationName": "catalog"
118
+ },
119
+ "EntityId": {
120
+ "location": "querystring",
121
+ "locationName": "entityId"
122
+ }
123
+ }
124
+ },
125
+ "output": {
126
+ "type": "structure",
127
+ "members": {
128
+ "EntityType": {},
129
+ "EntityIdentifier": {},
130
+ "EntityArn": {},
131
+ "LastModifiedDate": {},
132
+ "Details": {}
133
+ }
134
+ }
135
+ },
136
+ "ListChangeSets": {
137
+ "http": {
138
+ "requestUri": "/ListChangeSets"
139
+ },
140
+ "input": {
141
+ "type": "structure",
142
+ "required": [
143
+ "Catalog"
144
+ ],
145
+ "members": {
146
+ "Catalog": {},
147
+ "FilterList": {
148
+ "shape": "So"
149
+ },
150
+ "Sort": {
151
+ "shape": "Ss"
152
+ },
153
+ "MaxResults": {
154
+ "type": "integer"
155
+ },
156
+ "NextToken": {}
157
+ }
158
+ },
159
+ "output": {
160
+ "type": "structure",
161
+ "members": {
162
+ "ChangeSetSummaryList": {
163
+ "type": "list",
164
+ "member": {
165
+ "type": "structure",
166
+ "members": {
167
+ "ChangeSetId": {},
168
+ "ChangeSetArn": {},
169
+ "ChangeSetName": {},
170
+ "StartTime": {},
171
+ "EndTime": {},
172
+ "Status": {},
173
+ "EntityIdList": {
174
+ "type": "list",
175
+ "member": {}
176
+ }
177
+ }
178
+ }
179
+ },
180
+ "NextToken": {}
181
+ }
182
+ }
183
+ },
184
+ "ListEntities": {
185
+ "http": {
186
+ "requestUri": "/ListEntities"
187
+ },
188
+ "input": {
189
+ "type": "structure",
190
+ "required": [
191
+ "Catalog",
192
+ "EntityType"
193
+ ],
194
+ "members": {
195
+ "Catalog": {},
196
+ "EntityType": {},
197
+ "FilterList": {
198
+ "shape": "So"
199
+ },
200
+ "Sort": {
201
+ "shape": "Ss"
202
+ },
203
+ "NextToken": {},
204
+ "MaxResults": {
205
+ "type": "integer"
206
+ }
207
+ }
208
+ },
209
+ "output": {
210
+ "type": "structure",
211
+ "members": {
212
+ "EntitySummaryList": {
213
+ "type": "list",
214
+ "member": {
215
+ "type": "structure",
216
+ "members": {
217
+ "Name": {},
218
+ "EntityType": {},
219
+ "EntityId": {},
220
+ "EntityArn": {},
221
+ "LastModifiedDate": {},
222
+ "Visibility": {}
223
+ }
224
+ }
225
+ },
226
+ "NextToken": {}
227
+ }
228
+ }
229
+ },
230
+ "StartChangeSet": {
231
+ "http": {
232
+ "requestUri": "/StartChangeSet"
233
+ },
234
+ "input": {
235
+ "type": "structure",
236
+ "required": [
237
+ "Catalog",
238
+ "ChangeSet"
239
+ ],
240
+ "members": {
241
+ "Catalog": {},
242
+ "ChangeSet": {
243
+ "type": "list",
244
+ "member": {
245
+ "type": "structure",
246
+ "required": [
247
+ "ChangeType",
248
+ "Entity",
249
+ "Details"
250
+ ],
251
+ "members": {
252
+ "ChangeType": {},
253
+ "Entity": {
254
+ "shape": "Sf"
255
+ },
256
+ "Details": {}
257
+ }
258
+ }
259
+ },
260
+ "ChangeSetName": {},
261
+ "ClientRequestToken": {}
262
+ }
263
+ },
264
+ "output": {
265
+ "type": "structure",
266
+ "members": {
267
+ "ChangeSetId": {},
268
+ "ChangeSetArn": {}
269
+ }
270
+ }
271
+ }
272
+ },
273
+ "shapes": {
274
+ "Sf": {
275
+ "type": "structure",
276
+ "required": [
277
+ "Type"
278
+ ],
279
+ "members": {
280
+ "Type": {},
281
+ "Identifier": {}
282
+ }
283
+ },
284
+ "So": {
285
+ "type": "list",
286
+ "member": {
287
+ "type": "structure",
288
+ "members": {
289
+ "Name": {},
290
+ "ValueList": {
291
+ "type": "list",
292
+ "member": {}
293
+ }
294
+ }
295
+ }
296
+ },
297
+ "Ss": {
298
+ "type": "structure",
299
+ "members": {
300
+ "SortBy": {},
301
+ "SortOrder": {}
302
+ }
303
+ }
304
+ }
305
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination": {
3
+ "ListChangeSets": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListEntities": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ }
13
+ }
14
+ }
@@ -783,5 +783,9 @@
783
783
  "ssooidc": {
784
784
  "prefix": "sso-oidc",
785
785
  "name": "SSOOIDC"
786
+ },
787
+ "marketplacecatalog": {
788
+ "prefix": "marketplace-catalog",
789
+ "name": "MarketplaceCatalog"
786
790
  }
787
791
  }
package/clients/all.d.ts CHANGED
@@ -194,3 +194,4 @@ export import CodeStarNotifications = require('./codestarnotifications');
194
194
  export import SavingsPlans = require('./savingsplans');
195
195
  export import SSO = require('./sso');
196
196
  export import SSOOIDC = require('./ssooidc');
197
+ export import MarketplaceCatalog = require('./marketplacecatalog');
package/clients/all.js CHANGED
@@ -195,5 +195,6 @@ module.exports = {
195
195
  CodeStarNotifications: require('./codestarnotifications'),
196
196
  SavingsPlans: require('./savingsplans'),
197
197
  SSO: require('./sso'),
198
- SSOOIDC: require('./ssooidc')
198
+ SSOOIDC: require('./ssooidc'),
199
+ MarketplaceCatalog: require('./marketplacecatalog')
199
200
  };
@@ -440,6 +440,10 @@ declare namespace CodePipeline {
440
440
  * The action declaration's AWS Region, such as us-east-1.
441
441
  */
442
442
  region?: AWSRegionName;
443
+ /**
444
+ * The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
445
+ */
446
+ namespace?: ActionNamespace;
443
447
  }
444
448
  export interface ActionExecution {
445
449
  /**
@@ -535,6 +539,10 @@ declare namespace CodePipeline {
535
539
  * Configuration data for an action execution.
536
540
  */
537
541
  configuration?: ActionConfigurationMap;
542
+ /**
543
+ * Configuration data for an action execution with all variable references replaced with their real values for the execution.
544
+ */
545
+ resolvedConfiguration?: ResolvedActionConfigurationMap;
538
546
  /**
539
547
  * The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.
540
548
  */
@@ -547,6 +555,10 @@ declare namespace CodePipeline {
547
555
  * Details of input artifacts of the action that correspond to the action execution.
548
556
  */
549
557
  inputArtifacts?: ArtifactDetailList;
558
+ /**
559
+ * The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
560
+ */
561
+ namespace?: ActionNamespace;
550
562
  }
551
563
  export interface ActionExecutionOutput {
552
564
  /**
@@ -557,6 +569,10 @@ declare namespace CodePipeline {
557
569
  * Execution result information listed in the output details for an action execution.
558
570
  */
559
571
  executionResult?: ActionExecutionResult;
572
+ /**
573
+ * The outputVariables field shows the key-value pairs that were output as part of that execution.
574
+ */
575
+ outputVariables?: OutputVariablesMap;
560
576
  }
561
577
  export interface ActionExecutionResult {
562
578
  /**
@@ -575,6 +591,7 @@ declare namespace CodePipeline {
575
591
  export type ActionExecutionStatus = "InProgress"|"Succeeded"|"Failed"|string;
576
592
  export type ActionExecutionToken = string;
577
593
  export type ActionName = string;
594
+ export type ActionNamespace = string;
578
595
  export type ActionOwner = "AWS"|"ThirdParty"|"Custom"|string;
579
596
  export type ActionProvider = string;
580
597
  export interface ActionRevision {
@@ -1364,6 +1381,9 @@ declare namespace CodePipeline {
1364
1381
  name: ArtifactName;
1365
1382
  }
1366
1383
  export type OutputArtifactList = OutputArtifact[];
1384
+ export type OutputVariablesKey = string;
1385
+ export type OutputVariablesMap = {[key: string]: OutputVariablesValue};
1386
+ export type OutputVariablesValue = string;
1367
1387
  export type Percentage = number;
1368
1388
  export type PipelineArn = string;
1369
1389
  export interface PipelineContext {
@@ -1620,6 +1640,10 @@ declare namespace CodePipeline {
1620
1640
  * The execution details of the successful job, such as the actions taken by the job worker.
1621
1641
  */
1622
1642
  executionDetails?: ExecutionDetails;
1643
+ /**
1644
+ * Key-value pairs produced as output by a job worker that can be made available to a downstream action configuration. outputVariables can be included only when there is no continuation token on the request.
1645
+ */
1646
+ outputVariables?: OutputVariablesMap;
1623
1647
  }
1624
1648
  export interface PutThirdPartyJobFailureResultInput {
1625
1649
  /**
@@ -1682,6 +1706,7 @@ declare namespace CodePipeline {
1682
1706
  }
1683
1707
  export interface RegisterWebhookWithThirdPartyOutput {
1684
1708
  }
1709
+ export type ResolvedActionConfigurationMap = {[key: string]: String};
1685
1710
  export type ResourceArn = string;
1686
1711
  export interface RetryStageExecutionInput {
1687
1712
  /**
@@ -1827,6 +1852,7 @@ declare namespace CodePipeline {
1827
1852
  */
1828
1853
  pipelineExecutionId?: PipelineExecutionId;
1829
1854
  }
1855
+ export type String = string;
1830
1856
  export interface Tag {
1831
1857
  /**
1832
1858
  * The tag's key.