aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,457 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CreateWorkspaces": "<p>Creates one or more WorkSpaces.</p> <note> <p>This operation is asynchronous and returns before the WorkSpaces are created.</p> </note>",
5
- "DescribeWorkspaceBundles": "<p>Obtains information about the WorkSpace bundles that are available to your account in the specified region.</p> <p>You can filter the results with either the <code>BundleIds</code> parameter, or the <code>Owner</code> parameter, but not both.</p> <p>This operation supports pagination with the use of the <code>NextToken</code> request and response parameters. If more results are available, the <code>NextToken</code> response member contains a token that you pass in the next call to this operation to retrieve the next set of items.</p>",
6
- "DescribeWorkspaceDirectories": "<p>Retrieves information about the AWS Directory Service directories in the region that are registered with Amazon WorkSpaces and are available to your account.</p> <p>This operation supports pagination with the use of the <code>NextToken</code> request and response parameters. If more results are available, the <code>NextToken</code> response member contains a token that you pass in the next call to this operation to retrieve the next set of items.</p>",
7
- "DescribeWorkspaces": "<p>Obtains information about the specified WorkSpaces. </p> <p>Only one of the filter parameters, such as <code>BundleId</code>, <code>DirectoryId</code>, or <code>WorkspaceIds</code>, can be specified at a time.</p> <p>This operation supports pagination with the use of the <code>NextToken</code> request and response parameters. If more results are available, the <code>NextToken</code> response member contains a token that you pass in the next call to this operation to retrieve the next set of items.</p>",
8
- "RebootWorkspaces": "<p>Reboots the specified WorkSpaces.</p> <p>To be able to reboot a WorkSpace, the WorkSpace must have a <b>State</b> of <code>AVAILABLE</code>, <code>IMPAIRED</code>, or <code>INOPERABLE</code>.</p> <note> <p>This operation is asynchronous and will return before the WorkSpaces have rebooted.</p> </note>",
9
- "RebuildWorkspaces": "<p>Rebuilds the specified WorkSpaces.</p> <p>Rebuilding a WorkSpace is a potentially destructive action that can result in the loss of data. Rebuilding a WorkSpace causes the following to occur:</p> <ul> <li>The system is restored to the image of the bundle that the WorkSpace is created from. Any applications that have been installed, or system settings that have been made since the WorkSpace was created will be lost.</li> <li>The data drive (D drive) is re-created from the last automatic snapshot taken of the data drive. The current contents of the data drive are overwritten. Automatic snapshots of the data drive are taken every 12 hours, so the snapshot can be as much as 12 hours old.</li> </ul> <p>To be able to rebuild a WorkSpace, the WorkSpace must have a <b>State</b> of <code>AVAILABLE</code> or <code>ERROR</code>.</p> <note> <p>This operation is asynchronous and will return before the WorkSpaces have been completely rebuilt.</p> </note>",
10
- "TerminateWorkspaces": "<p>Terminates the specified WorkSpaces.</p> <p>Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is not maintained and will be destroyed. If you need to archive any user data, contact Amazon Web Services before terminating the WorkSpace.</p> <p>You can terminate a WorkSpace that is in any state except <code>SUSPENDED</code>.</p> <note> <p>This operation is asynchronous and will return before the WorkSpaces have been completely terminated.</p> </note>"
11
- },
12
- "service": "<fullname>Amazon WorkSpaces Service</fullname> <p>This is the <i>Amazon WorkSpaces API Reference</i>. This guide provides detailed information about Amazon WorkSpaces operations, data types, parameters, and errors.</p>",
13
- "shapes": {
14
- "ARN": {
15
- "base": null,
16
- "refs": {
17
- "WorkspaceDirectory$IamRoleId": "<p>The identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.</p>"
18
- }
19
- },
20
- "Alias": {
21
- "base": null,
22
- "refs": {
23
- "WorkspaceDirectory$Alias": "<p>The directory alias.</p>"
24
- }
25
- },
26
- "BooleanObject": {
27
- "base": null,
28
- "refs": {
29
- "DefaultWorkspaceCreationProperties$EnableWorkDocs": "<p>Specifies if the directory is enabled for Amazon WorkDocs.</p>",
30
- "DefaultWorkspaceCreationProperties$EnableInternetAccess": "<p>A public IP address will be attached to all WorkSpaces that are created or rebuilt.</p>",
31
- "DefaultWorkspaceCreationProperties$UserEnabledAsLocalAdministrator": "<p>The WorkSpace user is an administrator on the WorkSpace.</p>"
32
- }
33
- },
34
- "BundleId": {
35
- "base": null,
36
- "refs": {
37
- "BundleIdList$member": null,
38
- "DescribeWorkspacesRequest$BundleId": "<p>The identifier of a bundle to obtain the WorkSpaces for. All WorkSpaces that are created from this bundle will be retrieved. This parameter cannot be combined with any other filter parameter.</p>",
39
- "Workspace$BundleId": "<p>The identifier of the bundle that the WorkSpace was created from.</p>",
40
- "WorkspaceBundle$BundleId": "<p>The bundle identifier.</p>",
41
- "WorkspaceRequest$BundleId": "<p>The identifier of the bundle to create the WorkSpace from. You can use the <a>DescribeWorkspaceBundles</a> operation to obtain a list of the bundles that are available.</p>"
42
- }
43
- },
44
- "BundleIdList": {
45
- "base": null,
46
- "refs": {
47
- "DescribeWorkspaceBundlesRequest$BundleIds": "<p>An array of strings that contains the identifiers of the bundles to retrieve. This parameter cannot be combined with any other filter parameter.</p>"
48
- }
49
- },
50
- "BundleList": {
51
- "base": null,
52
- "refs": {
53
- "DescribeWorkspaceBundlesResult$Bundles": "<p>An array of structures that contain information about the bundles.</p>"
54
- }
55
- },
56
- "BundleOwner": {
57
- "base": null,
58
- "refs": {
59
- "DescribeWorkspaceBundlesRequest$Owner": "<p>The owner of the bundles to retrieve. This parameter cannot be combined with any other filter parameter.</p> <p>This contains one of the following values:</p> <ul> <li>null - Retrieves the bundles that belong to the account making the call.</li> <li> <code>AMAZON</code> - Retrieves the bundles that are provided by AWS.</li> </ul>",
60
- "WorkspaceBundle$Owner": "<p>The owner of the bundle. This contains the owner's account identifier, or <code>AMAZON</code> if the bundle is provided by AWS.</p>"
61
- }
62
- },
63
- "Compute": {
64
- "base": null,
65
- "refs": {
66
- "ComputeType$Name": "<p>The name of the compute type for the bundle.</p>"
67
- }
68
- },
69
- "ComputeType": {
70
- "base": "<p>Contains information about the compute type of a WorkSpace bundle.</p>",
71
- "refs": {
72
- "WorkspaceBundle$ComputeType": "<p>A <a>ComputeType</a> object that specifies the compute type for the bundle.</p>"
73
- }
74
- },
75
- "CreateWorkspacesRequest": {
76
- "base": "<p>Contains the inputs for the <a>CreateWorkspaces</a> operation.</p>",
77
- "refs": {
78
- }
79
- },
80
- "CreateWorkspacesResult": {
81
- "base": "<p>Contains the result of the <a>CreateWorkspaces</a> operation.</p>",
82
- "refs": {
83
- }
84
- },
85
- "DefaultOu": {
86
- "base": null,
87
- "refs": {
88
- "DefaultWorkspaceCreationProperties$DefaultOu": "<p>The organizational unit (OU) in the directory that the WorkSpace machine accounts are placed in.</p>"
89
- }
90
- },
91
- "DefaultWorkspaceCreationProperties": {
92
- "base": "<p>Contains default WorkSpace creation information.</p>",
93
- "refs": {
94
- "WorkspaceDirectory$WorkspaceCreationProperties": "<p>A structure that specifies the default creation properties for all WorkSpaces in the directory.</p>"
95
- }
96
- },
97
- "DescribeWorkspaceBundlesRequest": {
98
- "base": "<p>Contains the inputs for the <a>DescribeWorkspaceBundles</a> operation.</p>",
99
- "refs": {
100
- }
101
- },
102
- "DescribeWorkspaceBundlesResult": {
103
- "base": "<p>Contains the results of the <a>DescribeWorkspaceBundles</a> operation.</p>",
104
- "refs": {
105
- }
106
- },
107
- "DescribeWorkspaceDirectoriesRequest": {
108
- "base": "<p>Contains the inputs for the <a>DescribeWorkspaceDirectories</a> operation.</p>",
109
- "refs": {
110
- }
111
- },
112
- "DescribeWorkspaceDirectoriesResult": {
113
- "base": "<p>Contains the results of the <a>DescribeWorkspaceDirectories</a> operation.</p>",
114
- "refs": {
115
- }
116
- },
117
- "DescribeWorkspacesRequest": {
118
- "base": "<p>Contains the inputs for the <a>DescribeWorkspaces</a> operation.</p>",
119
- "refs": {
120
- }
121
- },
122
- "DescribeWorkspacesResult": {
123
- "base": "<p>Contains the results for the <a>DescribeWorkspaces</a> operation.</p>",
124
- "refs": {
125
- }
126
- },
127
- "Description": {
128
- "base": null,
129
- "refs": {
130
- "FailedCreateWorkspaceRequest$ErrorMessage": "<p>The textual error message.</p>",
131
- "FailedWorkspaceChangeRequest$ErrorMessage": "<p>The textual error message.</p>",
132
- "Workspace$ErrorMessage": "<p>If the WorkSpace could not be created, this contains a textual error message that describes the failure.</p>",
133
- "WorkspaceBundle$Description": "<p>The bundle description.</p>"
134
- }
135
- },
136
- "DirectoryId": {
137
- "base": null,
138
- "refs": {
139
- "DescribeWorkspacesRequest$DirectoryId": "<p>Specifies the directory identifier to which to limit the WorkSpaces. Optionally, you can specify a specific directory user with the <code>UserName</code> parameter. This parameter cannot be combined with any other filter parameter.</p>",
140
- "DirectoryIdList$member": null,
141
- "Workspace$DirectoryId": "<p>The identifier of the AWS Directory Service directory that the WorkSpace belongs to.</p>",
142
- "WorkspaceDirectory$DirectoryId": "<p>The directory identifier.</p>",
143
- "WorkspaceRequest$DirectoryId": "<p>The identifier of the AWS Directory Service directory to create the WorkSpace in. You can use the <a>DescribeWorkspaceDirectories</a> operation to obtain a list of the directories that are available.</p>"
144
- }
145
- },
146
- "DirectoryIdList": {
147
- "base": null,
148
- "refs": {
149
- "DescribeWorkspaceDirectoriesRequest$DirectoryIds": "<p>An array of strings that contains the directory identifiers to retrieve information for. If this member is null, all directories are retrieved.</p>"
150
- }
151
- },
152
- "DirectoryList": {
153
- "base": null,
154
- "refs": {
155
- "DescribeWorkspaceDirectoriesResult$Directories": "<p>An array of structures that contain information about the directories.</p>"
156
- }
157
- },
158
- "DirectoryName": {
159
- "base": null,
160
- "refs": {
161
- "WorkspaceDirectory$DirectoryName": "<p>The name of the directory.</p>"
162
- }
163
- },
164
- "DnsIpAddresses": {
165
- "base": null,
166
- "refs": {
167
- "WorkspaceDirectory$DnsIpAddresses": "<p>An array of strings that contains the IP addresses of the DNS servers for the directory.</p>"
168
- }
169
- },
170
- "ErrorType": {
171
- "base": null,
172
- "refs": {
173
- "FailedCreateWorkspaceRequest$ErrorCode": "<p>The error code.</p>",
174
- "FailedWorkspaceChangeRequest$ErrorCode": "<p>The error code.</p>"
175
- }
176
- },
177
- "ExceptionMessage": {
178
- "base": null,
179
- "refs": {
180
- "InvalidParameterValuesException$message": "<p>The exception error message.</p>",
181
- "ResourceLimitExceededException$message": "<p>The exception error message.</p>",
182
- "ResourceUnavailableException$message": "<p>The exception error message.</p>"
183
- }
184
- },
185
- "FailedCreateWorkspaceRequest": {
186
- "base": "<p>Contains information about a WorkSpace that could not be created.</p>",
187
- "refs": {
188
- "FailedCreateWorkspaceRequests$member": null
189
- }
190
- },
191
- "FailedCreateWorkspaceRequests": {
192
- "base": null,
193
- "refs": {
194
- "CreateWorkspacesResult$FailedRequests": "<p>An array of structures that represent the WorkSpaces that could not be created.</p>"
195
- }
196
- },
197
- "FailedRebootWorkspaceRequests": {
198
- "base": null,
199
- "refs": {
200
- "RebootWorkspacesResult$FailedRequests": "<p>An array of structures that represent any WorkSpaces that could not be rebooted.</p>"
201
- }
202
- },
203
- "FailedRebuildWorkspaceRequests": {
204
- "base": null,
205
- "refs": {
206
- "RebuildWorkspacesResult$FailedRequests": "<p>An array of structures that represent any WorkSpaces that could not be rebuilt.</p>"
207
- }
208
- },
209
- "FailedTerminateWorkspaceRequests": {
210
- "base": null,
211
- "refs": {
212
- "TerminateWorkspacesResult$FailedRequests": "<p>An array of structures that represent any WorkSpaces that could not be terminated.</p>"
213
- }
214
- },
215
- "FailedWorkspaceChangeRequest": {
216
- "base": "<p>Contains information about a WorkSpace that could not be rebooted (<a>RebootWorkspaces</a>), rebuilt (<a>RebuildWorkspaces</a>), or terminated (<a>TerminateWorkspaces</a>).</p>",
217
- "refs": {
218
- "FailedRebootWorkspaceRequests$member": null,
219
- "FailedRebuildWorkspaceRequests$member": null,
220
- "FailedTerminateWorkspaceRequests$member": null
221
- }
222
- },
223
- "InvalidParameterValuesException": {
224
- "base": "<p>One or more parameter values are not valid.</p>",
225
- "refs": {
226
- }
227
- },
228
- "IpAddress": {
229
- "base": null,
230
- "refs": {
231
- "DnsIpAddresses$member": null,
232
- "Workspace$IpAddress": "<p>The IP address of the WorkSpace.</p>"
233
- }
234
- },
235
- "Limit": {
236
- "base": null,
237
- "refs": {
238
- "DescribeWorkspacesRequest$Limit": "<p>The maximum number of items to return.</p>"
239
- }
240
- },
241
- "NonEmptyString": {
242
- "base": null,
243
- "refs": {
244
- "ResourceUnavailableException$ResourceId": "<p>The identifier of the resource that is not available.</p>",
245
- "UserStorage$Capacity": "<p>The amount of user storage for the bundle.</p>",
246
- "WorkspaceBundle$Name": "<p>The name of the bundle.</p>"
247
- }
248
- },
249
- "PaginationToken": {
250
- "base": null,
251
- "refs": {
252
- "DescribeWorkspaceBundlesRequest$NextToken": "<p>The <code>NextToken</code> value from a previous call to this operation. Pass null if this is the first call.</p>",
253
- "DescribeWorkspaceBundlesResult$NextToken": "<p>If not null, more results are available. Pass this value for the <code>NextToken</code> parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.</p>",
254
- "DescribeWorkspaceDirectoriesRequest$NextToken": "<p>The <code>NextToken</code> value from a previous call to this operation. Pass null if this is the first call.</p>",
255
- "DescribeWorkspaceDirectoriesResult$NextToken": "<p>If not null, more results are available. Pass this value for the <code>NextToken</code> parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.</p>",
256
- "DescribeWorkspacesRequest$NextToken": "<p>The <code>NextToken</code> value from a previous call to this operation. Pass null if this is the first call.</p>",
257
- "DescribeWorkspacesResult$NextToken": "<p>If not null, more results are available. Pass this value for the <code>NextToken</code> parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.</p>"
258
- }
259
- },
260
- "RebootRequest": {
261
- "base": "<p>Contains information used with the <a>RebootWorkspaces</a> operation to reboot a WorkSpace.</p>",
262
- "refs": {
263
- "RebootWorkspaceRequests$member": null
264
- }
265
- },
266
- "RebootWorkspaceRequests": {
267
- "base": null,
268
- "refs": {
269
- "RebootWorkspacesRequest$RebootWorkspaceRequests": "<p>An array of structures that specify the WorkSpaces to reboot.</p>"
270
- }
271
- },
272
- "RebootWorkspacesRequest": {
273
- "base": "<p>Contains the inputs for the <a>RebootWorkspaces</a> operation.</p>",
274
- "refs": {
275
- }
276
- },
277
- "RebootWorkspacesResult": {
278
- "base": "<p>Contains the results of the <a>RebootWorkspaces</a> operation.</p>",
279
- "refs": {
280
- }
281
- },
282
- "RebuildRequest": {
283
- "base": "<p>Contains information used with the <a>RebuildWorkspaces</a> operation to rebuild a WorkSpace.</p>",
284
- "refs": {
285
- "RebuildWorkspaceRequests$member": null
286
- }
287
- },
288
- "RebuildWorkspaceRequests": {
289
- "base": null,
290
- "refs": {
291
- "RebuildWorkspacesRequest$RebuildWorkspaceRequests": "<p>An array of structures that specify the WorkSpaces to rebuild.</p>"
292
- }
293
- },
294
- "RebuildWorkspacesRequest": {
295
- "base": "<p>Contains the inputs for the <a>RebuildWorkspaces</a> operation.</p>",
296
- "refs": {
297
- }
298
- },
299
- "RebuildWorkspacesResult": {
300
- "base": "<p>Contains the results of the <a>RebuildWorkspaces</a> operation.</p>",
301
- "refs": {
302
- }
303
- },
304
- "RegistrationCode": {
305
- "base": null,
306
- "refs": {
307
- "WorkspaceDirectory$RegistrationCode": "<p>The registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.</p>"
308
- }
309
- },
310
- "ResourceLimitExceededException": {
311
- "base": "<p>Your resource limits have been exceeded.</p>",
312
- "refs": {
313
- }
314
- },
315
- "ResourceUnavailableException": {
316
- "base": "<p>The specified resource is not available.</p>",
317
- "refs": {
318
- }
319
- },
320
- "SecurityGroupId": {
321
- "base": null,
322
- "refs": {
323
- "DefaultWorkspaceCreationProperties$CustomSecurityGroupId": "<p>The identifier of any custom security groups that are applied to the WorkSpaces when they are created.</p>",
324
- "WorkspaceDirectory$WorkspaceSecurityGroupId": "<p>The identifier of the security group that is assigned to new WorkSpaces.</p>"
325
- }
326
- },
327
- "SubnetId": {
328
- "base": null,
329
- "refs": {
330
- "SubnetIds$member": null,
331
- "Workspace$SubnetId": "<p>The identifier of the subnet that the WorkSpace is in.</p>"
332
- }
333
- },
334
- "SubnetIds": {
335
- "base": null,
336
- "refs": {
337
- "WorkspaceDirectory$SubnetIds": "<p>An array of strings that contains the identifiers of the subnets used with the directory.</p>"
338
- }
339
- },
340
- "TerminateRequest": {
341
- "base": "<p>Contains information used with the <a>TerminateWorkspaces</a> operation to terminate a WorkSpace.</p>",
342
- "refs": {
343
- "TerminateWorkspaceRequests$member": null
344
- }
345
- },
346
- "TerminateWorkspaceRequests": {
347
- "base": null,
348
- "refs": {
349
- "TerminateWorkspacesRequest$TerminateWorkspaceRequests": "<p>An array of structures that specify the WorkSpaces to terminate.</p>"
350
- }
351
- },
352
- "TerminateWorkspacesRequest": {
353
- "base": "<p>Contains the inputs for the <a>TerminateWorkspaces</a> operation.</p>",
354
- "refs": {
355
- }
356
- },
357
- "TerminateWorkspacesResult": {
358
- "base": "<p>Contains the results of the <a>TerminateWorkspaces</a> operation.</p>",
359
- "refs": {
360
- }
361
- },
362
- "UserName": {
363
- "base": null,
364
- "refs": {
365
- "DescribeWorkspacesRequest$UserName": "<p>Used with the <code>DirectoryId</code> parameter to specify the directory user for which to obtain the WorkSpace.</p>",
366
- "Workspace$UserName": "<p>The user that the WorkSpace is assigned to.</p>",
367
- "WorkspaceDirectory$CustomerUserName": "<p>The user name for the service account.</p>",
368
- "WorkspaceRequest$UserName": "<p>The username that the WorkSpace is assigned to. This username must exist in the AWS Directory Service directory specified by the <code>DirectoryId</code> member.</p>"
369
- }
370
- },
371
- "UserStorage": {
372
- "base": "<p>Contains information about the user storage for a WorkSpace bundle.</p>",
373
- "refs": {
374
- "WorkspaceBundle$UserStorage": "<p>A <a>UserStorage</a> object that specifies the amount of user storage that the bundle contains.</p>"
375
- }
376
- },
377
- "Workspace": {
378
- "base": "<p>Contains information about a WorkSpace.</p>",
379
- "refs": {
380
- "WorkspaceList$member": null
381
- }
382
- },
383
- "WorkspaceBundle": {
384
- "base": "<p>Contains information about a WorkSpace bundle.</p>",
385
- "refs": {
386
- "BundleList$member": null
387
- }
388
- },
389
- "WorkspaceDirectory": {
390
- "base": "<p>Contains information about an AWS Directory Service directory for use with Amazon WorkSpaces.</p>",
391
- "refs": {
392
- "DirectoryList$member": null
393
- }
394
- },
395
- "WorkspaceDirectoryState": {
396
- "base": null,
397
- "refs": {
398
- "WorkspaceDirectory$State": "<p>The state of the directory's registration with Amazon WorkSpaces</p>"
399
- }
400
- },
401
- "WorkspaceDirectoryType": {
402
- "base": null,
403
- "refs": {
404
- "WorkspaceDirectory$DirectoryType": "<p>The directory type.</p>"
405
- }
406
- },
407
- "WorkspaceErrorCode": {
408
- "base": null,
409
- "refs": {
410
- "Workspace$ErrorCode": "<p>If the WorkSpace could not be created, this contains the error code.</p>"
411
- }
412
- },
413
- "WorkspaceId": {
414
- "base": null,
415
- "refs": {
416
- "FailedWorkspaceChangeRequest$WorkspaceId": "<p>The identifier of the WorkSpace.</p>",
417
- "RebootRequest$WorkspaceId": "<p>The identifier of the WorkSpace to reboot.</p>",
418
- "RebuildRequest$WorkspaceId": "<p>The identifier of the WorkSpace to rebuild.</p>",
419
- "TerminateRequest$WorkspaceId": "<p>The identifier of the WorkSpace to terminate.</p>",
420
- "Workspace$WorkspaceId": "<p>The identifier of the WorkSpace.</p>",
421
- "WorkspaceIdList$member": null
422
- }
423
- },
424
- "WorkspaceIdList": {
425
- "base": null,
426
- "refs": {
427
- "DescribeWorkspacesRequest$WorkspaceIds": "<p>An array of strings that contain the identifiers of the WorkSpaces for which to retrieve information. This parameter cannot be combined with any other filter parameter.</p> <p>Because the <a>CreateWorkspaces</a> operation is asynchronous, the identifier returned by <a>CreateWorkspaces</a> is not immediately available. If you immediately call <a>DescribeWorkspaces</a> with this identifier, no information will be returned.</p>"
428
- }
429
- },
430
- "WorkspaceList": {
431
- "base": null,
432
- "refs": {
433
- "CreateWorkspacesResult$PendingRequests": "<p>An array of structures that represent the WorkSpaces that were created.</p> <p>Because this operation is asynchronous, the identifier in <code>WorkspaceId</code> is not immediately available. If you immediately call <a>DescribeWorkspaces</a> with this identifier, no information will be returned.</p>",
434
- "DescribeWorkspacesResult$Workspaces": "<p>An array of structures that contain the information about the WorkSpaces.</p> <p>Because the <a>CreateWorkspaces</a> operation is asynchronous, some of this information may be incomplete for a newly-created WorkSpace.</p>"
435
- }
436
- },
437
- "WorkspaceRequest": {
438
- "base": "<p>Contains information about a WorkSpace creation request.</p>",
439
- "refs": {
440
- "FailedCreateWorkspaceRequest$WorkspaceRequest": "<p>A <a>WorkspaceRequest</a> object that contains the information about the WorkSpace that could not be created.</p>",
441
- "WorkspaceRequestList$member": null
442
- }
443
- },
444
- "WorkspaceRequestList": {
445
- "base": null,
446
- "refs": {
447
- "CreateWorkspacesRequest$Workspaces": "<p>An array of structures that specify the WorkSpaces to create.</p>"
448
- }
449
- },
450
- "WorkspaceState": {
451
- "base": null,
452
- "refs": {
453
- "Workspace$State": "<p>The operational state of the WorkSpace.</p>"
454
- }
455
- }
456
- }
457
- }