aws-sdk-core 2.6.46 → 2.6.47

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,27 +2,27 @@
2
2
  "pagination": {
3
3
  "ListJobs": {
4
4
  "input_token": "marker",
5
- "output_token": "Marker",
6
5
  "limit_key": "limit",
6
+ "output_token": "Marker",
7
7
  "result_key": "JobList"
8
8
  },
9
9
  "ListMultipartUploads": {
10
10
  "input_token": "marker",
11
- "output_token": "Marker",
12
11
  "limit_key": "limit",
12
+ "output_token": "Marker",
13
13
  "result_key": "UploadsList"
14
14
  },
15
15
  "ListParts": {
16
16
  "input_token": "marker",
17
- "output_token": "Marker",
18
17
  "limit_key": "limit",
18
+ "output_token": "Marker",
19
19
  "result_key": "Parts"
20
20
  },
21
21
  "ListVaults": {
22
22
  "input_token": "marker",
23
- "output_token": "Marker",
24
23
  "limit_key": "limit",
24
+ "output_token": "Marker",
25
25
  "result_key": "VaultList"
26
26
  }
27
27
  }
28
- }
28
+ }
@@ -1,5 +1,171 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "DeleteLexicon": [
5
+ {
6
+ "input": {
7
+ "Name": "example"
8
+ },
9
+ "output": {
10
+ },
11
+ "comments": {
12
+ "input": {
13
+ },
14
+ "output": {
15
+ }
16
+ },
17
+ "description": "Deletes a specified pronunciation lexicon stored in an AWS Region.",
18
+ "id": "to-delete-a-lexicon-1481922498332",
19
+ "title": "To delete a lexicon"
20
+ }
21
+ ],
22
+ "DescribeVoices": [
23
+ {
24
+ "input": {
25
+ "LanguageCode": "en-GB"
26
+ },
27
+ "output": {
28
+ "Voices": [
29
+ {
30
+ "Gender": "Female",
31
+ "Id": "Emma",
32
+ "LanguageCode": "en-GB",
33
+ "LanguageName": "British English",
34
+ "Name": "Emma"
35
+ },
36
+ {
37
+ "Gender": "Male",
38
+ "Id": "Brian",
39
+ "LanguageCode": "en-GB",
40
+ "LanguageName": "British English",
41
+ "Name": "Brian"
42
+ },
43
+ {
44
+ "Gender": "Female",
45
+ "Id": "Amy",
46
+ "LanguageCode": "en-GB",
47
+ "LanguageName": "British English",
48
+ "Name": "Amy"
49
+ }
50
+ ]
51
+ },
52
+ "comments": {
53
+ "input": {
54
+ },
55
+ "output": {
56
+ }
57
+ },
58
+ "description": "Returns the list of voices that are available for use when requesting speech synthesis. Displayed languages are those within the specified language code. If no language code is specified, voices for all available languages are displayed.",
59
+ "id": "to-describe-available-voices-1482180557753",
60
+ "title": "To describe available voices"
61
+ }
62
+ ],
63
+ "GetLexicon": [
64
+ {
65
+ "input": {
66
+ "Name": ""
67
+ },
68
+ "output": {
69
+ "Lexicon": {
70
+ "Content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<lexicon version=\"1.0\" \r\n xmlns=\"http://www.w3.org/2005/01/pronunciation-lexicon\"\r\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \r\n xsi:schemaLocation=\"http://www.w3.org/2005/01/pronunciation-lexicon \r\n http://www.w3.org/TR/2007/CR-pronunciation-lexicon-20071212/pls.xsd\"\r\n alphabet=\"ipa\" \r\n xml:lang=\"en-US\">\r\n <lexeme>\r\n <grapheme>W3C</grapheme>\r\n <alias>World Wide Web Consortium</alias>\r\n </lexeme>\r\n</lexicon>",
71
+ "Name": "example"
72
+ },
73
+ "LexiconAttributes": {
74
+ "Alphabet": "ipa",
75
+ "LanguageCode": "en-US",
76
+ "LastModified": 1478542980.117,
77
+ "LexemesCount": 1,
78
+ "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
79
+ "Size": 503
80
+ }
81
+ },
82
+ "comments": {
83
+ "input": {
84
+ },
85
+ "output": {
86
+ }
87
+ },
88
+ "description": "Returns the content of the specified pronunciation lexicon stored in an AWS Region.",
89
+ "id": "to-retrieve-a-lexicon-1481912870836",
90
+ "title": "To retrieve a lexicon"
91
+ }
92
+ ],
93
+ "ListLexicons": [
94
+ {
95
+ "input": {
96
+ },
97
+ "output": {
98
+ "Lexicons": [
99
+ {
100
+ "Attributes": {
101
+ "Alphabet": "ipa",
102
+ "LanguageCode": "en-US",
103
+ "LastModified": 1478542980.117,
104
+ "LexemesCount": 1,
105
+ "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
106
+ "Size": 503
107
+ },
108
+ "Name": "example"
109
+ }
110
+ ]
111
+ },
112
+ "comments": {
113
+ "input": {
114
+ },
115
+ "output": {
116
+ }
117
+ },
118
+ "description": "Returns a list of pronunciation lexicons stored in an AWS Region.",
119
+ "id": "to-list-all-lexicons-in-a-region-1481842106487",
120
+ "title": "To list all lexicons in a region"
121
+ }
122
+ ],
123
+ "PutLexicon": [
124
+ {
125
+ "input": {
126
+ "Content": "file://example.pls",
127
+ "Name": "W3C"
128
+ },
129
+ "output": {
130
+ },
131
+ "comments": {
132
+ "input": {
133
+ },
134
+ "output": {
135
+ }
136
+ },
137
+ "description": "Stores a pronunciation lexicon in an AWS Region.",
138
+ "id": "to-save-a-lexicon-1482272584088",
139
+ "title": "To save a lexicon"
140
+ }
141
+ ],
142
+ "SynthesizeSpeech": [
143
+ {
144
+ "input": {
145
+ "LexiconNames": [
146
+ "example"
147
+ ],
148
+ "OutputFormat": "mp3",
149
+ "SampleRate": "8000",
150
+ "Text": "All Gaul is divided into three parts",
151
+ "TextType": "text",
152
+ "VoiceId": "Joanna"
153
+ },
154
+ "output": {
155
+ "AudioStream": "TEXT",
156
+ "ContentType": "audio/mpeg",
157
+ "RequestCharacters": 37
158
+ },
159
+ "comments": {
160
+ "input": {
161
+ },
162
+ "output": {
163
+ }
164
+ },
165
+ "description": "Synthesizes plain text or SSML into a file of human-like speech.",
166
+ "id": "to-synthesize-speech-1482186064046",
167
+ "title": "To synthesize speech"
168
+ }
169
+ ]
4
170
  }
