aws-sdk 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +6 -0
- data/LICENSE.txt +171 -0
- data/NOTICE.txt +2 -0
- data/README.rdoc +189 -0
- data/lib/aws-sdk.rb +14 -0
- data/lib/aws.rb +63 -0
- data/lib/aws/api_config.rb +45 -0
- data/lib/aws/api_config/.document +0 -0
- data/lib/aws/api_config/EC2-2011-02-28.yml +2314 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +171 -0
- data/lib/aws/api_config/SQS-2009-02-01.yml +161 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +278 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +147 -0
- data/lib/aws/api_config_transform.rb +32 -0
- data/lib/aws/async_handle.rb +90 -0
- data/lib/aws/authorize_v2.rb +37 -0
- data/lib/aws/authorize_v3.rb +37 -0
- data/lib/aws/base_client.rb +524 -0
- data/lib/aws/cacheable.rb +92 -0
- data/lib/aws/common.rb +228 -0
- data/lib/aws/configurable.rb +36 -0
- data/lib/aws/configuration.rb +272 -0
- data/lib/aws/configured_client_methods.rb +81 -0
- data/lib/aws/configured_grammars.rb +65 -0
- data/lib/aws/configured_option_grammars.rb +46 -0
- data/lib/aws/configured_xml_grammars.rb +47 -0
- data/lib/aws/default_signer.rb +38 -0
- data/lib/aws/ec2.rb +321 -0
- data/lib/aws/ec2/attachment.rb +149 -0
- data/lib/aws/ec2/attachment_collection.rb +57 -0
- data/lib/aws/ec2/availability_zone.rb +80 -0
- data/lib/aws/ec2/availability_zone_collection.rb +47 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +54 -0
- data/lib/aws/ec2/client/xml.rb +127 -0
- data/lib/aws/ec2/collection.rb +39 -0
- data/lib/aws/ec2/config_transform.rb +63 -0
- data/lib/aws/ec2/elastic_ip.rb +107 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +85 -0
- data/lib/aws/ec2/errors.rb +29 -0
- data/lib/aws/ec2/filtered_collection.rb +65 -0
- data/lib/aws/ec2/has_permissions.rb +46 -0
- data/lib/aws/ec2/image.rb +245 -0
- data/lib/aws/ec2/image_collection.rb +235 -0
- data/lib/aws/ec2/instance.rb +515 -0
- data/lib/aws/ec2/instance_collection.rb +276 -0
- data/lib/aws/ec2/key_pair.rb +86 -0
- data/lib/aws/ec2/key_pair_collection.rb +102 -0
- data/lib/aws/ec2/permission_collection.rb +177 -0
- data/lib/aws/ec2/region.rb +81 -0
- data/lib/aws/ec2/region_collection.rb +55 -0
- data/lib/aws/ec2/request.rb +27 -0
- data/lib/aws/ec2/reserved_instances.rb +50 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +44 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +55 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +43 -0
- data/lib/aws/ec2/resource.rb +340 -0
- data/lib/aws/ec2/resource_tag_collection.rb +218 -0
- data/lib/aws/ec2/security_group.rb +246 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +70 -0
- data/lib/aws/ec2/security_group/ip_permission_collection.rb +59 -0
- data/lib/aws/ec2/security_group_collection.rb +132 -0
- data/lib/aws/ec2/snapshot.rb +138 -0
- data/lib/aws/ec2/snapshot_collection.rb +90 -0
- data/lib/aws/ec2/tag.rb +88 -0
- data/lib/aws/ec2/tag_collection.rb +114 -0
- data/lib/aws/ec2/tagged_collection.rb +48 -0
- data/lib/aws/ec2/tagged_item.rb +87 -0
- data/lib/aws/ec2/volume.rb +190 -0
- data/lib/aws/ec2/volume_collection.rb +95 -0
- data/lib/aws/errors.rb +129 -0
- data/lib/aws/http/builtin_handler.rb +69 -0
- data/lib/aws/http/curb_handler.rb +123 -0
- data/lib/aws/http/handler.rb +77 -0
- data/lib/aws/http/httparty_handler.rb +61 -0
- data/lib/aws/http/request.rb +136 -0
- data/lib/aws/http/request_param.rb +63 -0
- data/lib/aws/http/response.rb +75 -0
- data/lib/aws/ignore_result_element.rb +38 -0
- data/lib/aws/indifferent_hash.rb +86 -0
- data/lib/aws/inflection.rb +46 -0
- data/lib/aws/lazy_error_classes.rb +64 -0
- data/lib/aws/meta_utils.rb +43 -0
- data/lib/aws/model.rb +57 -0
- data/lib/aws/naming.rb +32 -0
- data/lib/aws/option_grammar.rb +544 -0
- data/lib/aws/policy.rb +912 -0
- data/lib/aws/rails.rb +209 -0
- data/lib/aws/record.rb +79 -0
- data/lib/aws/record/attribute.rb +94 -0
- data/lib/aws/record/attribute_macros.rb +288 -0
- data/lib/aws/record/attributes/boolean.rb +49 -0
- data/lib/aws/record/attributes/datetime.rb +86 -0
- data/lib/aws/record/attributes/float.rb +48 -0
- data/lib/aws/record/attributes/integer.rb +68 -0
- data/lib/aws/record/attributes/sortable_float.rb +60 -0
- data/lib/aws/record/attributes/sortable_integer.rb +95 -0
- data/lib/aws/record/attributes/string.rb +69 -0
- data/lib/aws/record/base.rb +728 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +286 -0
- data/lib/aws/record/errors.rb +153 -0
- data/lib/aws/record/exceptions.rb +48 -0
- data/lib/aws/record/finder_methods.rb +262 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +157 -0
- data/lib/aws/record/validations.rb +653 -0
- data/lib/aws/record/validator.rb +237 -0
- data/lib/aws/record/validators/acceptance.rb +51 -0
- data/lib/aws/record/validators/block.rb +38 -0
- data/lib/aws/record/validators/confirmation.rb +43 -0
- data/lib/aws/record/validators/count.rb +108 -0
- data/lib/aws/record/validators/exclusion.rb +43 -0
- data/lib/aws/record/validators/format.rb +57 -0
- data/lib/aws/record/validators/inclusion.rb +56 -0
- data/lib/aws/record/validators/length.rb +107 -0
- data/lib/aws/record/validators/numericality.rb +138 -0
- data/lib/aws/record/validators/presence.rb +45 -0
- data/lib/aws/resource_cache.rb +39 -0
- data/lib/aws/response.rb +113 -0
- data/lib/aws/response_cache.rb +50 -0
- data/lib/aws/s3.rb +109 -0
- data/lib/aws/s3/access_control_list.rb +252 -0
- data/lib/aws/s3/acl_object.rb +266 -0
- data/lib/aws/s3/bucket.rb +320 -0
- data/lib/aws/s3/bucket_collection.rb +122 -0
- data/lib/aws/s3/bucket_version_collection.rb +85 -0
- data/lib/aws/s3/client.rb +999 -0
- data/lib/aws/s3/client/xml.rb +190 -0
- data/lib/aws/s3/data_options.rb +99 -0
- data/lib/aws/s3/errors.rb +43 -0
- data/lib/aws/s3/multipart_upload.rb +318 -0
- data/lib/aws/s3/multipart_upload_collection.rb +78 -0
- data/lib/aws/s3/object_collection.rb +159 -0
- data/lib/aws/s3/object_metadata.rb +67 -0
- data/lib/aws/s3/object_upload_collection.rb +83 -0
- data/lib/aws/s3/object_version.rb +141 -0
- data/lib/aws/s3/object_version_collection.rb +78 -0
- data/lib/aws/s3/paginated_collection.rb +94 -0
- data/lib/aws/s3/policy.rb +76 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +56 -0
- data/lib/aws/s3/prefixed_collection.rb +84 -0
- data/lib/aws/s3/presigned_post.rb +504 -0
- data/lib/aws/s3/request.rb +198 -0
- data/lib/aws/s3/s3_object.rb +794 -0
- data/lib/aws/s3/tree.rb +116 -0
- data/lib/aws/s3/tree/branch_node.rb +71 -0
- data/lib/aws/s3/tree/child_collection.rb +108 -0
- data/lib/aws/s3/tree/leaf_node.rb +99 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +90 -0
- data/lib/aws/s3/uploaded_part.rb +82 -0
- data/lib/aws/s3/uploaded_part_collection.rb +86 -0
- data/lib/aws/service_interface.rb +60 -0
- data/lib/aws/simple_db.rb +202 -0
- data/lib/aws/simple_db/attribute.rb +159 -0
- data/lib/aws/simple_db/attribute_collection.rb +227 -0
- data/lib/aws/simple_db/client.rb +52 -0
- data/lib/aws/simple_db/client/options.rb +34 -0
- data/lib/aws/simple_db/client/xml.rb +68 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +64 -0
- data/lib/aws/simple_db/domain.rb +118 -0
- data/lib/aws/simple_db/domain_collection.rb +116 -0
- data/lib/aws/simple_db/domain_metadata.rb +112 -0
- data/lib/aws/simple_db/errors.rb +46 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +84 -0
- data/lib/aws/simple_db/item_collection.rb +594 -0
- data/lib/aws/simple_db/item_data.rb +70 -0
- data/lib/aws/simple_db/put_attributes.rb +62 -0
- data/lib/aws/simple_db/request.rb +27 -0
- data/lib/aws/simple_email_service.rb +373 -0
- data/lib/aws/simple_email_service/client.rb +39 -0
- data/lib/aws/simple_email_service/client/options.rb +24 -0
- data/lib/aws/simple_email_service/client/xml.rb +38 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +66 -0
- data/lib/aws/simple_email_service/errors.rb +29 -0
- data/lib/aws/simple_email_service/quotas.rb +64 -0
- data/lib/aws/simple_email_service/request.rb +27 -0
- data/lib/aws/sns.rb +69 -0
- data/lib/aws/sns/client.rb +37 -0
- data/lib/aws/sns/client/options.rb +24 -0
- data/lib/aws/sns/client/xml.rb +38 -0
- data/lib/aws/sns/errors.rb +29 -0
- data/lib/aws/sns/policy.rb +49 -0
- data/lib/aws/sns/request.rb +27 -0
- data/lib/aws/sns/subscription.rb +100 -0
- data/lib/aws/sns/subscription_collection.rb +84 -0
- data/lib/aws/sns/topic.rb +384 -0
- data/lib/aws/sns/topic_collection.rb +70 -0
- data/lib/aws/sns/topic_subscription_collection.rb +58 -0
- data/lib/aws/sqs.rb +70 -0
- data/lib/aws/sqs/client.rb +38 -0
- data/lib/aws/sqs/client/xml.rb +36 -0
- data/lib/aws/sqs/errors.rb +33 -0
- data/lib/aws/sqs/policy.rb +50 -0
- data/lib/aws/sqs/queue.rb +507 -0
- data/lib/aws/sqs/queue_collection.rb +105 -0
- data/lib/aws/sqs/received_message.rb +184 -0
- data/lib/aws/sqs/received_sns_message.rb +112 -0
- data/lib/aws/sqs/request.rb +44 -0
- data/lib/aws/xml_grammar.rb +923 -0
- data/rails/init.rb +15 -0
- metadata +298 -0
@@ -0,0 +1,171 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:operations:
|
16
|
+
CreateTopic:
|
17
|
+
:input:
|
18
|
+
Name:
|
19
|
+
- :string
|
20
|
+
- :required
|
21
|
+
:output:
|
22
|
+
- TopicArn: []
|
23
|
+
|
24
|
+
GetTopicAttributes:
|
25
|
+
:input:
|
26
|
+
TopicArn:
|
27
|
+
- :string
|
28
|
+
- :required
|
29
|
+
:output:
|
30
|
+
- Attributes:
|
31
|
+
- :map:
|
32
|
+
- entry
|
33
|
+
- key
|
34
|
+
- value
|
35
|
+
SetTopicAttributes:
|
36
|
+
:input:
|
37
|
+
TopicArn:
|
38
|
+
- :string
|
39
|
+
- :required
|
40
|
+
AttributeName:
|
41
|
+
- :string
|
42
|
+
- :required
|
43
|
+
AttributeValue:
|
44
|
+
- :string
|
45
|
+
- :required
|
46
|
+
:output: []
|
47
|
+
|
48
|
+
DeleteTopic:
|
49
|
+
:input:
|
50
|
+
TopicArn:
|
51
|
+
- :string
|
52
|
+
- :required
|
53
|
+
:output: []
|
54
|
+
|
55
|
+
AddPermission:
|
56
|
+
:input:
|
57
|
+
TopicArn:
|
58
|
+
- :string
|
59
|
+
- :required
|
60
|
+
Label:
|
61
|
+
- :string
|
62
|
+
- :required
|
63
|
+
AWSAccountId:
|
64
|
+
- :list:
|
65
|
+
- :string
|
66
|
+
- :required
|
67
|
+
ActionName:
|
68
|
+
- :list:
|
69
|
+
- :string
|
70
|
+
- :required
|
71
|
+
:output: []
|
72
|
+
|
73
|
+
RemovePermission:
|
74
|
+
:input:
|
75
|
+
TopicArn:
|
76
|
+
- :string
|
77
|
+
- :required
|
78
|
+
Label:
|
79
|
+
- :string
|
80
|
+
- :required
|
81
|
+
:output: []
|
82
|
+
|
83
|
+
Subscribe:
|
84
|
+
:input:
|
85
|
+
TopicArn:
|
86
|
+
- :string
|
87
|
+
- :required
|
88
|
+
Protocol:
|
89
|
+
- :string
|
90
|
+
- :required
|
91
|
+
Endpoint:
|
92
|
+
- :string
|
93
|
+
- :required
|
94
|
+
:output: []
|
95
|
+
|
96
|
+
Unsubscribe:
|
97
|
+
:input:
|
98
|
+
SubscriptionArn:
|
99
|
+
- :string
|
100
|
+
- :required
|
101
|
+
:output: []
|
102
|
+
|
103
|
+
ConfirmSubscription:
|
104
|
+
:input:
|
105
|
+
TopicArn:
|
106
|
+
- :string
|
107
|
+
- :required
|
108
|
+
Token:
|
109
|
+
- :string
|
110
|
+
- :required
|
111
|
+
AuthenticateOnUnsubscribe:
|
112
|
+
- :boolean
|
113
|
+
:output: []
|
114
|
+
|
115
|
+
ListTopics:
|
116
|
+
:input:
|
117
|
+
NextToken:
|
118
|
+
- :string
|
119
|
+
:output:
|
120
|
+
- Topics:
|
121
|
+
- :list: member
|
122
|
+
- NextToken:
|
123
|
+
- :force
|
124
|
+
ListSubscriptions:
|
125
|
+
:input:
|
126
|
+
NextToken:
|
127
|
+
- :string
|
128
|
+
:output:
|
129
|
+
- Subscriptions:
|
130
|
+
- :list: member
|
131
|
+
- NextToken:
|
132
|
+
- :force
|
133
|
+
ListSubscriptionsByTopic:
|
134
|
+
:input:
|
135
|
+
TopicArn:
|
136
|
+
- :string
|
137
|
+
- :required
|
138
|
+
NextToken:
|
139
|
+
- :string
|
140
|
+
:output:
|
141
|
+
- Subscriptions:
|
142
|
+
- :list: member
|
143
|
+
- NextToken:
|
144
|
+
- :force
|
145
|
+
Publish:
|
146
|
+
:input:
|
147
|
+
TopicArn:
|
148
|
+
- :string
|
149
|
+
- :required
|
150
|
+
Message:
|
151
|
+
- :string
|
152
|
+
- :required
|
153
|
+
Subject:
|
154
|
+
- :string
|
155
|
+
MessageStructure:
|
156
|
+
- :string
|
157
|
+
:output: []
|
158
|
+
|
159
|
+
:client_errors:
|
160
|
+
InvalidParameter: []
|
161
|
+
|
162
|
+
AuthorizationError: []
|
163
|
+
|
164
|
+
TopicLimitExceeded: []
|
165
|
+
|
166
|
+
SubscriptionLimitExceeded: []
|
167
|
+
|
168
|
+
NotFound: []
|
169
|
+
|
170
|
+
:server_errors:
|
171
|
+
InternalError: []
|
@@ -0,0 +1,161 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:operations:
|
16
|
+
CreateQueue:
|
17
|
+
:input:
|
18
|
+
QueueName:
|
19
|
+
- :string
|
20
|
+
- :required
|
21
|
+
DefaultVisibilityTimeout:
|
22
|
+
- :integer
|
23
|
+
:output: []
|
24
|
+
|
25
|
+
ListQueues:
|
26
|
+
:input:
|
27
|
+
QueueNamePrefix:
|
28
|
+
- :string
|
29
|
+
:output:
|
30
|
+
- QueueUrl:
|
31
|
+
- :list
|
32
|
+
- :rename: queueUrls
|
33
|
+
AddPermission:
|
34
|
+
:input:
|
35
|
+
QueueUrl:
|
36
|
+
- :string
|
37
|
+
- :required
|
38
|
+
Label:
|
39
|
+
- :string
|
40
|
+
- :required
|
41
|
+
AWSAccountId:
|
42
|
+
- :list:
|
43
|
+
- :string
|
44
|
+
- :required
|
45
|
+
- :rename: AWSAccountIds
|
46
|
+
ActionName:
|
47
|
+
- :list:
|
48
|
+
- :string
|
49
|
+
- :required
|
50
|
+
- :rename: Actions
|
51
|
+
:output: []
|
52
|
+
|
53
|
+
RemovePermission:
|
54
|
+
:input:
|
55
|
+
QueueUrl:
|
56
|
+
- :string
|
57
|
+
- :required
|
58
|
+
Label:
|
59
|
+
- :string
|
60
|
+
- :required
|
61
|
+
:output: []
|
62
|
+
|
63
|
+
ChangeMessageVisibility:
|
64
|
+
:input:
|
65
|
+
QueueUrl:
|
66
|
+
- :string
|
67
|
+
- :required
|
68
|
+
ReceiptHandle:
|
69
|
+
- :string
|
70
|
+
- :required
|
71
|
+
VisibilityTimeout:
|
72
|
+
- :integer
|
73
|
+
- :required
|
74
|
+
:output: []
|
75
|
+
|
76
|
+
DeleteQueue:
|
77
|
+
:input:
|
78
|
+
QueueUrl:
|
79
|
+
- :string
|
80
|
+
- :required
|
81
|
+
:output: []
|
82
|
+
|
83
|
+
DeleteMessage:
|
84
|
+
:input:
|
85
|
+
QueueUrl:
|
86
|
+
- :string
|
87
|
+
- :required
|
88
|
+
ReceiptHandle:
|
89
|
+
- :string
|
90
|
+
- :required
|
91
|
+
:output: []
|
92
|
+
|
93
|
+
GetQueueAttributes:
|
94
|
+
:input:
|
95
|
+
QueueUrl:
|
96
|
+
- :string
|
97
|
+
- :required
|
98
|
+
AttributeName:
|
99
|
+
- :list:
|
100
|
+
- :string
|
101
|
+
- :rename: attributeNames
|
102
|
+
:output:
|
103
|
+
- Attribute:
|
104
|
+
- :rename: attributes
|
105
|
+
- :map_entry:
|
106
|
+
- Name
|
107
|
+
- Value
|
108
|
+
ReceiveMessage:
|
109
|
+
:input:
|
110
|
+
QueueUrl:
|
111
|
+
- :string
|
112
|
+
- :required
|
113
|
+
AttributeName:
|
114
|
+
- :list:
|
115
|
+
- :string
|
116
|
+
- :rename: AttributeNames
|
117
|
+
MaxNumberOfMessages:
|
118
|
+
- :integer
|
119
|
+
VisibilityTimeout:
|
120
|
+
- :integer
|
121
|
+
:output:
|
122
|
+
- Message:
|
123
|
+
- :list
|
124
|
+
- :rename: messages
|
125
|
+
- Attribute:
|
126
|
+
- :rename: Attributes
|
127
|
+
- :map_entry:
|
128
|
+
- Name
|
129
|
+
- Value
|
130
|
+
SetQueueAttributes:
|
131
|
+
:input:
|
132
|
+
QueueUrl:
|
133
|
+
- :string
|
134
|
+
- :required
|
135
|
+
Attribute:
|
136
|
+
- :required
|
137
|
+
- :structure:
|
138
|
+
Name:
|
139
|
+
- :string
|
140
|
+
- :required
|
141
|
+
Value:
|
142
|
+
- :string
|
143
|
+
- :required
|
144
|
+
:output: []
|
145
|
+
|
146
|
+
SendMessage:
|
147
|
+
:input:
|
148
|
+
QueueUrl:
|
149
|
+
- :string
|
150
|
+
- :required
|
151
|
+
MessageBody:
|
152
|
+
- :string
|
153
|
+
- :required
|
154
|
+
:output: []
|
155
|
+
|
156
|
+
:client_errors:
|
157
|
+
AWS.SimpleQueueService.QueueDeletedRecently: []
|
158
|
+
|
159
|
+
AWS.SimpleQueueService.QueueNameExists: []
|
160
|
+
|
161
|
+
:server_errors: {}
|
@@ -0,0 +1,278 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:operations:
|
16
|
+
DeleteAttributes:
|
17
|
+
:output: []
|
18
|
+
|
19
|
+
:input:
|
20
|
+
Expected:
|
21
|
+
- :list:
|
22
|
+
- :structure:
|
23
|
+
Name:
|
24
|
+
- :string
|
25
|
+
Exists:
|
26
|
+
- :boolean
|
27
|
+
Value:
|
28
|
+
- :string
|
29
|
+
Attribute:
|
30
|
+
- :list:
|
31
|
+
- :structure:
|
32
|
+
AlternateNameEncoding:
|
33
|
+
- :string
|
34
|
+
Name:
|
35
|
+
- :string
|
36
|
+
- :required
|
37
|
+
AlternateValueEncoding:
|
38
|
+
- :string
|
39
|
+
Value:
|
40
|
+
- :string
|
41
|
+
- :rename: Attributes
|
42
|
+
DomainName:
|
43
|
+
- :string
|
44
|
+
- :required
|
45
|
+
ItemName:
|
46
|
+
- :string
|
47
|
+
- :required
|
48
|
+
CreateDomain:
|
49
|
+
:output: []
|
50
|
+
|
51
|
+
:input:
|
52
|
+
DomainName:
|
53
|
+
- :string
|
54
|
+
- :required
|
55
|
+
ListDomains:
|
56
|
+
:output:
|
57
|
+
- DomainName:
|
58
|
+
- :list
|
59
|
+
- :rename: DomainNames
|
60
|
+
:input:
|
61
|
+
MaxNumberOfDomains:
|
62
|
+
- :integer
|
63
|
+
NextToken:
|
64
|
+
- :string
|
65
|
+
GetAttributes:
|
66
|
+
:output:
|
67
|
+
- Attribute:
|
68
|
+
- :list
|
69
|
+
- :rename: Attributes
|
70
|
+
:input:
|
71
|
+
DomainName:
|
72
|
+
- :string
|
73
|
+
- :required
|
74
|
+
AttributeName:
|
75
|
+
- :list:
|
76
|
+
- :string
|
77
|
+
- :rename: AttributeNames
|
78
|
+
ConsistentRead:
|
79
|
+
- :boolean
|
80
|
+
ItemName:
|
81
|
+
- :string
|
82
|
+
- :required
|
83
|
+
BatchPutAttributes:
|
84
|
+
:output: []
|
85
|
+
|
86
|
+
:input:
|
87
|
+
Item:
|
88
|
+
- :list:
|
89
|
+
- :structure:
|
90
|
+
Attribute:
|
91
|
+
- :list:
|
92
|
+
- :structure:
|
93
|
+
Replace:
|
94
|
+
- :boolean
|
95
|
+
Name:
|
96
|
+
- :string
|
97
|
+
- :required
|
98
|
+
Value:
|
99
|
+
- :string
|
100
|
+
- :required
|
101
|
+
- :required
|
102
|
+
- :rename: Attributes
|
103
|
+
ItemName:
|
104
|
+
- :string
|
105
|
+
- :required
|
106
|
+
- :rename: Name
|
107
|
+
- :required
|
108
|
+
- :rename: Items
|
109
|
+
DomainName:
|
110
|
+
- :string
|
111
|
+
- :required
|
112
|
+
DeleteDomain:
|
113
|
+
:output: []
|
114
|
+
|
115
|
+
:input:
|
116
|
+
DomainName:
|
117
|
+
- :string
|
118
|
+
- :required
|
119
|
+
Select:
|
120
|
+
:output:
|
121
|
+
- Item:
|
122
|
+
- :list
|
123
|
+
- :rename: Items
|
124
|
+
- Attribute:
|
125
|
+
- :list
|
126
|
+
- :rename: Attributes
|
127
|
+
:input:
|
128
|
+
SelectExpression:
|
129
|
+
- :string
|
130
|
+
- :required
|
131
|
+
ConsistentRead:
|
132
|
+
- :boolean
|
133
|
+
NextToken:
|
134
|
+
- :string
|
135
|
+
PutAttributes:
|
136
|
+
:output: []
|
137
|
+
|
138
|
+
:input:
|
139
|
+
Expected:
|
140
|
+
- :list:
|
141
|
+
- :structure:
|
142
|
+
Name:
|
143
|
+
- :string
|
144
|
+
Exists:
|
145
|
+
- :boolean
|
146
|
+
Value:
|
147
|
+
- :string
|
148
|
+
Attribute:
|
149
|
+
- :list:
|
150
|
+
- :structure:
|
151
|
+
Replace:
|
152
|
+
- :boolean
|
153
|
+
Name:
|
154
|
+
- :string
|
155
|
+
- :required
|
156
|
+
Value:
|
157
|
+
- :string
|
158
|
+
- :required
|
159
|
+
- :required
|
160
|
+
- :rename: Attributes
|
161
|
+
DomainName:
|
162
|
+
- :string
|
163
|
+
- :required
|
164
|
+
ItemName:
|
165
|
+
- :string
|
166
|
+
- :required
|
167
|
+
DomainMetadata:
|
168
|
+
:output:
|
169
|
+
- ItemCount:
|
170
|
+
- :integer
|
171
|
+
- ItemNamesSizeBytes:
|
172
|
+
- :long
|
173
|
+
- AttributeNameCount:
|
174
|
+
- :integer
|
175
|
+
- AttributeNamesSizeBytes:
|
176
|
+
- :long
|
177
|
+
- AttributeValueCount:
|
178
|
+
- :integer
|
179
|
+
- AttributeValuesSizeBytes:
|
180
|
+
- :long
|
181
|
+
- Timestamp:
|
182
|
+
- :integer
|
183
|
+
:input:
|
184
|
+
DomainName:
|
185
|
+
- :string
|
186
|
+
- :required
|
187
|
+
BatchDeleteAttributes:
|
188
|
+
:output: []
|
189
|
+
|
190
|
+
:input:
|
191
|
+
Item:
|
192
|
+
- :list:
|
193
|
+
- :structure:
|
194
|
+
Attribute:
|
195
|
+
- :list:
|
196
|
+
- :structure:
|
197
|
+
AlternateNameEncoding:
|
198
|
+
- :string
|
199
|
+
Name:
|
200
|
+
- :string
|
201
|
+
- :required
|
202
|
+
AlternateValueEncoding:
|
203
|
+
- :string
|
204
|
+
Value:
|
205
|
+
- :string
|
206
|
+
- :required
|
207
|
+
- :rename: Attributes
|
208
|
+
ItemName:
|
209
|
+
- :string
|
210
|
+
- :required
|
211
|
+
- :rename: Name
|
212
|
+
- :required
|
213
|
+
- :rename: Items
|
214
|
+
DomainName:
|
215
|
+
- :string
|
216
|
+
- :required
|
217
|
+
:client_errors:
|
218
|
+
TooManyRequestedAttributes:
|
219
|
+
- BoxUsage:
|
220
|
+
- :float
|
221
|
+
ConditionalCheckFailed:
|
222
|
+
- BoxUsage:
|
223
|
+
- :float
|
224
|
+
InvalidQueryExpression:
|
225
|
+
- BoxUsage:
|
226
|
+
- :float
|
227
|
+
InvalidParameterValue:
|
228
|
+
- BoxUsage:
|
229
|
+
- :float
|
230
|
+
DuplicateItemName:
|
231
|
+
- BoxUsage:
|
232
|
+
- :float
|
233
|
+
NumberDomainAttributesExceeded:
|
234
|
+
- BoxUsage:
|
235
|
+
- :float
|
236
|
+
InvalidNextToken:
|
237
|
+
- BoxUsage:
|
238
|
+
- :float
|
239
|
+
NumberSubmittedItemsExceeded:
|
240
|
+
- BoxUsage:
|
241
|
+
- :float
|
242
|
+
NoSuchDomain:
|
243
|
+
- BoxUsage:
|
244
|
+
- :float
|
245
|
+
AttributeDoesNotExist:
|
246
|
+
- BoxUsage:
|
247
|
+
- :float
|
248
|
+
NumberDomainsExceeded:
|
249
|
+
- BoxUsage:
|
250
|
+
- :float
|
251
|
+
MissingParameter:
|
252
|
+
- BoxUsage:
|
253
|
+
- :float
|
254
|
+
InvalidNumberValueTests:
|
255
|
+
- BoxUsage:
|
256
|
+
- :float
|
257
|
+
UnsupportedNextToken:
|
258
|
+
- BoxUsage:
|
259
|
+
- :float
|
260
|
+
NumberSubmittedAttributesExceeded:
|
261
|
+
- BoxUsage:
|
262
|
+
- :float
|
263
|
+
NumberItemAttributesExceeded:
|
264
|
+
- BoxUsage:
|
265
|
+
- :float
|
266
|
+
NumberDomainBytesExceeded:
|
267
|
+
- BoxUsage:
|
268
|
+
- :float
|
269
|
+
InvalidNumberPredicates:
|
270
|
+
- BoxUsage:
|
271
|
+
- :float
|
272
|
+
RequestTimeout:
|
273
|
+
- BoxUsage:
|
274
|
+
- :float
|
275
|
+
InvalidParameterCombination:
|
276
|
+
- BoxUsage:
|
277
|
+
- :float
|
278
|
+
:server_errors: {}
|