aws-sdk-core 2.8.2 → 2.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/apis/organizations/2016-11-28/examples-1.json +8 -0
- data/apis/workdocs/2016-05-01/api-2.json +1781 -0
- data/apis/workdocs/2016-05-01/examples-1.json +5 -0
- data/apis/workdocs/2016-05-01/paginators-1.json +25 -0
- data/endpoints.json +10 -0
- data/lib/aws-sdk-core.rb +1 -0
- data/lib/aws-sdk-core/api/customizations.rb +8 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/lib/aws-sdk-core/workdocs.rb +6 -0
- data/service-models.json +4 -0
- metadata +5 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pagination": {
|
|
3
|
+
"DescribeDocumentVersions": {
|
|
4
|
+
"input_token": "Marker",
|
|
5
|
+
"limit_key": "Limit",
|
|
6
|
+
"output_token": "Marker",
|
|
7
|
+
"result_key": "DocumentVersions"
|
|
8
|
+
},
|
|
9
|
+
"DescribeFolderContents": {
|
|
10
|
+
"input_token": "Marker",
|
|
11
|
+
"limit_key": "Limit",
|
|
12
|
+
"output_token": "Marker",
|
|
13
|
+
"result_key": [
|
|
14
|
+
"Folders",
|
|
15
|
+
"Documents"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"DescribeUsers": {
|
|
19
|
+
"input_token": "Marker",
|
|
20
|
+
"limit_key": "Limit",
|
|
21
|
+
"output_token": "Marker",
|
|
22
|
+
"result_key": "Users"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
data/endpoints.json
CHANGED
|
@@ -1441,6 +1441,16 @@
|
|
|
1441
1441
|
"us-west-2": {}
|
|
1442
1442
|
}
|
|
1443
1443
|
},
|
|
1444
|
+
"workdocs": {
|
|
1445
|
+
"endpoints": {
|
|
1446
|
+
"ap-northeast-1": {},
|
|
1447
|
+
"ap-southeast-1": {},
|
|
1448
|
+
"ap-southeast-2": {},
|
|
1449
|
+
"eu-west-1": {},
|
|
1450
|
+
"us-east-1": {},
|
|
1451
|
+
"us-west-2": {}
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1444
1454
|
"workspaces": {
|
|
1445
1455
|
"endpoints": {
|
|
1446
1456
|
"ap-northeast-1": {},
|
data/lib/aws-sdk-core.rb
CHANGED
|
@@ -157,6 +157,14 @@ module Aws
|
|
|
157
157
|
{"shape" => "String"}
|
|
158
158
|
api['shapes']['CreateDBClusterMessage']['members']['DestinationRegion'] =
|
|
159
159
|
{"shape" => "String"}
|
|
160
|
+
api['shapes']['CopyDBSnapshotMessage']['members']['SourceRegion'] =
|
|
161
|
+
{"shape" => "String"}
|
|
162
|
+
api['shapes']['CreateDBInstanceReadReplicaMessage']['members']['SourceRegion'] =
|
|
163
|
+
{"shape" => "String"}
|
|
164
|
+
api['shapes']['CopyDBClusterSnapshotMessage']['members']['SourceRegion'] =
|
|
165
|
+
{"shape" => "String"}
|
|
166
|
+
api['shapes']['CreateDBClusterMessage']['members']['SourceRegion'] =
|
|
167
|
+
{"shape" => "String"}
|
|
160
168
|
end
|
|
161
169
|
|
|
162
170
|
doc('rds') do |docs|
|
data/lib/aws-sdk-core/version.rb
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
Aws.add_service(:WorkDocs, {
|
|
2
|
+
api: "#{Aws::API_DIR}/workdocs/2016-05-01/api-2.json",
|
|
3
|
+
docs: "#{Aws::API_DIR}/workdocs/2016-05-01/docs-2.json",
|
|
4
|
+
examples: "#{Aws::API_DIR}/workdocs/2016-05-01/examples-1.json",
|
|
5
|
+
paginators: "#{Aws::API_DIR}/workdocs/2016-05-01/paginators-1.json",
|
|
6
|
+
})
|
data/service-models.json
CHANGED
|
@@ -366,6 +366,10 @@
|
|
|
366
366
|
"models": "waf-regional/2016-11-28",
|
|
367
367
|
"endpoint": "waf-regional"
|
|
368
368
|
},
|
|
369
|
+
"WorkDocs": {
|
|
370
|
+
"models": "workdocs/2016-05-01",
|
|
371
|
+
"endpoint": "workdocs"
|
|
372
|
+
},
|
|
369
373
|
"WorkSpaces": {
|
|
370
374
|
"models": "workspaces/2015-04-08",
|
|
371
375
|
"endpoint": "workspaces"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -375,6 +375,9 @@ files:
|
|
|
375
375
|
- apis/waf/2015-08-24/api-2.json
|
|
376
376
|
- apis/waf/2015-08-24/examples-1.json
|
|
377
377
|
- apis/waf/2015-08-24/paginators-1.json
|
|
378
|
+
- apis/workdocs/2016-05-01/api-2.json
|
|
379
|
+
- apis/workdocs/2016-05-01/examples-1.json
|
|
380
|
+
- apis/workdocs/2016-05-01/paginators-1.json
|
|
378
381
|
- apis/workspaces/2015-04-08/api-2.json
|
|
379
382
|
- apis/workspaces/2015-04-08/examples-1.json
|
|
380
383
|
- apis/workspaces/2015-04-08/paginators-1.json
|
|
@@ -622,6 +625,7 @@ files:
|
|
|
622
625
|
- lib/aws-sdk-core/waiters/poller.rb
|
|
623
626
|
- lib/aws-sdk-core/waiters/provider.rb
|
|
624
627
|
- lib/aws-sdk-core/waiters/waiter.rb
|
|
628
|
+
- lib/aws-sdk-core/workdocs.rb
|
|
625
629
|
- lib/aws-sdk-core/workspaces.rb
|
|
626
630
|
- lib/aws-sdk-core/xml/builder.rb
|
|
627
631
|
- lib/aws-sdk-core/xml/default_list.rb
|