5
171
  }
@@ -1,16 +1,16 @@
1
- {
2
- "pagination": {
3
- "ListCollections" : {
4
- "input_token" : "NextToken",
5
- "output_token" : "NextToken",
6
- "limit_key" : "MaxResults",
7
- "result_key" : "CollectionIds"
8
- },
9
- "ListFaces": {
10
- "input_token" : "NextToken",
11
- "output_token" : "NextToken",
12
- "limit_key" : "MaxResults",
13
- "result_key" : "Faces"
14
- }
15
- }
16
- }
1
+ {
2
+ "pagination": {
3
+ "ListCollections": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken",
7
+ "result_key": "CollectionIds"
8
+ },
9
+ "ListFaces": {
10
+ "input_token": "NextToken",
11
+ "limit_key": "MaxResults",
12
+ "output_token": "NextToken",
13
+ "result_key": "Faces"
14
+ }
15
+ }
16
+ }
@@ -971,8 +971,10 @@
971
971
  "us-east-2",
972
972
  "us-west-1",
973
973
  "us-west-2",
974
+ "ca-central-1",
974
975
  "eu-central-1",
975
976
  "eu-west-1",
977
+ "eu-west-2",
976
978
  "ap-south-1",
977
979
  "ap-southeast-1",
978
980
  "ap-southeast-2",
@@ -2,32 +2,32 @@
2
2
  "pagination": {
3
3
  "ListHealthChecks": {
4
4
  "input_token": "Marker",
5
- "output_token": "NextMarker",
6
- "more_results": "IsTruncated",
7
5
  "limit_key": "MaxItems",
6
+ "more_results": "IsTruncated",
7
+ "output_token": "NextMarker",
8
8
  "result_key": "HealthChecks"
9
9
  },
10
10
  "ListHostedZones": {
11
11
  "input_token": "Marker",
12
- "output_token": "NextMarker",
13
- "more_results": "IsTruncated",
14
12
  "limit_key": "MaxItems",
13
+ "more_results": "IsTruncated",
14
+ "output_token": "NextMarker",
15
15
  "result_key": "HostedZones"
16
16
  },
17
17
  "ListResourceRecordSets": {
18
- "more_results": "IsTruncated",
19
- "limit_key": "MaxItems",
20
- "result_key": "ResourceRecordSets",
21
18
  "input_token": [
22
19
  "StartRecordName",
23
20
  "StartRecordType",
24
21
  "StartRecordIdentifier"
25
22
  ],
23
+ "limit_key": "MaxItems",
24
+ "more_results": "IsTruncated",
26
25
  "output_token": [
27
26
  "NextRecordName",
28
27
  "NextRecordType",
29
28
  "NextRecordIdentifier"
30
- ]
29
+ ],
30
+ "result_key": "ResourceRecordSets"
31
31
  }
32
32
  }
33
- }
33
+ }
@@ -885,6 +885,11 @@
885
885
  }
886
886
  },
887
887
  "metering.marketplace": {
888
+ "defaults": {
889
+ "credentialScope": {
890
+ "service": "aws-marketplace"
891
+ }
892
+ },
888
893
  "endpoints": {
889
894
  "ap-northeast-1": {},
890
895
  "ap-southeast-1": {},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.6.46'
2
+ VERSION = '2.6.47'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.46
4
+ version: 2.6.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-16 00:00:00.000000000 Z
11
+ date: 2017-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath