servicecatalog-appregistry-2020-06-24.min.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2020-06-24",
  5. "endpointPrefix": "servicecatalog-appregistry",
  6. "jsonVersion": "1.1",
  7. "protocol": "rest-json",
  8. "serviceAbbreviation": "AppRegistry",
  9. "serviceFullName": "AWS Service Catalog App Registry",
  10. "serviceId": "Service Catalog AppRegistry",
  11. "signatureVersion": "v4",
  12. "signingName": "servicecatalog",
  13. "uid": "AWS242AppRegistry-2020-06-24"
  14. },
  15. "operations": {
  16. "AssociateAttributeGroup": {
  17. "http": {
  18. "method": "PUT",
  19. "requestUri": "/applications/{application}/attribute-groups/{attributeGroup}"
  20. },
  21. "input": {
  22. "type": "structure",
  23. "required": [
  24. "application",
  25. "attributeGroup"
  26. ],
  27. "members": {
  28. "application": {
  29. "location": "uri",
  30. "locationName": "application"
  31. },
  32. "attributeGroup": {
  33. "location": "uri",
  34. "locationName": "attributeGroup"
  35. }
  36. }
  37. },
  38. "output": {
  39. "type": "structure",
  40. "members": {
  41. "applicationArn": {},
  42. "attributeGroupArn": {}
  43. }
  44. }
  45. },
  46. "AssociateResource": {
  47. "http": {
  48. "method": "PUT",
  49. "requestUri": "/applications/{application}/resources/{resourceType}/{resource}"
  50. },
  51. "input": {
  52. "type": "structure",
  53. "required": [
  54. "application",
  55. "resourceType",
  56. "resource"
  57. ],
  58. "members": {
  59. "application": {
  60. "location": "uri",
  61. "locationName": "application"
  62. },
  63. "resourceType": {
  64. "location": "uri",
  65. "locationName": "resourceType"
  66. },
  67. "resource": {
  68. "location": "uri",
  69. "locationName": "resource"
  70. },
  71. "options": {
  72. "shape": "Sa"
  73. }
  74. }
  75. },
  76. "output": {
  77. "type": "structure",
  78. "members": {
  79. "applicationArn": {},
  80. "resourceArn": {},
  81. "options": {
  82. "shape": "Sa"
  83. }
  84. }
  85. }
  86. },
  87. "CreateApplication": {
  88. "http": {
  89. "requestUri": "/applications",
  90. "responseCode": 201
  91. },
  92. "input": {
  93. "type": "structure",
  94. "required": [
  95. "name",
  96. "clientToken"
  97. ],
  98. "members": {
  99. "name": {},
  100. "description": {},
  101. "tags": {
  102. "shape": "Sh"
  103. },
  104. "clientToken": {
  105. "idempotencyToken": true
  106. }
  107. }
  108. },
  109. "output": {
  110. "type": "structure",
  111. "members": {
  112. "application": {
  113. "shape": "Sm"
  114. }
  115. }
  116. }
  117. },
  118. "CreateAttributeGroup": {
  119. "http": {
  120. "requestUri": "/attribute-groups",
  121. "responseCode": 201
  122. },
  123. "input": {
  124. "type": "structure",
  125. "required": [
  126. "name",
  127. "attributes",
  128. "clientToken"
  129. ],
  130. "members": {
  131. "name": {},
  132. "description": {},
  133. "attributes": {},
  134. "tags": {
  135. "shape": "Sh"
  136. },
  137. "clientToken": {
  138. "idempotencyToken": true
  139. }
  140. }
  141. },
  142. "output": {
  143. "type": "structure",
  144. "members": {
  145. "attributeGroup": {
  146. "shape": "St"
  147. }
  148. }
  149. }
  150. },
  151. "DeleteApplication": {
  152. "http": {
  153. "method": "DELETE",
  154. "requestUri": "/applications/{application}"
  155. },
  156. "input": {
  157. "type": "structure",
  158. "required": [
  159. "application"
  160. ],
  161. "members": {
  162. "application": {
  163. "location": "uri",
  164. "locationName": "application"
  165. }
  166. }
  167. },
  168. "output": {
  169. "type": "structure",
  170. "members": {
  171. "application": {
  172. "shape": "Sx"
  173. }
  174. }
  175. }
  176. },
  177. "DeleteAttributeGroup": {
  178. "http": {
  179. "method": "DELETE",
  180. "requestUri": "/attribute-groups/{attributeGroup}"
  181. },
  182. "input": {
  183. "type": "structure",
  184. "required": [
  185. "attributeGroup"
  186. ],
  187. "members": {
  188. "attributeGroup": {
  189. "location": "uri",
  190. "locationName": "attributeGroup"
  191. }
  192. }
  193. },
  194. "output": {
  195. "type": "structure",
  196. "members": {
  197. "attributeGroup": {
  198. "shape": "S10"
  199. }
  200. }
  201. }
  202. },
  203. "DisassociateAttributeGroup": {
  204. "http": {
  205. "method": "DELETE",
  206. "requestUri": "/applications/{application}/attribute-groups/{attributeGroup}"
  207. },
  208. "input": {
  209. "type": "structure",
  210. "required": [
  211. "application",
  212. "attributeGroup"
  213. ],
  214. "members": {
  215. "application": {
  216. "location": "uri",
  217. "locationName": "application"
  218. },
  219. "attributeGroup": {
  220. "location": "uri",
  221. "locationName": "attributeGroup"
  222. }
  223. }
  224. },
  225. "output": {
  226. "type": "structure",
  227. "members": {
  228. "applicationArn": {},
  229. "attributeGroupArn": {}
  230. }
  231. }
  232. },
  233. "DisassociateResource": {
  234. "http": {
  235. "method": "DELETE",
  236. "requestUri": "/applications/{application}/resources/{resourceType}/{resource}"
  237. },
  238. "input": {
  239. "type": "structure",
  240. "required": [
  241. "application",
  242. "resourceType",
  243. "resource"
  244. ],
  245. "members": {
  246. "application": {
  247. "location": "uri",
  248. "locationName": "application"
  249. },
  250. "resourceType": {
  251. "location": "uri",
  252. "locationName": "resourceType"
  253. },
  254. "resource": {
  255. "location": "uri",
  256. "locationName": "resource"
  257. }
  258. }
  259. },
  260. "output": {
  261. "type": "structure",
  262. "members": {
  263. "applicationArn": {},
  264. "resourceArn": {}
  265. }
  266. }
  267. },
  268. "GetApplication": {
  269. "http": {
  270. "method": "GET",
  271. "requestUri": "/applications/{application}"
  272. },
  273. "input": {
  274. "type": "structure",
  275. "required": [
  276. "application"
  277. ],
  278. "members": {
  279. "application": {
  280. "location": "uri",
  281. "locationName": "application"
  282. }
  283. }
  284. },
  285. "output": {
  286. "type": "structure",
  287. "members": {
  288. "id": {},
  289. "arn": {},
  290. "name": {},
  291. "description": {},
  292. "creationTime": {
  293. "shape": "So"
  294. },
  295. "lastUpdateTime": {
  296. "shape": "So"
  297. },
  298. "associatedResourceCount": {
  299. "type": "integer"
  300. },
  301. "tags": {
  302. "shape": "Sh"
  303. },
  304. "integrations": {
  305. "type": "structure",
  306. "members": {
  307. "resourceGroup": {
  308. "shape": "S1a"
  309. },
  310. "applicationTagResourceGroup": {
  311. "shape": "S1a"
  312. }
  313. }
  314. },
  315. "applicationTag": {
  316. "shape": "Sp"
  317. }
  318. }
  319. }
  320. },
  321. "GetAssociatedResource": {
  322. "http": {
  323. "method": "GET",
  324. "requestUri": "/applications/{application}/resources/{resourceType}/{resource}"
  325. },
  326. "input": {
  327. "type": "structure",
  328. "required": [
  329. "application",
  330. "resourceType",
  331. "resource"
  332. ],
  333. "members": {
  334. "application": {
  335. "location": "uri",
  336. "locationName": "application"
  337. },
  338. "resourceType": {
  339. "location": "uri",
  340. "locationName": "resourceType"
  341. },
  342. "resource": {
  343. "location": "uri",
  344. "locationName": "resource"
  345. },
  346. "nextToken": {
  347. "location": "querystring",
  348. "locationName": "nextToken"
  349. },
  350. "resourceTagStatus": {
  351. "location": "querystring",
  352. "locationName": "resourceTagStatus",
  353. "type": "list",
  354. "member": {}
  355. },
  356. "maxResults": {
  357. "location": "querystring",
  358. "locationName": "maxResults",
  359. "type": "integer"
  360. }
  361. }
  362. },
  363. "output": {
  364. "type": "structure",
  365. "members": {
  366. "resource": {
  367. "type": "structure",
  368. "members": {
  369. "name": {},
  370. "arn": {},
  371. "associationTime": {
  372. "shape": "So"
  373. },
  374. "integrations": {
  375. "type": "structure",
  376. "members": {
  377. "resourceGroup": {
  378. "shape": "S1a"
  379. }
  380. }
  381. }
  382. }
  383. },
  384. "options": {
  385. "shape": "Sa"
  386. },
  387. "applicationTagResult": {
  388. "type": "structure",
  389. "members": {
  390. "applicationTagStatus": {},
  391. "errorMessage": {},
  392. "resources": {
  393. "type": "list",
  394. "member": {
  395. "type": "structure",
  396. "members": {
  397. "resourceArn": {},
  398. "errorMessage": {},
  399. "status": {},
  400. "resourceType": {}
  401. }
  402. }
  403. },
  404. "nextToken": {}
  405. }
  406. }
  407. }
  408. },
  409. "idempotent": true
  410. },
  411. "GetAttributeGroup": {
  412. "http": {
  413. "method": "GET",
  414. "requestUri": "/attribute-groups/{attributeGroup}"
  415. },
  416. "input": {
  417. "type": "structure",
  418. "required": [
  419. "attributeGroup"
  420. ],
  421. "members": {
  422. "attributeGroup": {
  423. "location": "uri",
  424. "locationName": "attributeGroup"
  425. }
  426. }
  427. },
  428. "output": {
  429. "type": "structure",
  430. "members": {
  431. "id": {},
  432. "arn": {},
  433. "name": {},
  434. "description": {},
  435. "attributes": {},
  436. "creationTime": {
  437. "shape": "So"
  438. },
  439. "lastUpdateTime": {
  440. "shape": "So"
  441. },
  442. "tags": {
  443. "shape": "Sh"
  444. },
  445. "createdBy": {}
  446. }
  447. }
  448. },
  449. "GetConfiguration": {
  450. "http": {
  451. "method": "GET",
  452. "requestUri": "/configuration"
  453. },
  454. "output": {
  455. "type": "structure",
  456. "members": {
  457. "configuration": {
  458. "shape": "S1u"
  459. }
  460. }
  461. }
  462. },
  463. "ListApplications": {
  464. "http": {
  465. "method": "GET",
  466. "requestUri": "/applications"
  467. },
  468. "input": {
  469. "type": "structure",
  470. "members": {
  471. "nextToken": {
  472. "location": "querystring",
  473. "locationName": "nextToken"
  474. },
  475. "maxResults": {
  476. "location": "querystring",
  477. "locationName": "maxResults",
  478. "type": "integer"
  479. }
  480. }
  481. },
  482. "output": {
  483. "type": "structure",
  484. "members": {
  485. "applications": {
  486. "type": "list",
  487. "member": {
  488. "shape": "Sx"
  489. }
  490. },
  491. "nextToken": {}
  492. }
  493. },
  494. "idempotent": true
  495. },
  496. "ListAssociatedAttributeGroups": {
  497. "http": {
  498. "method": "GET",
  499. "requestUri": "/applications/{application}/attribute-groups"
  500. },
  501. "input": {
  502. "type": "structure",
  503. "required": [
  504. "application"
  505. ],
  506. "members": {
  507. "application": {
  508. "location": "uri",
  509. "locationName": "application"
  510. },
  511. "nextToken": {
  512. "location": "querystring",
  513. "locationName": "nextToken"
  514. },
  515. "maxResults": {
  516. "location": "querystring",
  517. "locationName": "maxResults",
  518. "type": "integer"
  519. }
  520. }
  521. },
  522. "output": {
  523. "type": "structure",
  524. "members": {
  525. "attributeGroups": {
  526. "type": "list",
  527. "member": {}
  528. },
  529. "nextToken": {}
  530. }
  531. },
  532. "idempotent": true
  533. },
  534. "ListAssociatedResources": {
  535. "http": {
  536. "method": "GET",
  537. "requestUri": "/applications/{application}/resources"
  538. },
  539. "input": {
  540. "type": "structure",
  541. "required": [
  542. "application"
  543. ],
  544. "members": {
  545. "application": {
  546. "location": "uri",
  547. "locationName": "application"
  548. },
  549. "nextToken": {
  550. "location": "querystring",
  551. "locationName": "nextToken"
  552. },
  553. "maxResults": {
  554. "location": "querystring",
  555. "locationName": "maxResults",
  556. "type": "integer"
  557. }
  558. }
  559. },
  560. "output": {
  561. "type": "structure",
  562. "members": {
  563. "resources": {
  564. "type": "list",
  565. "member": {
  566. "type": "structure",
  567. "members": {
  568. "name": {},
  569. "arn": {},
  570. "resourceType": {},
  571. "resourceDetails": {
  572. "type": "structure",
  573. "members": {
  574. "tagValue": {}
  575. }
  576. },
  577. "options": {
  578. "shape": "Sa"
  579. }
  580. }
  581. }
  582. },
  583. "nextToken": {}
  584. }
  585. },
  586. "idempotent": true
  587. },
  588. "ListAttributeGroups": {
  589. "http": {
  590. "method": "GET",
  591. "requestUri": "/attribute-groups"
  592. },
  593. "input": {
  594. "type": "structure",
  595. "members": {
  596. "nextToken": {
  597. "location": "querystring",
  598. "locationName": "nextToken"
  599. },
  600. "maxResults": {
  601. "location": "querystring",
  602. "locationName": "maxResults",
  603. "type": "integer"
  604. }
  605. }
  606. },
  607. "output": {
  608. "type": "structure",
  609. "members": {
  610. "attributeGroups": {
  611. "type": "list",
  612. "member": {
  613. "shape": "S10"
  614. }
  615. },
  616. "nextToken": {}
  617. }
  618. },
  619. "idempotent": true
  620. },
  621. "ListAttributeGroupsForApplication": {
  622. "http": {
  623. "method": "GET",
  624. "requestUri": "/applications/{application}/attribute-group-details"
  625. },
  626. "input": {
  627. "type": "structure",
  628. "required": [
  629. "application"
  630. ],
  631. "members": {
  632. "application": {
  633. "location": "uri",
  634. "locationName": "application"
  635. },
  636. "nextToken": {
  637. "location": "querystring",
  638. "locationName": "nextToken"
  639. },
  640. "maxResults": {
  641. "location": "querystring",
  642. "locationName": "maxResults",
  643. "type": "integer"
  644. }
  645. }
  646. },
  647. "output": {
  648. "type": "structure",
  649. "members": {
  650. "attributeGroupsDetails": {
  651. "type": "list",
  652. "member": {
  653. "type": "structure",
  654. "members": {
  655. "id": {},
  656. "arn": {},
  657. "name": {},
  658. "createdBy": {}
  659. }
  660. }
  661. },
  662. "nextToken": {}
  663. }
  664. },
  665. "idempotent": true
  666. },
  667. "ListTagsForResource": {
  668. "http": {
  669. "method": "GET",
  670. "requestUri": "/tags/{resourceArn}"
  671. },
  672. "input": {
  673. "type": "structure",
  674. "required": [
  675. "resourceArn"
  676. ],
  677. "members": {
  678. "resourceArn": {
  679. "location": "uri",
  680. "locationName": "resourceArn"
  681. }
  682. }
  683. },
  684. "output": {
  685. "type": "structure",
  686. "members": {
  687. "tags": {
  688. "shape": "Sh"
  689. }
  690. }
  691. }
  692. },
  693. "PutConfiguration": {
  694. "http": {
  695. "method": "PUT",
  696. "requestUri": "/configuration"
  697. },
  698. "input": {
  699. "type": "structure",
  700. "required": [
  701. "configuration"
  702. ],
  703. "members": {
  704. "configuration": {
  705. "shape": "S1u"
  706. }
  707. }
  708. }
  709. },
  710. "SyncResource": {
  711. "http": {
  712. "requestUri": "/sync/{resourceType}/{resource}"
  713. },
  714. "input": {
  715. "type": "structure",
  716. "required": [
  717. "resourceType",
  718. "resource"
  719. ],
  720. "members": {
  721. "resourceType": {
  722. "location": "uri",
  723. "locationName": "resourceType"
  724. },
  725. "resource": {
  726. "location": "uri",
  727. "locationName": "resource"
  728. }
  729. }
  730. },
  731. "output": {
  732. "type": "structure",
  733. "members": {
  734. "applicationArn": {},
  735. "resourceArn": {},
  736. "actionTaken": {}
  737. }
  738. }
  739. },
  740. "TagResource": {
  741. "http": {
  742. "requestUri": "/tags/{resourceArn}"
  743. },
  744. "input": {
  745. "type": "structure",
  746. "required": [
  747. "resourceArn",
  748. "tags"
  749. ],
  750. "members": {
  751. "resourceArn": {
  752. "location": "uri",
  753. "locationName": "resourceArn"
  754. },
  755. "tags": {
  756. "shape": "Sh"
  757. }
  758. }
  759. },
  760. "output": {
  761. "type": "structure",
  762. "members": {}
  763. }
  764. },
  765. "UntagResource": {
  766. "http": {
  767. "method": "DELETE",
  768. "requestUri": "/tags/{resourceArn}"
  769. },
  770. "input": {
  771. "type": "structure",
  772. "required": [
  773. "resourceArn",
  774. "tagKeys"
  775. ],
  776. "members": {
  777. "resourceArn": {
  778. "location": "uri",
  779. "locationName": "resourceArn"
  780. },
  781. "tagKeys": {
  782. "location": "querystring",
  783. "locationName": "tagKeys",
  784. "type": "list",
  785. "member": {}
  786. }
  787. }
  788. },
  789. "output": {
  790. "type": "structure",
  791. "members": {}
  792. }
  793. },
  794. "UpdateApplication": {
  795. "http": {
  796. "method": "PATCH",
  797. "requestUri": "/applications/{application}"
  798. },
  799. "input": {
  800. "type": "structure",
  801. "required": [
  802. "application"
  803. ],
  804. "members": {
  805. "application": {
  806. "location": "uri",
  807. "locationName": "application"
  808. },
  809. "name": {
  810. "deprecated": true,
  811. "deprecatedMessage": "Name update for application is deprecated."
  812. },
  813. "description": {}
  814. }
  815. },
  816. "output": {
  817. "type": "structure",
  818. "members": {
  819. "application": {
  820. "shape": "Sm"
  821. }
  822. }
  823. }
  824. },
  825. "UpdateAttributeGroup": {
  826. "http": {
  827. "method": "PATCH",
  828. "requestUri": "/attribute-groups/{attributeGroup}"
  829. },
  830. "input": {
  831. "type": "structure",
  832. "required": [
  833. "attributeGroup"
  834. ],
  835. "members": {
  836. "attributeGroup": {
  837. "location": "uri",
  838. "locationName": "attributeGroup"
  839. },
  840. "name": {
  841. "deprecated": true,
  842. "deprecatedMessage": "Name update for attribute group is deprecated."
  843. },
  844. "description": {},
  845. "attributes": {}
  846. }
  847. },
  848. "output": {
  849. "type": "structure",
  850. "members": {
  851. "attributeGroup": {
  852. "shape": "St"
  853. }
  854. }
  855. }
  856. }
  857. },
  858. "shapes": {
  859. "Sa": {
  860. "type": "list",
  861. "member": {}
  862. },
  863. "Sh": {
  864. "type": "map",
  865. "key": {},
  866. "value": {}
  867. },
  868. "Sm": {
  869. "type": "structure",
  870. "members": {
  871. "id": {},
  872. "arn": {},
  873. "name": {},
  874. "description": {},
  875. "creationTime": {
  876. "shape": "So"
  877. },
  878. "lastUpdateTime": {
  879. "shape": "So"
  880. },
  881. "tags": {
  882. "shape": "Sh"
  883. },
  884. "applicationTag": {
  885. "shape": "Sp"
  886. }
  887. }
  888. },
  889. "So": {
  890. "type": "timestamp",
  891. "timestampFormat": "iso8601"
  892. },
  893. "Sp": {
  894. "type": "map",
  895. "key": {},
  896. "value": {}
  897. },
  898. "St": {
  899. "type": "structure",
  900. "members": {
  901. "id": {},
  902. "arn": {},
  903. "name": {},
  904. "description": {},
  905. "creationTime": {
  906. "shape": "So"
  907. },
  908. "lastUpdateTime": {
  909. "shape": "So"
  910. },
  911. "tags": {
  912. "shape": "Sh"
  913. }
  914. }
  915. },
  916. "Sx": {
  917. "type": "structure",
  918. "members": {
  919. "id": {},
  920. "arn": {},
  921. "name": {},
  922. "description": {},
  923. "creationTime": {
  924. "shape": "So"
  925. },
  926. "lastUpdateTime": {
  927. "shape": "So"
  928. }
  929. }
  930. },
  931. "S10": {
  932. "type": "structure",
  933. "members": {
  934. "id": {},
  935. "arn": {},
  936. "name": {},
  937. "description": {},
  938. "creationTime": {
  939. "shape": "So"
  940. },
  941. "lastUpdateTime": {
  942. "shape": "So"
  943. },
  944. "createdBy": {}
  945. }
  946. },
  947. "S1a": {
  948. "type": "structure",
  949. "members": {
  950. "state": {},
  951. "arn": {},
  952. "errorMessage": {}
  953. }
  954. },
  955. "S1u": {
  956. "type": "structure",
  957. "members": {
  958. "tagQueryConfiguration": {
  959. "type": "structure",
  960. "members": {
  961. "tagKey": {}
  962. }
  963. }
  964. }
  965. }
  966. }
  967. }