workspaces-2015-04-08.min.json 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2015-04-08",
  5. "endpointPrefix": "workspaces",
  6. "jsonVersion": "1.1",
  7. "protocol": "json",
  8. "serviceFullName": "Amazon WorkSpaces",
  9. "serviceId": "WorkSpaces",
  10. "signatureVersion": "v4",
  11. "targetPrefix": "WorkspacesService",
  12. "uid": "workspaces-2015-04-08"
  13. },
  14. "operations": {
  15. "AcceptAccountLinkInvitation": {
  16. "input": {
  17. "type": "structure",
  18. "required": [
  19. "LinkId"
  20. ],
  21. "members": {
  22. "LinkId": {},
  23. "ClientToken": {}
  24. }
  25. },
  26. "output": {
  27. "type": "structure",
  28. "members": {
  29. "AccountLink": {
  30. "shape": "S5"
  31. }
  32. }
  33. }
  34. },
  35. "AssociateConnectionAlias": {
  36. "input": {
  37. "type": "structure",
  38. "required": [
  39. "AliasId",
  40. "ResourceId"
  41. ],
  42. "members": {
  43. "AliasId": {},
  44. "ResourceId": {}
  45. }
  46. },
  47. "output": {
  48. "type": "structure",
  49. "members": {
  50. "ConnectionIdentifier": {}
  51. }
  52. }
  53. },
  54. "AssociateIpGroups": {
  55. "input": {
  56. "type": "structure",
  57. "required": [
  58. "DirectoryId",
  59. "GroupIds"
  60. ],
  61. "members": {
  62. "DirectoryId": {},
  63. "GroupIds": {
  64. "shape": "Sf"
  65. }
  66. }
  67. },
  68. "output": {
  69. "type": "structure",
  70. "members": {}
  71. }
  72. },
  73. "AssociateWorkspaceApplication": {
  74. "input": {
  75. "type": "structure",
  76. "required": [
  77. "WorkspaceId",
  78. "ApplicationId"
  79. ],
  80. "members": {
  81. "WorkspaceId": {},
  82. "ApplicationId": {}
  83. }
  84. },
  85. "output": {
  86. "type": "structure",
  87. "members": {
  88. "Association": {
  89. "shape": "Sm"
  90. }
  91. }
  92. }
  93. },
  94. "AuthorizeIpRules": {
  95. "input": {
  96. "type": "structure",
  97. "required": [
  98. "GroupId",
  99. "UserRules"
  100. ],
  101. "members": {
  102. "GroupId": {},
  103. "UserRules": {
  104. "shape": "Su"
  105. }
  106. }
  107. },
  108. "output": {
  109. "type": "structure",
  110. "members": {}
  111. }
  112. },
  113. "CopyWorkspaceImage": {
  114. "input": {
  115. "type": "structure",
  116. "required": [
  117. "Name",
  118. "SourceImageId",
  119. "SourceRegion"
  120. ],
  121. "members": {
  122. "Name": {},
  123. "Description": {},
  124. "SourceImageId": {},
  125. "SourceRegion": {},
  126. "Tags": {
  127. "shape": "S14"
  128. }
  129. }
  130. },
  131. "output": {
  132. "type": "structure",
  133. "members": {
  134. "ImageId": {}
  135. }
  136. }
  137. },
  138. "CreateAccountLinkInvitation": {
  139. "input": {
  140. "type": "structure",
  141. "required": [
  142. "TargetAccountId"
  143. ],
  144. "members": {
  145. "TargetAccountId": {},
  146. "ClientToken": {}
  147. }
  148. },
  149. "output": {
  150. "type": "structure",
  151. "members": {
  152. "AccountLink": {
  153. "shape": "S5"
  154. }
  155. }
  156. }
  157. },
  158. "CreateConnectClientAddIn": {
  159. "input": {
  160. "type": "structure",
  161. "required": [
  162. "ResourceId",
  163. "Name",
  164. "URL"
  165. ],
  166. "members": {
  167. "ResourceId": {},
  168. "Name": {},
  169. "URL": {}
  170. }
  171. },
  172. "output": {
  173. "type": "structure",
  174. "members": {
  175. "AddInId": {}
  176. }
  177. }
  178. },
  179. "CreateConnectionAlias": {
  180. "input": {
  181. "type": "structure",
  182. "required": [
  183. "ConnectionString"
  184. ],
  185. "members": {
  186. "ConnectionString": {},
  187. "Tags": {
  188. "shape": "S14"
  189. }
  190. }
  191. },
  192. "output": {
  193. "type": "structure",
  194. "members": {
  195. "AliasId": {}
  196. }
  197. }
  198. },
  199. "CreateIpGroup": {
  200. "input": {
  201. "type": "structure",
  202. "required": [
  203. "GroupName"
  204. ],
  205. "members": {
  206. "GroupName": {},
  207. "GroupDesc": {},
  208. "UserRules": {
  209. "shape": "Su"
  210. },
  211. "Tags": {
  212. "shape": "S14"
  213. }
  214. }
  215. },
  216. "output": {
  217. "type": "structure",
  218. "members": {
  219. "GroupId": {}
  220. }
  221. }
  222. },
  223. "CreateStandbyWorkspaces": {
  224. "input": {
  225. "type": "structure",
  226. "required": [
  227. "PrimaryRegion",
  228. "StandbyWorkspaces"
  229. ],
  230. "members": {
  231. "PrimaryRegion": {},
  232. "StandbyWorkspaces": {
  233. "type": "list",
  234. "member": {
  235. "shape": "S1p"
  236. }
  237. }
  238. }
  239. },
  240. "output": {
  241. "type": "structure",
  242. "members": {
  243. "FailedStandbyRequests": {
  244. "type": "list",
  245. "member": {
  246. "type": "structure",
  247. "members": {
  248. "StandbyWorkspaceRequest": {
  249. "shape": "S1p"
  250. },
  251. "ErrorCode": {},
  252. "ErrorMessage": {}
  253. }
  254. }
  255. },
  256. "PendingStandbyRequests": {
  257. "type": "list",
  258. "member": {
  259. "type": "structure",
  260. "members": {
  261. "UserName": {},
  262. "DirectoryId": {},
  263. "State": {},
  264. "WorkspaceId": {}
  265. }
  266. }
  267. }
  268. }
  269. }
  270. },
  271. "CreateTags": {
  272. "input": {
  273. "type": "structure",
  274. "required": [
  275. "ResourceId",
  276. "Tags"
  277. ],
  278. "members": {
  279. "ResourceId": {},
  280. "Tags": {
  281. "shape": "S14"
  282. }
  283. }
  284. },
  285. "output": {
  286. "type": "structure",
  287. "members": {}
  288. }
  289. },
  290. "CreateUpdatedWorkspaceImage": {
  291. "input": {
  292. "type": "structure",
  293. "required": [
  294. "Name",
  295. "Description",
  296. "SourceImageId"
  297. ],
  298. "members": {
  299. "Name": {},
  300. "Description": {},
  301. "SourceImageId": {},
  302. "Tags": {
  303. "shape": "S14"
  304. }
  305. }
  306. },
  307. "output": {
  308. "type": "structure",
  309. "members": {
  310. "ImageId": {}
  311. }
  312. }
  313. },
  314. "CreateWorkspaceBundle": {
  315. "input": {
  316. "type": "structure",
  317. "required": [
  318. "BundleName",
  319. "BundleDescription",
  320. "ImageId",
  321. "ComputeType",
  322. "UserStorage"
  323. ],
  324. "members": {
  325. "BundleName": {},
  326. "BundleDescription": {},
  327. "ImageId": {},
  328. "ComputeType": {
  329. "shape": "S28"
  330. },
  331. "UserStorage": {
  332. "shape": "S2a"
  333. },
  334. "RootStorage": {
  335. "shape": "S2b"
  336. },
  337. "Tags": {
  338. "shape": "S14"
  339. }
  340. }
  341. },
  342. "output": {
  343. "type": "structure",
  344. "members": {
  345. "WorkspaceBundle": {
  346. "shape": "S2d"
  347. }
  348. }
  349. }
  350. },
  351. "CreateWorkspaceImage": {
  352. "input": {
  353. "type": "structure",
  354. "required": [
  355. "Name",
  356. "Description",
  357. "WorkspaceId"
  358. ],
  359. "members": {
  360. "Name": {},
  361. "Description": {},
  362. "WorkspaceId": {},
  363. "Tags": {
  364. "shape": "S14"
  365. }
  366. }
  367. },
  368. "output": {
  369. "type": "structure",
  370. "members": {
  371. "ImageId": {},
  372. "Name": {},
  373. "Description": {},
  374. "OperatingSystem": {
  375. "shape": "S2k"
  376. },
  377. "State": {},
  378. "RequiredTenancy": {},
  379. "Created": {
  380. "type": "timestamp"
  381. },
  382. "OwnerAccountId": {}
  383. }
  384. }
  385. },
  386. "CreateWorkspaces": {
  387. "input": {
  388. "type": "structure",
  389. "required": [
  390. "Workspaces"
  391. ],
  392. "members": {
  393. "Workspaces": {
  394. "type": "list",
  395. "member": {
  396. "shape": "S2q"
  397. }
  398. }
  399. }
  400. },
  401. "output": {
  402. "type": "structure",
  403. "members": {
  404. "FailedRequests": {
  405. "type": "list",
  406. "member": {
  407. "type": "structure",
  408. "members": {
  409. "WorkspaceRequest": {
  410. "shape": "S2q"
  411. },
  412. "ErrorCode": {},
  413. "ErrorMessage": {}
  414. }
  415. }
  416. },
  417. "PendingRequests": {
  418. "shape": "S35"
  419. }
  420. }
  421. }
  422. },
  423. "DeleteAccountLinkInvitation": {
  424. "input": {
  425. "type": "structure",
  426. "required": [
  427. "LinkId"
  428. ],
  429. "members": {
  430. "LinkId": {},
  431. "ClientToken": {}
  432. }
  433. },
  434. "output": {
  435. "type": "structure",
  436. "members": {
  437. "AccountLink": {
  438. "shape": "S5"
  439. }
  440. }
  441. }
  442. },
  443. "DeleteClientBranding": {
  444. "input": {
  445. "type": "structure",
  446. "required": [
  447. "ResourceId",
  448. "Platforms"
  449. ],
  450. "members": {
  451. "ResourceId": {},
  452. "Platforms": {
  453. "type": "list",
  454. "member": {}
  455. }
  456. }
  457. },
  458. "output": {
  459. "type": "structure",
  460. "members": {}
  461. }
  462. },
  463. "DeleteConnectClientAddIn": {
  464. "input": {
  465. "type": "structure",
  466. "required": [
  467. "AddInId",
  468. "ResourceId"
  469. ],
  470. "members": {
  471. "AddInId": {},
  472. "ResourceId": {}
  473. }
  474. },
  475. "output": {
  476. "type": "structure",
  477. "members": {}
  478. }
  479. },
  480. "DeleteConnectionAlias": {
  481. "input": {
  482. "type": "structure",
  483. "required": [
  484. "AliasId"
  485. ],
  486. "members": {
  487. "AliasId": {}
  488. }
  489. },
  490. "output": {
  491. "type": "structure",
  492. "members": {}
  493. }
  494. },
  495. "DeleteIpGroup": {
  496. "input": {
  497. "type": "structure",
  498. "required": [
  499. "GroupId"
  500. ],
  501. "members": {
  502. "GroupId": {}
  503. }
  504. },
  505. "output": {
  506. "type": "structure",
  507. "members": {}
  508. }
  509. },
  510. "DeleteTags": {
  511. "input": {
  512. "type": "structure",
  513. "required": [
  514. "ResourceId",
  515. "TagKeys"
  516. ],
  517. "members": {
  518. "ResourceId": {},
  519. "TagKeys": {
  520. "type": "list",
  521. "member": {}
  522. }
  523. }
  524. },
  525. "output": {
  526. "type": "structure",
  527. "members": {}
  528. }
  529. },
  530. "DeleteWorkspaceBundle": {
  531. "input": {
  532. "type": "structure",
  533. "members": {
  534. "BundleId": {}
  535. }
  536. },
  537. "output": {
  538. "type": "structure",
  539. "members": {}
  540. }
  541. },
  542. "DeleteWorkspaceImage": {
  543. "input": {
  544. "type": "structure",
  545. "required": [
  546. "ImageId"
  547. ],
  548. "members": {
  549. "ImageId": {}
  550. }
  551. },
  552. "output": {
  553. "type": "structure",
  554. "members": {}
  555. }
  556. },
  557. "DeployWorkspaceApplications": {
  558. "input": {
  559. "type": "structure",
  560. "required": [
  561. "WorkspaceId"
  562. ],
  563. "members": {
  564. "WorkspaceId": {},
  565. "Force": {
  566. "type": "boolean"
  567. }
  568. }
  569. },
  570. "output": {
  571. "type": "structure",
  572. "members": {
  573. "Deployment": {
  574. "type": "structure",
  575. "members": {
  576. "Associations": {
  577. "shape": "S46"
  578. }
  579. }
  580. }
  581. }
  582. }
  583. },
  584. "DeregisterWorkspaceDirectory": {
  585. "input": {
  586. "type": "structure",
  587. "required": [
  588. "DirectoryId"
  589. ],
  590. "members": {
  591. "DirectoryId": {}
  592. }
  593. },
  594. "output": {
  595. "type": "structure",
  596. "members": {}
  597. }
  598. },
  599. "DescribeAccount": {
  600. "input": {
  601. "type": "structure",
  602. "members": {}
  603. },
  604. "output": {
  605. "type": "structure",
  606. "members": {
  607. "DedicatedTenancySupport": {},
  608. "DedicatedTenancyManagementCidrRange": {},
  609. "DedicatedTenancyAccountType": {}
  610. }
  611. }
  612. },
  613. "DescribeAccountModifications": {
  614. "input": {
  615. "type": "structure",
  616. "members": {
  617. "NextToken": {}
  618. }
  619. },
  620. "output": {
  621. "type": "structure",
  622. "members": {
  623. "AccountModifications": {
  624. "type": "list",
  625. "member": {
  626. "type": "structure",
  627. "members": {
  628. "ModificationState": {},
  629. "DedicatedTenancySupport": {},
  630. "DedicatedTenancyManagementCidrRange": {},
  631. "StartTime": {
  632. "type": "timestamp"
  633. },
  634. "ErrorCode": {},
  635. "ErrorMessage": {}
  636. }
  637. }
  638. },
  639. "NextToken": {}
  640. }
  641. }
  642. },
  643. "DescribeApplicationAssociations": {
  644. "input": {
  645. "type": "structure",
  646. "required": [
  647. "ApplicationId",
  648. "AssociatedResourceTypes"
  649. ],
  650. "members": {
  651. "MaxResults": {
  652. "type": "integer"
  653. },
  654. "NextToken": {},
  655. "ApplicationId": {},
  656. "AssociatedResourceTypes": {
  657. "type": "list",
  658. "member": {}
  659. }
  660. }
  661. },
  662. "output": {
  663. "type": "structure",
  664. "members": {
  665. "Associations": {
  666. "type": "list",
  667. "member": {
  668. "type": "structure",
  669. "members": {
  670. "ApplicationId": {},
  671. "AssociatedResourceId": {},
  672. "AssociatedResourceType": {},
  673. "Created": {
  674. "type": "timestamp"
  675. },
  676. "LastUpdatedTime": {
  677. "type": "timestamp"
  678. },
  679. "State": {},
  680. "StateReason": {
  681. "shape": "Sq"
  682. }
  683. }
  684. }
  685. },
  686. "NextToken": {}
  687. }
  688. }
  689. },
  690. "DescribeApplications": {
  691. "input": {
  692. "type": "structure",
  693. "members": {
  694. "ApplicationIds": {
  695. "type": "list",
  696. "member": {}
  697. },
  698. "ComputeTypeNames": {
  699. "shape": "S4t"
  700. },
  701. "LicenseType": {},
  702. "OperatingSystemNames": {
  703. "shape": "S4v"
  704. },
  705. "Owner": {},
  706. "MaxResults": {
  707. "type": "integer"
  708. },
  709. "NextToken": {}
  710. }
  711. },
  712. "output": {
  713. "type": "structure",
  714. "members": {
  715. "Applications": {
  716. "type": "list",
  717. "member": {
  718. "type": "structure",
  719. "members": {
  720. "ApplicationId": {},
  721. "Created": {
  722. "type": "timestamp"
  723. },
  724. "Description": {},
  725. "LicenseType": {},
  726. "Name": {},
  727. "Owner": {},
  728. "State": {},
  729. "SupportedComputeTypeNames": {
  730. "shape": "S4t"
  731. },
  732. "SupportedOperatingSystemNames": {
  733. "shape": "S4v"
  734. }
  735. }
  736. }
  737. },
  738. "NextToken": {}
  739. }
  740. }
  741. },
  742. "DescribeBundleAssociations": {
  743. "input": {
  744. "type": "structure",
  745. "required": [
  746. "BundleId",
  747. "AssociatedResourceTypes"
  748. ],
  749. "members": {
  750. "BundleId": {},
  751. "AssociatedResourceTypes": {
  752. "type": "list",
  753. "member": {}
  754. }
  755. }
  756. },
  757. "output": {
  758. "type": "structure",
  759. "members": {
  760. "Associations": {
  761. "type": "list",
  762. "member": {
  763. "type": "structure",
  764. "members": {
  765. "AssociatedResourceId": {},
  766. "AssociatedResourceType": {},
  767. "BundleId": {},
  768. "Created": {
  769. "type": "timestamp"
  770. },
  771. "LastUpdatedTime": {
  772. "type": "timestamp"
  773. },
  774. "State": {},
  775. "StateReason": {
  776. "shape": "Sq"
  777. }
  778. }
  779. }
  780. }
  781. }
  782. }
  783. },
  784. "DescribeClientBranding": {
  785. "input": {
  786. "type": "structure",
  787. "required": [
  788. "ResourceId"
  789. ],
  790. "members": {
  791. "ResourceId": {}
  792. }
  793. },
  794. "output": {
  795. "type": "structure",
  796. "members": {
  797. "DeviceTypeWindows": {
  798. "shape": "S59"
  799. },
  800. "DeviceTypeOsx": {
  801. "shape": "S59"
  802. },
  803. "DeviceTypeAndroid": {
  804. "shape": "S59"
  805. },
  806. "DeviceTypeIos": {
  807. "shape": "S5f"
  808. },
  809. "DeviceTypeLinux": {
  810. "shape": "S59"
  811. },
  812. "DeviceTypeWeb": {
  813. "shape": "S59"
  814. }
  815. }
  816. }
  817. },
  818. "DescribeClientProperties": {
  819. "input": {
  820. "type": "structure",
  821. "required": [
  822. "ResourceIds"
  823. ],
  824. "members": {
  825. "ResourceIds": {
  826. "type": "list",
  827. "member": {}
  828. }
  829. }
  830. },
  831. "output": {
  832. "type": "structure",
  833. "members": {
  834. "ClientPropertiesList": {
  835. "type": "list",
  836. "member": {
  837. "type": "structure",
  838. "members": {
  839. "ResourceId": {},
  840. "ClientProperties": {
  841. "shape": "S5l"
  842. }
  843. }
  844. }
  845. }
  846. }
  847. }
  848. },
  849. "DescribeConnectClientAddIns": {
  850. "input": {
  851. "type": "structure",
  852. "required": [
  853. "ResourceId"
  854. ],
  855. "members": {
  856. "ResourceId": {},
  857. "NextToken": {},
  858. "MaxResults": {
  859. "type": "integer"
  860. }
  861. }
  862. },
  863. "output": {
  864. "type": "structure",
  865. "members": {
  866. "AddIns": {
  867. "type": "list",
  868. "member": {
  869. "type": "structure",
  870. "members": {
  871. "AddInId": {},
  872. "ResourceId": {},
  873. "Name": {},
  874. "URL": {}
  875. }
  876. }
  877. },
  878. "NextToken": {}
  879. }
  880. }
  881. },
  882. "DescribeConnectionAliasPermissions": {
  883. "input": {
  884. "type": "structure",
  885. "required": [
  886. "AliasId"
  887. ],
  888. "members": {
  889. "AliasId": {},
  890. "NextToken": {},
  891. "MaxResults": {
  892. "type": "integer"
  893. }
  894. }
  895. },
  896. "output": {
  897. "type": "structure",
  898. "members": {
  899. "AliasId": {},
  900. "ConnectionAliasPermissions": {
  901. "type": "list",
  902. "member": {
  903. "shape": "S5v"
  904. }
  905. },
  906. "NextToken": {}
  907. }
  908. }
  909. },
  910. "DescribeConnectionAliases": {
  911. "input": {
  912. "type": "structure",
  913. "members": {
  914. "AliasIds": {
  915. "type": "list",
  916. "member": {}
  917. },
  918. "ResourceId": {},
  919. "Limit": {
  920. "type": "integer"
  921. },
  922. "NextToken": {}
  923. }
  924. },
  925. "output": {
  926. "type": "structure",
  927. "members": {
  928. "ConnectionAliases": {
  929. "type": "list",
  930. "member": {
  931. "type": "structure",
  932. "members": {
  933. "ConnectionString": {},
  934. "AliasId": {},
  935. "State": {},
  936. "OwnerAccountId": {},
  937. "Associations": {
  938. "type": "list",
  939. "member": {
  940. "type": "structure",
  941. "members": {
  942. "AssociationStatus": {},
  943. "AssociatedAccountId": {},
  944. "ResourceId": {},
  945. "ConnectionIdentifier": {}
  946. }
  947. }
  948. }
  949. }
  950. }
  951. },
  952. "NextToken": {}
  953. }
  954. }
  955. },
  956. "DescribeImageAssociations": {
  957. "input": {
  958. "type": "structure",
  959. "required": [
  960. "ImageId",
  961. "AssociatedResourceTypes"
  962. ],
  963. "members": {
  964. "ImageId": {},
  965. "AssociatedResourceTypes": {
  966. "type": "list",
  967. "member": {}
  968. }
  969. }
  970. },
  971. "output": {
  972. "type": "structure",
  973. "members": {
  974. "Associations": {
  975. "type": "list",
  976. "member": {
  977. "type": "structure",
  978. "members": {
  979. "AssociatedResourceId": {},
  980. "AssociatedResourceType": {},
  981. "Created": {
  982. "type": "timestamp"
  983. },
  984. "LastUpdatedTime": {
  985. "type": "timestamp"
  986. },
  987. "ImageId": {},
  988. "State": {},
  989. "StateReason": {
  990. "shape": "Sq"
  991. }
  992. }
  993. }
  994. }
  995. }
  996. }
  997. },
  998. "DescribeIpGroups": {
  999. "input": {
  1000. "type": "structure",
  1001. "members": {
  1002. "GroupIds": {
  1003. "shape": "Sf"
  1004. },
  1005. "NextToken": {},
  1006. "MaxResults": {
  1007. "type": "integer"
  1008. }
  1009. }
  1010. },
  1011. "output": {
  1012. "type": "structure",
  1013. "members": {
  1014. "Result": {
  1015. "type": "list",
  1016. "member": {
  1017. "type": "structure",
  1018. "members": {
  1019. "groupId": {},
  1020. "groupName": {},
  1021. "groupDesc": {},
  1022. "userRules": {
  1023. "shape": "Su"
  1024. }
  1025. }
  1026. }
  1027. },
  1028. "NextToken": {}
  1029. }
  1030. }
  1031. },
  1032. "DescribeTags": {
  1033. "input": {
  1034. "type": "structure",
  1035. "required": [
  1036. "ResourceId"
  1037. ],
  1038. "members": {
  1039. "ResourceId": {}
  1040. }
  1041. },
  1042. "output": {
  1043. "type": "structure",
  1044. "members": {
  1045. "TagList": {
  1046. "shape": "S14"
  1047. }
  1048. }
  1049. }
  1050. },
  1051. "DescribeWorkspaceAssociations": {
  1052. "input": {
  1053. "type": "structure",
  1054. "required": [
  1055. "WorkspaceId",
  1056. "AssociatedResourceTypes"
  1057. ],
  1058. "members": {
  1059. "WorkspaceId": {},
  1060. "AssociatedResourceTypes": {
  1061. "type": "list",
  1062. "member": {}
  1063. }
  1064. }
  1065. },
  1066. "output": {
  1067. "type": "structure",
  1068. "members": {
  1069. "Associations": {
  1070. "shape": "S46"
  1071. }
  1072. }
  1073. }
  1074. },
  1075. "DescribeWorkspaceBundles": {
  1076. "input": {
  1077. "type": "structure",
  1078. "members": {
  1079. "BundleIds": {
  1080. "type": "list",
  1081. "member": {}
  1082. },
  1083. "Owner": {},
  1084. "NextToken": {}
  1085. }
  1086. },
  1087. "output": {
  1088. "type": "structure",
  1089. "members": {
  1090. "Bundles": {
  1091. "type": "list",
  1092. "member": {
  1093. "shape": "S2d"
  1094. }
  1095. },
  1096. "NextToken": {}
  1097. }
  1098. }
  1099. },
  1100. "DescribeWorkspaceDirectories": {
  1101. "input": {
  1102. "type": "structure",
  1103. "members": {
  1104. "DirectoryIds": {
  1105. "type": "list",
  1106. "member": {}
  1107. },
  1108. "Limit": {
  1109. "type": "integer"
  1110. },
  1111. "NextToken": {}
  1112. }
  1113. },
  1114. "output": {
  1115. "type": "structure",
  1116. "members": {
  1117. "Directories": {
  1118. "type": "list",
  1119. "member": {
  1120. "type": "structure",
  1121. "members": {
  1122. "DirectoryId": {},
  1123. "Alias": {},
  1124. "DirectoryName": {},
  1125. "RegistrationCode": {},
  1126. "SubnetIds": {
  1127. "shape": "S6w"
  1128. },
  1129. "DnsIpAddresses": {
  1130. "type": "list",
  1131. "member": {}
  1132. },
  1133. "CustomerUserName": {},
  1134. "IamRoleId": {},
  1135. "DirectoryType": {},
  1136. "WorkspaceSecurityGroupId": {},
  1137. "State": {},
  1138. "WorkspaceCreationProperties": {
  1139. "type": "structure",
  1140. "members": {
  1141. "EnableWorkDocs": {
  1142. "type": "boolean"
  1143. },
  1144. "EnableInternetAccess": {
  1145. "type": "boolean"
  1146. },
  1147. "DefaultOu": {},
  1148. "CustomSecurityGroupId": {},
  1149. "UserEnabledAsLocalAdministrator": {
  1150. "type": "boolean"
  1151. },
  1152. "EnableMaintenanceMode": {
  1153. "type": "boolean"
  1154. }
  1155. }
  1156. },
  1157. "ipGroupIds": {
  1158. "shape": "Sf"
  1159. },
  1160. "WorkspaceAccessProperties": {
  1161. "shape": "S74"
  1162. },
  1163. "Tenancy": {},
  1164. "SelfservicePermissions": {
  1165. "shape": "S77"
  1166. },
  1167. "SamlProperties": {
  1168. "shape": "S78"
  1169. },
  1170. "CertificateBasedAuthProperties": {
  1171. "shape": "S7b"
  1172. }
  1173. }
  1174. }
  1175. },
  1176. "NextToken": {}
  1177. }
  1178. }
  1179. },
  1180. "DescribeWorkspaceImagePermissions": {
  1181. "input": {
  1182. "type": "structure",
  1183. "required": [
  1184. "ImageId"
  1185. ],
  1186. "members": {
  1187. "ImageId": {},
  1188. "NextToken": {},
  1189. "MaxResults": {
  1190. "type": "integer"
  1191. }
  1192. }
  1193. },
  1194. "output": {
  1195. "type": "structure",
  1196. "members": {
  1197. "ImageId": {},
  1198. "ImagePermissions": {
  1199. "type": "list",
  1200. "member": {
  1201. "type": "structure",
  1202. "members": {
  1203. "SharedAccountId": {}
  1204. }
  1205. }
  1206. },
  1207. "NextToken": {}
  1208. }
  1209. }
  1210. },
  1211. "DescribeWorkspaceImages": {
  1212. "input": {
  1213. "type": "structure",
  1214. "members": {
  1215. "ImageIds": {
  1216. "type": "list",
  1217. "member": {}
  1218. },
  1219. "ImageType": {},
  1220. "NextToken": {},
  1221. "MaxResults": {
  1222. "type": "integer"
  1223. }
  1224. }
  1225. },
  1226. "output": {
  1227. "type": "structure",
  1228. "members": {
  1229. "Images": {
  1230. "type": "list",
  1231. "member": {
  1232. "type": "structure",
  1233. "members": {
  1234. "ImageId": {},
  1235. "Name": {},
  1236. "Description": {},
  1237. "OperatingSystem": {
  1238. "shape": "S2k"
  1239. },
  1240. "State": {},
  1241. "RequiredTenancy": {},
  1242. "ErrorCode": {},
  1243. "ErrorMessage": {},
  1244. "Created": {
  1245. "type": "timestamp"
  1246. },
  1247. "OwnerAccountId": {},
  1248. "Updates": {
  1249. "type": "structure",
  1250. "members": {
  1251. "UpdateAvailable": {
  1252. "type": "boolean"
  1253. },
  1254. "Description": {}
  1255. }
  1256. },
  1257. "ErrorDetails": {
  1258. "type": "list",
  1259. "member": {
  1260. "type": "structure",
  1261. "members": {
  1262. "ErrorCode": {},
  1263. "ErrorMessage": {}
  1264. }
  1265. }
  1266. }
  1267. }
  1268. }
  1269. },
  1270. "NextToken": {}
  1271. }
  1272. }
  1273. },
  1274. "DescribeWorkspaceSnapshots": {
  1275. "input": {
  1276. "type": "structure",
  1277. "required": [
  1278. "WorkspaceId"
  1279. ],
  1280. "members": {
  1281. "WorkspaceId": {}
  1282. }
  1283. },
  1284. "output": {
  1285. "type": "structure",
  1286. "members": {
  1287. "RebuildSnapshots": {
  1288. "shape": "S7w"
  1289. },
  1290. "RestoreSnapshots": {
  1291. "shape": "S7w"
  1292. }
  1293. }
  1294. }
  1295. },
  1296. "DescribeWorkspaces": {
  1297. "input": {
  1298. "type": "structure",
  1299. "members": {
  1300. "WorkspaceIds": {
  1301. "shape": "S7z"
  1302. },
  1303. "DirectoryId": {},
  1304. "UserName": {},
  1305. "BundleId": {},
  1306. "Limit": {
  1307. "type": "integer"
  1308. },
  1309. "NextToken": {},
  1310. "WorkspaceName": {}
  1311. }
  1312. },
  1313. "output": {
  1314. "type": "structure",
  1315. "members": {
  1316. "Workspaces": {
  1317. "shape": "S35"
  1318. },
  1319. "NextToken": {}
  1320. }
  1321. }
  1322. },
  1323. "DescribeWorkspacesConnectionStatus": {
  1324. "input": {
  1325. "type": "structure",
  1326. "members": {
  1327. "WorkspaceIds": {
  1328. "shape": "S7z"
  1329. },
  1330. "NextToken": {}
  1331. }
  1332. },
  1333. "output": {
  1334. "type": "structure",
  1335. "members": {
  1336. "WorkspacesConnectionStatus": {
  1337. "type": "list",
  1338. "member": {
  1339. "type": "structure",
  1340. "members": {
  1341. "WorkspaceId": {},
  1342. "ConnectionState": {},
  1343. "ConnectionStateCheckTimestamp": {
  1344. "type": "timestamp"
  1345. },
  1346. "LastKnownUserConnectionTimestamp": {
  1347. "type": "timestamp"
  1348. }
  1349. }
  1350. }
  1351. },
  1352. "NextToken": {}
  1353. }
  1354. }
  1355. },
  1356. "DisassociateConnectionAlias": {
  1357. "input": {
  1358. "type": "structure",
  1359. "required": [
  1360. "AliasId"
  1361. ],
  1362. "members": {
  1363. "AliasId": {}
  1364. }
  1365. },
  1366. "output": {
  1367. "type": "structure",
  1368. "members": {}
  1369. }
  1370. },
  1371. "DisassociateIpGroups": {
  1372. "input": {
  1373. "type": "structure",
  1374. "required": [
  1375. "DirectoryId",
  1376. "GroupIds"
  1377. ],
  1378. "members": {
  1379. "DirectoryId": {},
  1380. "GroupIds": {
  1381. "shape": "Sf"
  1382. }
  1383. }
  1384. },
  1385. "output": {
  1386. "type": "structure",
  1387. "members": {}
  1388. }
  1389. },
  1390. "DisassociateWorkspaceApplication": {
  1391. "input": {
  1392. "type": "structure",
  1393. "required": [
  1394. "WorkspaceId",
  1395. "ApplicationId"
  1396. ],
  1397. "members": {
  1398. "WorkspaceId": {},
  1399. "ApplicationId": {}
  1400. }
  1401. },
  1402. "output": {
  1403. "type": "structure",
  1404. "members": {
  1405. "Association": {
  1406. "shape": "Sm"
  1407. }
  1408. }
  1409. }
  1410. },
  1411. "GetAccountLink": {
  1412. "input": {
  1413. "type": "structure",
  1414. "members": {
  1415. "LinkId": {},
  1416. "LinkedAccountId": {}
  1417. }
  1418. },
  1419. "output": {
  1420. "type": "structure",
  1421. "members": {
  1422. "AccountLink": {
  1423. "shape": "S5"
  1424. }
  1425. }
  1426. }
  1427. },
  1428. "ImportClientBranding": {
  1429. "input": {
  1430. "type": "structure",
  1431. "required": [
  1432. "ResourceId"
  1433. ],
  1434. "members": {
  1435. "ResourceId": {},
  1436. "DeviceTypeWindows": {
  1437. "shape": "S8f"
  1438. },
  1439. "DeviceTypeOsx": {
  1440. "shape": "S8f"
  1441. },
  1442. "DeviceTypeAndroid": {
  1443. "shape": "S8f"
  1444. },
  1445. "DeviceTypeIos": {
  1446. "type": "structure",
  1447. "members": {
  1448. "Logo": {
  1449. "type": "blob"
  1450. },
  1451. "Logo2x": {
  1452. "type": "blob"
  1453. },
  1454. "Logo3x": {
  1455. "type": "blob"
  1456. },
  1457. "SupportEmail": {},
  1458. "SupportLink": {},
  1459. "ForgotPasswordLink": {},
  1460. "LoginMessage": {
  1461. "shape": "S5c"
  1462. }
  1463. }
  1464. },
  1465. "DeviceTypeLinux": {
  1466. "shape": "S8f"
  1467. },
  1468. "DeviceTypeWeb": {
  1469. "shape": "S8f"
  1470. }
  1471. }
  1472. },
  1473. "output": {
  1474. "type": "structure",
  1475. "members": {
  1476. "DeviceTypeWindows": {
  1477. "shape": "S59"
  1478. },
  1479. "DeviceTypeOsx": {
  1480. "shape": "S59"
  1481. },
  1482. "DeviceTypeAndroid": {
  1483. "shape": "S59"
  1484. },
  1485. "DeviceTypeIos": {
  1486. "shape": "S5f"
  1487. },
  1488. "DeviceTypeLinux": {
  1489. "shape": "S59"
  1490. },
  1491. "DeviceTypeWeb": {
  1492. "shape": "S59"
  1493. }
  1494. }
  1495. }
  1496. },
  1497. "ImportWorkspaceImage": {
  1498. "input": {
  1499. "type": "structure",
  1500. "required": [
  1501. "Ec2ImageId",
  1502. "IngestionProcess",
  1503. "ImageName",
  1504. "ImageDescription"
  1505. ],
  1506. "members": {
  1507. "Ec2ImageId": {},
  1508. "IngestionProcess": {},
  1509. "ImageName": {},
  1510. "ImageDescription": {},
  1511. "Tags": {
  1512. "shape": "S14"
  1513. },
  1514. "Applications": {
  1515. "type": "list",
  1516. "member": {}
  1517. }
  1518. }
  1519. },
  1520. "output": {
  1521. "type": "structure",
  1522. "members": {
  1523. "ImageId": {}
  1524. }
  1525. }
  1526. },
  1527. "ListAccountLinks": {
  1528. "input": {
  1529. "type": "structure",
  1530. "members": {
  1531. "LinkStatusFilter": {
  1532. "type": "list",
  1533. "member": {}
  1534. },
  1535. "NextToken": {},
  1536. "MaxResults": {
  1537. "type": "integer"
  1538. }
  1539. }
  1540. },
  1541. "output": {
  1542. "type": "structure",
  1543. "members": {
  1544. "AccountLinks": {
  1545. "type": "list",
  1546. "member": {
  1547. "shape": "S5"
  1548. }
  1549. },
  1550. "NextToken": {}
  1551. }
  1552. }
  1553. },
  1554. "ListAvailableManagementCidrRanges": {
  1555. "input": {
  1556. "type": "structure",
  1557. "required": [
  1558. "ManagementCidrRangeConstraint"
  1559. ],
  1560. "members": {
  1561. "ManagementCidrRangeConstraint": {},
  1562. "MaxResults": {
  1563. "type": "integer"
  1564. },
  1565. "NextToken": {}
  1566. }
  1567. },
  1568. "output": {
  1569. "type": "structure",
  1570. "members": {
  1571. "ManagementCidrRanges": {
  1572. "type": "list",
  1573. "member": {}
  1574. },
  1575. "NextToken": {}
  1576. }
  1577. }
  1578. },
  1579. "MigrateWorkspace": {
  1580. "input": {
  1581. "type": "structure",
  1582. "required": [
  1583. "SourceWorkspaceId",
  1584. "BundleId"
  1585. ],
  1586. "members": {
  1587. "SourceWorkspaceId": {},
  1588. "BundleId": {}
  1589. }
  1590. },
  1591. "output": {
  1592. "type": "structure",
  1593. "members": {
  1594. "SourceWorkspaceId": {},
  1595. "TargetWorkspaceId": {}
  1596. }
  1597. }
  1598. },
  1599. "ModifyAccount": {
  1600. "input": {
  1601. "type": "structure",
  1602. "members": {
  1603. "DedicatedTenancySupport": {},
  1604. "DedicatedTenancyManagementCidrRange": {}
  1605. }
  1606. },
  1607. "output": {
  1608. "type": "structure",
  1609. "members": {}
  1610. }
  1611. },
  1612. "ModifyCertificateBasedAuthProperties": {
  1613. "input": {
  1614. "type": "structure",
  1615. "required": [
  1616. "ResourceId"
  1617. ],
  1618. "members": {
  1619. "ResourceId": {},
  1620. "CertificateBasedAuthProperties": {
  1621. "shape": "S7b"
  1622. },
  1623. "PropertiesToDelete": {
  1624. "type": "list",
  1625. "member": {}
  1626. }
  1627. }
  1628. },
  1629. "output": {
  1630. "type": "structure",
  1631. "members": {}
  1632. }
  1633. },
  1634. "ModifyClientProperties": {
  1635. "input": {
  1636. "type": "structure",
  1637. "required": [
  1638. "ResourceId",
  1639. "ClientProperties"
  1640. ],
  1641. "members": {
  1642. "ResourceId": {},
  1643. "ClientProperties": {
  1644. "shape": "S5l"
  1645. }
  1646. }
  1647. },
  1648. "output": {
  1649. "type": "structure",
  1650. "members": {}
  1651. }
  1652. },
  1653. "ModifySamlProperties": {
  1654. "input": {
  1655. "type": "structure",
  1656. "required": [
  1657. "ResourceId"
  1658. ],
  1659. "members": {
  1660. "ResourceId": {},
  1661. "SamlProperties": {
  1662. "shape": "S78"
  1663. },
  1664. "PropertiesToDelete": {
  1665. "type": "list",
  1666. "member": {}
  1667. }
  1668. }
  1669. },
  1670. "output": {
  1671. "type": "structure",
  1672. "members": {}
  1673. }
  1674. },
  1675. "ModifySelfservicePermissions": {
  1676. "input": {
  1677. "type": "structure",
  1678. "required": [
  1679. "ResourceId",
  1680. "SelfservicePermissions"
  1681. ],
  1682. "members": {
  1683. "ResourceId": {},
  1684. "SelfservicePermissions": {
  1685. "shape": "S77"
  1686. }
  1687. }
  1688. },
  1689. "output": {
  1690. "type": "structure",
  1691. "members": {}
  1692. }
  1693. },
  1694. "ModifyWorkspaceAccessProperties": {
  1695. "input": {
  1696. "type": "structure",
  1697. "required": [
  1698. "ResourceId",
  1699. "WorkspaceAccessProperties"
  1700. ],
  1701. "members": {
  1702. "ResourceId": {},
  1703. "WorkspaceAccessProperties": {
  1704. "shape": "S74"
  1705. }
  1706. }
  1707. },
  1708. "output": {
  1709. "type": "structure",
  1710. "members": {}
  1711. }
  1712. },
  1713. "ModifyWorkspaceCreationProperties": {
  1714. "input": {
  1715. "type": "structure",
  1716. "required": [
  1717. "ResourceId",
  1718. "WorkspaceCreationProperties"
  1719. ],
  1720. "members": {
  1721. "ResourceId": {},
  1722. "WorkspaceCreationProperties": {
  1723. "type": "structure",
  1724. "members": {
  1725. "EnableWorkDocs": {
  1726. "type": "boolean"
  1727. },
  1728. "EnableInternetAccess": {
  1729. "type": "boolean"
  1730. },
  1731. "DefaultOu": {},
  1732. "CustomSecurityGroupId": {},
  1733. "UserEnabledAsLocalAdministrator": {
  1734. "type": "boolean"
  1735. },
  1736. "EnableMaintenanceMode": {
  1737. "type": "boolean"
  1738. }
  1739. }
  1740. }
  1741. }
  1742. },
  1743. "output": {
  1744. "type": "structure",
  1745. "members": {}
  1746. }
  1747. },
  1748. "ModifyWorkspaceProperties": {
  1749. "input": {
  1750. "type": "structure",
  1751. "required": [
  1752. "WorkspaceId"
  1753. ],
  1754. "members": {
  1755. "WorkspaceId": {},
  1756. "WorkspaceProperties": {
  1757. "shape": "S2s"
  1758. },
  1759. "DataReplication": {}
  1760. }
  1761. },
  1762. "output": {
  1763. "type": "structure",
  1764. "members": {}
  1765. }
  1766. },
  1767. "ModifyWorkspaceState": {
  1768. "input": {
  1769. "type": "structure",
  1770. "required": [
  1771. "WorkspaceId",
  1772. "WorkspaceState"
  1773. ],
  1774. "members": {
  1775. "WorkspaceId": {},
  1776. "WorkspaceState": {}
  1777. }
  1778. },
  1779. "output": {
  1780. "type": "structure",
  1781. "members": {}
  1782. }
  1783. },
  1784. "RebootWorkspaces": {
  1785. "input": {
  1786. "type": "structure",
  1787. "required": [
  1788. "RebootWorkspaceRequests"
  1789. ],
  1790. "members": {
  1791. "RebootWorkspaceRequests": {
  1792. "type": "list",
  1793. "member": {
  1794. "type": "structure",
  1795. "required": [
  1796. "WorkspaceId"
  1797. ],
  1798. "members": {
  1799. "WorkspaceId": {}
  1800. }
  1801. }
  1802. }
  1803. }
  1804. },
  1805. "output": {
  1806. "type": "structure",
  1807. "members": {
  1808. "FailedRequests": {
  1809. "type": "list",
  1810. "member": {
  1811. "shape": "S9x"
  1812. }
  1813. }
  1814. }
  1815. }
  1816. },
  1817. "RebuildWorkspaces": {
  1818. "input": {
  1819. "type": "structure",
  1820. "required": [
  1821. "RebuildWorkspaceRequests"
  1822. ],
  1823. "members": {
  1824. "RebuildWorkspaceRequests": {
  1825. "type": "list",
  1826. "member": {
  1827. "type": "structure",
  1828. "required": [
  1829. "WorkspaceId"
  1830. ],
  1831. "members": {
  1832. "WorkspaceId": {}
  1833. }
  1834. }
  1835. }
  1836. }
  1837. },
  1838. "output": {
  1839. "type": "structure",
  1840. "members": {
  1841. "FailedRequests": {
  1842. "type": "list",
  1843. "member": {
  1844. "shape": "S9x"
  1845. }
  1846. }
  1847. }
  1848. }
  1849. },
  1850. "RegisterWorkspaceDirectory": {
  1851. "input": {
  1852. "type": "structure",
  1853. "required": [
  1854. "DirectoryId",
  1855. "EnableWorkDocs"
  1856. ],
  1857. "members": {
  1858. "DirectoryId": {},
  1859. "SubnetIds": {
  1860. "shape": "S6w"
  1861. },
  1862. "EnableWorkDocs": {
  1863. "type": "boolean"
  1864. },
  1865. "EnableSelfService": {
  1866. "type": "boolean"
  1867. },
  1868. "Tenancy": {},
  1869. "Tags": {
  1870. "shape": "S14"
  1871. }
  1872. }
  1873. },
  1874. "output": {
  1875. "type": "structure",
  1876. "members": {}
  1877. }
  1878. },
  1879. "RejectAccountLinkInvitation": {
  1880. "input": {
  1881. "type": "structure",
  1882. "required": [
  1883. "LinkId"
  1884. ],
  1885. "members": {
  1886. "LinkId": {},
  1887. "ClientToken": {}
  1888. }
  1889. },
  1890. "output": {
  1891. "type": "structure",
  1892. "members": {
  1893. "AccountLink": {
  1894. "shape": "S5"
  1895. }
  1896. }
  1897. }
  1898. },
  1899. "RestoreWorkspace": {
  1900. "input": {
  1901. "type": "structure",
  1902. "required": [
  1903. "WorkspaceId"
  1904. ],
  1905. "members": {
  1906. "WorkspaceId": {}
  1907. }
  1908. },
  1909. "output": {
  1910. "type": "structure",
  1911. "members": {}
  1912. }
  1913. },
  1914. "RevokeIpRules": {
  1915. "input": {
  1916. "type": "structure",
  1917. "required": [
  1918. "GroupId",
  1919. "UserRules"
  1920. ],
  1921. "members": {
  1922. "GroupId": {},
  1923. "UserRules": {
  1924. "type": "list",
  1925. "member": {}
  1926. }
  1927. }
  1928. },
  1929. "output": {
  1930. "type": "structure",
  1931. "members": {}
  1932. }
  1933. },
  1934. "StartWorkspaces": {
  1935. "input": {
  1936. "type": "structure",
  1937. "required": [
  1938. "StartWorkspaceRequests"
  1939. ],
  1940. "members": {
  1941. "StartWorkspaceRequests": {
  1942. "type": "list",
  1943. "member": {
  1944. "type": "structure",
  1945. "members": {
  1946. "WorkspaceId": {}
  1947. }
  1948. }
  1949. }
  1950. }
  1951. },
  1952. "output": {
  1953. "type": "structure",
  1954. "members": {
  1955. "FailedRequests": {
  1956. "type": "list",
  1957. "member": {
  1958. "shape": "S9x"
  1959. }
  1960. }
  1961. }
  1962. }
  1963. },
  1964. "StopWorkspaces": {
  1965. "input": {
  1966. "type": "structure",
  1967. "required": [
  1968. "StopWorkspaceRequests"
  1969. ],
  1970. "members": {
  1971. "StopWorkspaceRequests": {
  1972. "type": "list",
  1973. "member": {
  1974. "type": "structure",
  1975. "members": {
  1976. "WorkspaceId": {}
  1977. }
  1978. }
  1979. }
  1980. }
  1981. },
  1982. "output": {
  1983. "type": "structure",
  1984. "members": {
  1985. "FailedRequests": {
  1986. "type": "list",
  1987. "member": {
  1988. "shape": "S9x"
  1989. }
  1990. }
  1991. }
  1992. }
  1993. },
  1994. "TerminateWorkspaces": {
  1995. "input": {
  1996. "type": "structure",
  1997. "required": [
  1998. "TerminateWorkspaceRequests"
  1999. ],
  2000. "members": {
  2001. "TerminateWorkspaceRequests": {
  2002. "type": "list",
  2003. "member": {
  2004. "type": "structure",
  2005. "required": [
  2006. "WorkspaceId"
  2007. ],
  2008. "members": {
  2009. "WorkspaceId": {}
  2010. }
  2011. }
  2012. }
  2013. }
  2014. },
  2015. "output": {
  2016. "type": "structure",
  2017. "members": {
  2018. "FailedRequests": {
  2019. "type": "list",
  2020. "member": {
  2021. "shape": "S9x"
  2022. }
  2023. }
  2024. }
  2025. }
  2026. },
  2027. "UpdateConnectClientAddIn": {
  2028. "input": {
  2029. "type": "structure",
  2030. "required": [
  2031. "AddInId",
  2032. "ResourceId"
  2033. ],
  2034. "members": {
  2035. "AddInId": {},
  2036. "ResourceId": {},
  2037. "Name": {},
  2038. "URL": {}
  2039. }
  2040. },
  2041. "output": {
  2042. "type": "structure",
  2043. "members": {}
  2044. }
  2045. },
  2046. "UpdateConnectionAliasPermission": {
  2047. "input": {
  2048. "type": "structure",
  2049. "required": [
  2050. "AliasId",
  2051. "ConnectionAliasPermission"
  2052. ],
  2053. "members": {
  2054. "AliasId": {},
  2055. "ConnectionAliasPermission": {
  2056. "shape": "S5v"
  2057. }
  2058. }
  2059. },
  2060. "output": {
  2061. "type": "structure",
  2062. "members": {}
  2063. }
  2064. },
  2065. "UpdateRulesOfIpGroup": {
  2066. "input": {
  2067. "type": "structure",
  2068. "required": [
  2069. "GroupId",
  2070. "UserRules"
  2071. ],
  2072. "members": {
  2073. "GroupId": {},
  2074. "UserRules": {
  2075. "shape": "Su"
  2076. }
  2077. }
  2078. },
  2079. "output": {
  2080. "type": "structure",
  2081. "members": {}
  2082. }
  2083. },
  2084. "UpdateWorkspaceBundle": {
  2085. "input": {
  2086. "type": "structure",
  2087. "members": {
  2088. "BundleId": {},
  2089. "ImageId": {}
  2090. }
  2091. },
  2092. "output": {
  2093. "type": "structure",
  2094. "members": {}
  2095. }
  2096. },
  2097. "UpdateWorkspaceImagePermission": {
  2098. "input": {
  2099. "type": "structure",
  2100. "required": [
  2101. "ImageId",
  2102. "AllowCopyImage",
  2103. "SharedAccountId"
  2104. ],
  2105. "members": {
  2106. "ImageId": {},
  2107. "AllowCopyImage": {
  2108. "type": "boolean"
  2109. },
  2110. "SharedAccountId": {}
  2111. }
  2112. },
  2113. "output": {
  2114. "type": "structure",
  2115. "members": {}
  2116. }
  2117. }
  2118. },
  2119. "shapes": {
  2120. "S5": {
  2121. "type": "structure",
  2122. "members": {
  2123. "AccountLinkId": {},
  2124. "AccountLinkStatus": {},
  2125. "SourceAccountId": {},
  2126. "TargetAccountId": {}
  2127. }
  2128. },
  2129. "Sf": {
  2130. "type": "list",
  2131. "member": {}
  2132. },
  2133. "Sm": {
  2134. "type": "structure",
  2135. "members": {
  2136. "AssociatedResourceId": {},
  2137. "AssociatedResourceType": {},
  2138. "Created": {
  2139. "type": "timestamp"
  2140. },
  2141. "LastUpdatedTime": {
  2142. "type": "timestamp"
  2143. },
  2144. "State": {},
  2145. "StateReason": {
  2146. "shape": "Sq"
  2147. },
  2148. "WorkspaceId": {}
  2149. }
  2150. },
  2151. "Sq": {
  2152. "type": "structure",
  2153. "members": {
  2154. "ErrorCode": {},
  2155. "ErrorMessage": {}
  2156. }
  2157. },
  2158. "Su": {
  2159. "type": "list",
  2160. "member": {
  2161. "type": "structure",
  2162. "members": {
  2163. "ipRule": {},
  2164. "ruleDesc": {}
  2165. }
  2166. }
  2167. },
  2168. "S14": {
  2169. "type": "list",
  2170. "member": {
  2171. "type": "structure",
  2172. "required": [
  2173. "Key"
  2174. ],
  2175. "members": {
  2176. "Key": {},
  2177. "Value": {}
  2178. }
  2179. }
  2180. },
  2181. "S1p": {
  2182. "type": "structure",
  2183. "required": [
  2184. "PrimaryWorkspaceId",
  2185. "DirectoryId"
  2186. ],
  2187. "members": {
  2188. "PrimaryWorkspaceId": {},
  2189. "VolumeEncryptionKey": {},
  2190. "DirectoryId": {},
  2191. "Tags": {
  2192. "shape": "S14"
  2193. },
  2194. "DataReplication": {}
  2195. }
  2196. },
  2197. "S28": {
  2198. "type": "structure",
  2199. "members": {
  2200. "Name": {}
  2201. }
  2202. },
  2203. "S2a": {
  2204. "type": "structure",
  2205. "members": {
  2206. "Capacity": {}
  2207. }
  2208. },
  2209. "S2b": {
  2210. "type": "structure",
  2211. "members": {
  2212. "Capacity": {}
  2213. }
  2214. },
  2215. "S2d": {
  2216. "type": "structure",
  2217. "members": {
  2218. "BundleId": {},
  2219. "Name": {},
  2220. "Owner": {},
  2221. "Description": {},
  2222. "ImageId": {},
  2223. "RootStorage": {
  2224. "shape": "S2b"
  2225. },
  2226. "UserStorage": {
  2227. "shape": "S2a"
  2228. },
  2229. "ComputeType": {
  2230. "shape": "S28"
  2231. },
  2232. "LastUpdatedTime": {
  2233. "type": "timestamp"
  2234. },
  2235. "CreationTime": {
  2236. "type": "timestamp"
  2237. },
  2238. "State": {},
  2239. "BundleType": {}
  2240. }
  2241. },
  2242. "S2k": {
  2243. "type": "structure",
  2244. "members": {
  2245. "Type": {}
  2246. }
  2247. },
  2248. "S2q": {
  2249. "type": "structure",
  2250. "required": [
  2251. "DirectoryId",
  2252. "UserName",
  2253. "BundleId"
  2254. ],
  2255. "members": {
  2256. "DirectoryId": {},
  2257. "UserName": {},
  2258. "BundleId": {},
  2259. "VolumeEncryptionKey": {},
  2260. "UserVolumeEncryptionEnabled": {
  2261. "type": "boolean"
  2262. },
  2263. "RootVolumeEncryptionEnabled": {
  2264. "type": "boolean"
  2265. },
  2266. "WorkspaceProperties": {
  2267. "shape": "S2s"
  2268. },
  2269. "Tags": {
  2270. "shape": "S14"
  2271. },
  2272. "WorkspaceName": {}
  2273. }
  2274. },
  2275. "S2s": {
  2276. "type": "structure",
  2277. "members": {
  2278. "RunningMode": {},
  2279. "RunningModeAutoStopTimeoutInMinutes": {
  2280. "type": "integer"
  2281. },
  2282. "RootVolumeSizeGib": {
  2283. "type": "integer"
  2284. },
  2285. "UserVolumeSizeGib": {
  2286. "type": "integer"
  2287. },
  2288. "ComputeTypeName": {},
  2289. "Protocols": {
  2290. "type": "list",
  2291. "member": {}
  2292. },
  2293. "OperatingSystemName": {}
  2294. }
  2295. },
  2296. "S35": {
  2297. "type": "list",
  2298. "member": {
  2299. "type": "structure",
  2300. "members": {
  2301. "WorkspaceId": {},
  2302. "DirectoryId": {},
  2303. "UserName": {},
  2304. "IpAddress": {},
  2305. "State": {},
  2306. "BundleId": {},
  2307. "SubnetId": {},
  2308. "ErrorMessage": {},
  2309. "ErrorCode": {},
  2310. "ComputerName": {},
  2311. "VolumeEncryptionKey": {},
  2312. "UserVolumeEncryptionEnabled": {
  2313. "type": "boolean"
  2314. },
  2315. "RootVolumeEncryptionEnabled": {
  2316. "type": "boolean"
  2317. },
  2318. "WorkspaceName": {},
  2319. "WorkspaceProperties": {
  2320. "shape": "S2s"
  2321. },
  2322. "ModificationStates": {
  2323. "type": "list",
  2324. "member": {
  2325. "type": "structure",
  2326. "members": {
  2327. "Resource": {},
  2328. "State": {}
  2329. }
  2330. }
  2331. },
  2332. "RelatedWorkspaces": {
  2333. "type": "list",
  2334. "member": {
  2335. "type": "structure",
  2336. "members": {
  2337. "WorkspaceId": {},
  2338. "Region": {},
  2339. "State": {},
  2340. "Type": {}
  2341. }
  2342. }
  2343. },
  2344. "DataReplicationSettings": {
  2345. "type": "structure",
  2346. "members": {
  2347. "DataReplication": {},
  2348. "RecoverySnapshotTime": {
  2349. "type": "timestamp"
  2350. }
  2351. }
  2352. },
  2353. "StandbyWorkspacesProperties": {
  2354. "type": "list",
  2355. "member": {
  2356. "type": "structure",
  2357. "members": {
  2358. "StandbyWorkspaceId": {},
  2359. "DataReplication": {},
  2360. "RecoverySnapshotTime": {
  2361. "type": "timestamp"
  2362. }
  2363. }
  2364. }
  2365. }
  2366. }
  2367. }
  2368. },
  2369. "S46": {
  2370. "type": "list",
  2371. "member": {
  2372. "shape": "Sm"
  2373. }
  2374. },
  2375. "S4t": {
  2376. "type": "list",
  2377. "member": {}
  2378. },
  2379. "S4v": {
  2380. "type": "list",
  2381. "member": {}
  2382. },
  2383. "S59": {
  2384. "type": "structure",
  2385. "members": {
  2386. "LogoUrl": {},
  2387. "SupportEmail": {},
  2388. "SupportLink": {},
  2389. "ForgotPasswordLink": {},
  2390. "LoginMessage": {
  2391. "shape": "S5c"
  2392. }
  2393. }
  2394. },
  2395. "S5c": {
  2396. "type": "map",
  2397. "key": {},
  2398. "value": {}
  2399. },
  2400. "S5f": {
  2401. "type": "structure",
  2402. "members": {
  2403. "LogoUrl": {},
  2404. "Logo2xUrl": {},
  2405. "Logo3xUrl": {},
  2406. "SupportEmail": {},
  2407. "SupportLink": {},
  2408. "ForgotPasswordLink": {},
  2409. "LoginMessage": {
  2410. "shape": "S5c"
  2411. }
  2412. }
  2413. },
  2414. "S5l": {
  2415. "type": "structure",
  2416. "members": {
  2417. "ReconnectEnabled": {},
  2418. "LogUploadEnabled": {}
  2419. }
  2420. },
  2421. "S5v": {
  2422. "type": "structure",
  2423. "required": [
  2424. "SharedAccountId",
  2425. "AllowAssociation"
  2426. ],
  2427. "members": {
  2428. "SharedAccountId": {},
  2429. "AllowAssociation": {
  2430. "type": "boolean"
  2431. }
  2432. }
  2433. },
  2434. "S6w": {
  2435. "type": "list",
  2436. "member": {}
  2437. },
  2438. "S74": {
  2439. "type": "structure",
  2440. "members": {
  2441. "DeviceTypeWindows": {},
  2442. "DeviceTypeOsx": {},
  2443. "DeviceTypeWeb": {},
  2444. "DeviceTypeIos": {},
  2445. "DeviceTypeAndroid": {},
  2446. "DeviceTypeChromeOs": {},
  2447. "DeviceTypeZeroClient": {},
  2448. "DeviceTypeLinux": {}
  2449. }
  2450. },
  2451. "S77": {
  2452. "type": "structure",
  2453. "members": {
  2454. "RestartWorkspace": {},
  2455. "IncreaseVolumeSize": {},
  2456. "ChangeComputeType": {},
  2457. "SwitchRunningMode": {},
  2458. "RebuildWorkspace": {}
  2459. }
  2460. },
  2461. "S78": {
  2462. "type": "structure",
  2463. "members": {
  2464. "Status": {},
  2465. "UserAccessUrl": {},
  2466. "RelayStateParameterName": {}
  2467. }
  2468. },
  2469. "S7b": {
  2470. "type": "structure",
  2471. "members": {
  2472. "Status": {},
  2473. "CertificateAuthorityArn": {}
  2474. }
  2475. },
  2476. "S7w": {
  2477. "type": "list",
  2478. "member": {
  2479. "type": "structure",
  2480. "members": {
  2481. "SnapshotTime": {
  2482. "type": "timestamp"
  2483. }
  2484. }
  2485. }
  2486. },
  2487. "S7z": {
  2488. "type": "list",
  2489. "member": {}
  2490. },
  2491. "S8f": {
  2492. "type": "structure",
  2493. "members": {
  2494. "Logo": {
  2495. "type": "blob"
  2496. },
  2497. "SupportEmail": {},
  2498. "SupportLink": {},
  2499. "ForgotPasswordLink": {},
  2500. "LoginMessage": {
  2501. "shape": "S5c"
  2502. }
  2503. }
  2504. },
  2505. "S9x": {
  2506. "type": "structure",
  2507. "members": {
  2508. "WorkspaceId": {},
  2509. "ErrorCode": {},
  2510. "ErrorMessage": {}
  2511. }
  2512. }
  2513. }
  2514. }