aws-sdk 2.1638.0 → 2.1639.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,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,456 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-05-10",
5
+ "endpointPrefix": "pca-connector-scep",
6
+ "protocol": "rest-json",
7
+ "protocols": [
8
+ "rest-json"
9
+ ],
10
+ "serviceFullName": "Private CA Connector for SCEP",
11
+ "serviceId": "Pca Connector Scep",
12
+ "signatureVersion": "v4",
13
+ "signingName": "pca-connector-scep",
14
+ "uid": "pca-connector-scep-2018-05-10"
15
+ },
16
+ "operations": {
17
+ "CreateChallenge": {
18
+ "http": {
19
+ "requestUri": "/challenges",
20
+ "responseCode": 202
21
+ },
22
+ "input": {
23
+ "type": "structure",
24
+ "required": [
25
+ "ConnectorArn"
26
+ ],
27
+ "members": {
28
+ "ConnectorArn": {},
29
+ "ClientToken": {
30
+ "idempotencyToken": true
31
+ },
32
+ "Tags": {
33
+ "shape": "S4"
34
+ }
35
+ }
36
+ },
37
+ "output": {
38
+ "type": "structure",
39
+ "members": {
40
+ "Challenge": {
41
+ "type": "structure",
42
+ "members": {
43
+ "Arn": {},
44
+ "ConnectorArn": {},
45
+ "CreatedAt": {
46
+ "type": "timestamp"
47
+ },
48
+ "UpdatedAt": {
49
+ "type": "timestamp"
50
+ },
51
+ "Password": {
52
+ "shape": "Sa"
53
+ }
54
+ }
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "CreateConnector": {
60
+ "http": {
61
+ "requestUri": "/connectors",
62
+ "responseCode": 202
63
+ },
64
+ "input": {
65
+ "type": "structure",
66
+ "required": [
67
+ "CertificateAuthorityArn"
68
+ ],
69
+ "members": {
70
+ "CertificateAuthorityArn": {},
71
+ "MobileDeviceManagement": {
72
+ "shape": "Sd"
73
+ },
74
+ "ClientToken": {
75
+ "idempotencyToken": true
76
+ },
77
+ "Tags": {
78
+ "shape": "S4"
79
+ }
80
+ }
81
+ },
82
+ "output": {
83
+ "type": "structure",
84
+ "members": {
85
+ "ConnectorArn": {}
86
+ }
87
+ }
88
+ },
89
+ "DeleteChallenge": {
90
+ "http": {
91
+ "method": "DELETE",
92
+ "requestUri": "/challenges/{ChallengeArn}",
93
+ "responseCode": 202
94
+ },
95
+ "input": {
96
+ "type": "structure",
97
+ "required": [
98
+ "ChallengeArn"
99
+ ],
100
+ "members": {
101
+ "ChallengeArn": {
102
+ "location": "uri",
103
+ "locationName": "ChallengeArn"
104
+ }
105
+ }
106
+ },
107
+ "idempotent": true
108
+ },
109
+ "DeleteConnector": {
110
+ "http": {
111
+ "method": "DELETE",
112
+ "requestUri": "/connectors/{ConnectorArn}",
113
+ "responseCode": 202
114
+ },
115
+ "input": {
116
+ "type": "structure",
117
+ "required": [
118
+ "ConnectorArn"
119
+ ],
120
+ "members": {
121
+ "ConnectorArn": {
122
+ "location": "uri",
123
+ "locationName": "ConnectorArn"
124
+ }
125
+ }
126
+ },
127
+ "idempotent": true
128
+ },
129
+ "GetChallengeMetadata": {
130
+ "http": {
131
+ "method": "GET",
132
+ "requestUri": "/challengeMetadata/{ChallengeArn}",
133
+ "responseCode": 200
134
+ },
135
+ "input": {
136
+ "type": "structure",
137
+ "required": [
138
+ "ChallengeArn"
139
+ ],
140
+ "members": {
141
+ "ChallengeArn": {
142
+ "location": "uri",
143
+ "locationName": "ChallengeArn"
144
+ }
145
+ }
146
+ },
147
+ "output": {
148
+ "type": "structure",
149
+ "members": {
150
+ "ChallengeMetadata": {
151
+ "type": "structure",
152
+ "members": {
153
+ "Arn": {},
154
+ "ConnectorArn": {},
155
+ "CreatedAt": {
156
+ "type": "timestamp"
157
+ },
158
+ "UpdatedAt": {
159
+ "type": "timestamp"
160
+ }
161
+ }
162
+ }
163
+ }
164
+ }
165
+ },
166
+ "GetChallengePassword": {
167
+ "http": {
168
+ "method": "GET",
169
+ "requestUri": "/challengePasswords/{ChallengeArn}",
170
+ "responseCode": 200
171
+ },
172
+ "input": {
173
+ "type": "structure",
174
+ "required": [
175
+ "ChallengeArn"
176
+ ],
177
+ "members": {
178
+ "ChallengeArn": {
179
+ "location": "uri",
180
+ "locationName": "ChallengeArn"
181
+ }
182
+ }
183
+ },
184
+ "output": {
185
+ "type": "structure",
186
+ "members": {
187
+ "Password": {
188
+ "shape": "Sa"
189
+ }
190
+ }
191
+ }
192
+ },
193
+ "GetConnector": {
194
+ "http": {
195
+ "method": "GET",
196
+ "requestUri": "/connectors/{ConnectorArn}",
197
+ "responseCode": 200
198
+ },
199
+ "input": {
200
+ "type": "structure",
201
+ "required": [
202
+ "ConnectorArn"
203
+ ],
204
+ "members": {
205
+ "ConnectorArn": {
206
+ "location": "uri",
207
+ "locationName": "ConnectorArn"
208
+ }
209
+ }
210
+ },
211
+ "output": {
212
+ "type": "structure",
213
+ "members": {
214
+ "Connector": {
215
+ "type": "structure",
216
+ "members": {
217
+ "Arn": {},
218
+ "CertificateAuthorityArn": {},
219
+ "Type": {},
220
+ "MobileDeviceManagement": {
221
+ "shape": "Sd"
222
+ },
223
+ "OpenIdConfiguration": {
224
+ "shape": "St"
225
+ },
226
+ "Status": {},
227
+ "StatusReason": {},
228
+ "Endpoint": {},
229
+ "CreatedAt": {
230
+ "type": "timestamp"
231
+ },
232
+ "UpdatedAt": {
233
+ "type": "timestamp"
234
+ }
235
+ }
236
+ }
237
+ }
238
+ }
239
+ },
240
+ "ListChallengeMetadata": {
241
+ "http": {
242
+ "method": "GET",
243
+ "requestUri": "/challengeMetadata",
244
+ "responseCode": 200
245
+ },
246
+ "input": {
247
+ "type": "structure",
248
+ "required": [
249
+ "ConnectorArn"
250
+ ],
251
+ "members": {
252
+ "MaxResults": {
253
+ "location": "querystring",
254
+ "locationName": "MaxResults",
255
+ "type": "integer"
256
+ },
257
+ "NextToken": {
258
+ "location": "querystring",
259
+ "locationName": "NextToken"
260
+ },
261
+ "ConnectorArn": {
262
+ "location": "querystring",
263
+ "locationName": "ConnectorArn"
264
+ }
265
+ }
266
+ },
267
+ "output": {
268
+ "type": "structure",
269
+ "members": {
270
+ "Challenges": {
271
+ "type": "list",
272
+ "member": {
273
+ "type": "structure",
274
+ "members": {
275
+ "Arn": {},
276
+ "ConnectorArn": {},
277
+ "CreatedAt": {
278
+ "type": "timestamp"
279
+ },
280
+ "UpdatedAt": {
281
+ "type": "timestamp"
282
+ }
283
+ }
284
+ }
285
+ },
286
+ "NextToken": {}
287
+ }
288
+ }
289
+ },
290
+ "ListConnectors": {
291
+ "http": {
292
+ "method": "GET",
293
+ "requestUri": "/connectors",
294
+ "responseCode": 200
295
+ },
296
+ "input": {
297
+ "type": "structure",
298
+ "members": {
299
+ "MaxResults": {
300
+ "location": "querystring",
301
+ "locationName": "MaxResults",
302
+ "type": "integer"
303
+ },
304
+ "NextToken": {
305
+ "location": "querystring",
306
+ "locationName": "NextToken"
307
+ }
308
+ }
309
+ },
310
+ "output": {
311
+ "type": "structure",
312
+ "members": {
313
+ "Connectors": {
314
+ "type": "list",
315
+ "member": {
316
+ "type": "structure",
317
+ "members": {
318
+ "Arn": {},
319
+ "CertificateAuthorityArn": {},
320
+ "Type": {},
321
+ "MobileDeviceManagement": {
322
+ "shape": "Sd"
323
+ },
324
+ "OpenIdConfiguration": {
325
+ "shape": "St"
326
+ },
327
+ "Status": {},
328
+ "StatusReason": {},
329
+ "Endpoint": {},
330
+ "CreatedAt": {
331
+ "type": "timestamp"
332
+ },
333
+ "UpdatedAt": {
334
+ "type": "timestamp"
335
+ }
336
+ }
337
+ }
338
+ },
339
+ "NextToken": {}
340
+ }
341
+ }
342
+ },
343
+ "ListTagsForResource": {
344
+ "http": {
345
+ "method": "GET",
346
+ "requestUri": "/tags/{ResourceArn}",
347
+ "responseCode": 200
348
+ },
349
+ "input": {
350
+ "type": "structure",
351
+ "required": [
352
+ "ResourceArn"
353
+ ],
354
+ "members": {
355
+ "ResourceArn": {
356
+ "location": "uri",
357
+ "locationName": "ResourceArn"
358
+ }
359
+ }
360
+ },
361
+ "output": {
362
+ "type": "structure",
363
+ "members": {
364
+ "Tags": {
365
+ "shape": "S4"
366
+ }
367
+ }
368
+ }
369
+ },
370
+ "TagResource": {
371
+ "http": {
372
+ "requestUri": "/tags/{ResourceArn}",
373
+ "responseCode": 204
374
+ },
375
+ "input": {
376
+ "type": "structure",
377
+ "required": [
378
+ "ResourceArn",
379
+ "Tags"
380
+ ],
381
+ "members": {
382
+ "ResourceArn": {
383
+ "location": "uri",
384
+ "locationName": "ResourceArn"
385
+ },
386
+ "Tags": {
387
+ "shape": "S4"
388
+ }
389
+ }
390
+ }
391
+ },
392
+ "UntagResource": {
393
+ "http": {
394
+ "method": "DELETE",
395
+ "requestUri": "/tags/{ResourceArn}",
396
+ "responseCode": 204
397
+ },
398
+ "input": {
399
+ "type": "structure",
400
+ "required": [
401
+ "ResourceArn",
402
+ "TagKeys"
403
+ ],
404
+ "members": {
405
+ "ResourceArn": {
406
+ "location": "uri",
407
+ "locationName": "ResourceArn"
408
+ },
409
+ "TagKeys": {
410
+ "location": "querystring",
411
+ "locationName": "tagKeys",
412
+ "type": "list",
413
+ "member": {}
414
+ }
415
+ }
416
+ },
417
+ "idempotent": true
418
+ }
419
+ },
420
+ "shapes": {
421
+ "S4": {
422
+ "type": "map",
423
+ "key": {},
424
+ "value": {}
425
+ },
426
+ "Sa": {
427
+ "type": "string",
428
+ "sensitive": true
429
+ },
430
+ "Sd": {
431
+ "type": "structure",
432
+ "members": {
433
+ "Intune": {
434
+ "type": "structure",
435
+ "required": [
436
+ "AzureApplicationId",
437
+ "Domain"
438
+ ],
439
+ "members": {
440
+ "AzureApplicationId": {},
441
+ "Domain": {}
442
+ }
443
+ }
444
+ },
445
+ "union": true
446
+ },
447
+ "St": {
448
+ "type": "structure",
449
+ "members": {
450
+ "Issuer": {},
451
+ "Subject": {},
452
+ "Audience": {}
453
+ }
454
+ }
455
+ }
456
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "ListChallengeMetadata": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults",
7
+ "result_key": "Challenges"
8
+ },
9
+ "ListConnectors": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "limit_key": "MaxResults",
13
+ "result_key": "Connectors"
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ }
5
+ }