aws-sdk-core 2.11.546 → 2.11.547

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d6a65cf662d89aa0ed190e1474cd03006915474fe174a7814b57da5c7ab18ef
4
- data.tar.gz: 31c16beccec1b0e5b6e089c5a5d0f75be112f32b9c890497e4a25b7ed1dd9932
3
+ metadata.gz: 987d045c2ccb00544b9ad2b834e2f165ee864bb27ab5b8bdaca69b2ac73f017a
4
+ data.tar.gz: b6e0dc8e5150d6f305a0f156b244d2f95da8aaa7c259917a83ea50f5f27bc5a2
5
5
  SHA512:
6
- metadata.gz: f08cc655718b116e23248fe473adfd78dd10c10554c7b1476bc7711e2d8f614577436807e1d8bfe8a4bcbd9c46508d65047323a4132c020dc9ba5fd604d8ca55
7
- data.tar.gz: 82fd6fc4699fdaea151f56ef8add4810a6b97e6fba8312818b9826e5de7b9222b8a87eb2f4747a8b02bc7bc445657d83eaeddcaccab7f0ff0bdd280abfaaafb4
6
+ metadata.gz: 010be5791ecd629fb2224fecc005fde24fd02ca161cd31ab7d5e9bf3018b3fee28da52b1fdb96a4653920add121d9e02589fe0266f95f5c15bfae3d51a0332a8
7
+ data.tar.gz: 7a76b7bb57c9ade2bcde1ae9437fd1afe2767a5d05a20ded19b0545bad09d89b8728fc8dc1202c24f14a83352fbd37a8ceb925d6ae3b91f17e1a210030f1eecb
@@ -301,6 +301,20 @@
301
301
  {"shape":"InternalServiceException"}
302
302
  ]
303
303
  },
304
+ "ResumeContactRecording":{
305
+ "name":"ResumeContactRecording",
306
+ "http":{
307
+ "method":"POST",
308
+ "requestUri":"/contact/resume-recording"
309
+ },
310
+ "input":{"shape":"ResumeContactRecordingRequest"},
311
+ "output":{"shape":"ResumeContactRecordingResponse"},
312
+ "errors":[
313
+ {"shape":"InvalidRequestException"},
314
+ {"shape":"ResourceNotFoundException"},
315
+ {"shape":"InternalServiceException"}
316
+ ]
317
+ },
304
318
  "StartChatContact":{
305
319
  "name":"StartChatContact",
306
320
  "http":{
@@ -317,6 +331,21 @@
317
331
  {"shape":"LimitExceededException"}
318
332
  ]
319
333
  },
334
+ "StartContactRecording":{
335
+ "name":"StartContactRecording",
336
+ "http":{
337
+ "method":"POST",
338
+ "requestUri":"/contact/start-recording"
339
+ },
340
+ "input":{"shape":"StartContactRecordingRequest"},
341
+ "output":{"shape":"StartContactRecordingResponse"},
342
+ "errors":[
343
+ {"shape":"InvalidRequestException"},
344
+ {"shape":"InvalidParameterException"},
345
+ {"shape":"ResourceNotFoundException"},
346
+ {"shape":"InternalServiceException"}
347
+ ]
348
+ },
320
349
  "StartOutboundVoiceContact":{
321
350
  "name":"StartOutboundVoiceContact",
322
351
  "http":{
@@ -351,6 +380,34 @@
351
380
  {"shape":"InternalServiceException"}
352
381
  ]
353
382
  },
383
+ "StopContactRecording":{
384
+ "name":"StopContactRecording",
385
+ "http":{
386
+ "method":"POST",
387
+ "requestUri":"/contact/stop-recording"
388
+ },
389
+ "input":{"shape":"StopContactRecordingRequest"},
390
+ "output":{"shape":"StopContactRecordingResponse"},
391
+ "errors":[
392
+ {"shape":"InvalidRequestException"},
393
+ {"shape":"ResourceNotFoundException"},
394
+ {"shape":"InternalServiceException"}
395
+ ]
396
+ },
397
+ "SuspendContactRecording":{
398
+ "name":"SuspendContactRecording",
399
+ "http":{
400
+ "method":"POST",
401
+ "requestUri":"/contact/suspend-recording"
402
+ },
403
+ "input":{"shape":"SuspendContactRecordingRequest"},
404
+ "output":{"shape":"SuspendContactRecordingResponse"},
405
+ "errors":[
406
+ {"shape":"InvalidRequestException"},
407
+ {"shape":"ResourceNotFoundException"},
408
+ {"shape":"InternalServiceException"}
409
+ ]
410
+ },
354
411
  "TagResource":{
355
412
  "name":"TagResource",
356
413
  "http":{
@@ -1754,6 +1811,24 @@
1754
1811
  "error":{"httpStatusCode":404},
1755
1812
  "exception":true
1756
1813
  },
1814
+ "ResumeContactRecordingRequest":{
1815
+ "type":"structure",
1816
+ "required":[
1817
+ "InstanceId",
1818
+ "ContactId",
1819
+ "InitialContactId"
1820
+ ],
1821
+ "members":{
1822
+ "InstanceId":{"shape":"InstanceId"},
1823
+ "ContactId":{"shape":"ContactId"},
1824
+ "InitialContactId":{"shape":"ContactId"}
1825
+ }
1826
+ },
1827
+ "ResumeContactRecordingResponse":{
1828
+ "type":"structure",
1829
+ "members":{
1830
+ }
1831
+ },
1757
1832
  "RoutingProfileId":{"type":"string"},
1758
1833
  "RoutingProfileName":{
1759
1834
  "type":"string",
@@ -1823,6 +1898,26 @@
1823
1898
  "ParticipantToken":{"shape":"ParticipantToken"}
1824
1899
  }
1825
1900
  },
1901
+ "StartContactRecordingRequest":{
1902
+ "type":"structure",
1903
+ "required":[
1904
+ "InstanceId",
1905
+ "ContactId",
1906
+ "InitialContactId",
1907
+ "VoiceRecordingConfiguration"
1908
+ ],
1909
+ "members":{
1910
+ "InstanceId":{"shape":"InstanceId"},
1911
+ "ContactId":{"shape":"ContactId"},
1912
+ "InitialContactId":{"shape":"ContactId"},
1913
+ "VoiceRecordingConfiguration":{"shape":"VoiceRecordingConfiguration"}
1914
+ }
1915
+ },
1916
+ "StartContactRecordingResponse":{
1917
+ "type":"structure",
1918
+ "members":{
1919
+ }
1920
+ },
1826
1921
  "StartOutboundVoiceContactRequest":{
1827
1922
  "type":"structure",
1828
1923
  "required":[
@@ -1857,6 +1952,24 @@
1857
1952
  "AVG"
1858
1953
  ]
1859
1954
  },
1955
+ "StopContactRecordingRequest":{
1956
+ "type":"structure",
1957
+ "required":[
1958
+ "InstanceId",
1959
+ "ContactId",
1960
+ "InitialContactId"
1961
+ ],
1962
+ "members":{
1963
+ "InstanceId":{"shape":"InstanceId"},
1964
+ "ContactId":{"shape":"ContactId"},
1965
+ "InitialContactId":{"shape":"ContactId"}
1966
+ }
1967
+ },
1968
+ "StopContactRecordingResponse":{
1969
+ "type":"structure",
1970
+ "members":{
1971
+ }
1972
+ },
1860
1973
  "StopContactRequest":{
1861
1974
  "type":"structure",
1862
1975
  "required":[
@@ -1873,6 +1986,24 @@
1873
1986
  "members":{
1874
1987
  }
1875
1988
  },
1989
+ "SuspendContactRecordingRequest":{
1990
+ "type":"structure",
1991
+ "required":[
1992
+ "InstanceId",
1993
+ "ContactId",
1994
+ "InitialContactId"
1995
+ ],
1996
+ "members":{
1997
+ "InstanceId":{"shape":"InstanceId"},
1998
+ "ContactId":{"shape":"ContactId"},
1999
+ "InitialContactId":{"shape":"ContactId"}
2000
+ }
2001
+ },
2002
+ "SuspendContactRecordingResponse":{
2003
+ "type":"structure",
2004
+ "members":{
2005
+ }
2006
+ },
1876
2007
  "TagKey":{
1877
2008
  "type":"string",
1878
2009
  "max":128,
@@ -2134,6 +2265,20 @@
2134
2265
  "member":{"shape":"UserSummary"}
2135
2266
  },
2136
2267
  "Value":{"type":"double"},
2268
+ "VoiceRecordingConfiguration":{
2269
+ "type":"structure",
2270
+ "members":{
2271
+ "VoiceRecordingTrack":{"shape":"VoiceRecordingTrack"}
2272
+ }
2273
+ },
2274
+ "VoiceRecordingTrack":{
2275
+ "type":"string",
2276
+ "enum":[
2277
+ "FROM_AGENT",
2278
+ "TO_AGENT",
2279
+ "ALL"
2280
+ ]
2281
+ },
2137
2282
  "timestamp":{"type":"timestamp"}
2138
2283
  }
2139
2284
  }
@@ -3941,7 +3941,7 @@
3941
3941
  "type":"structure",
3942
3942
  "members":{
3943
3943
  "Domain":{"shape":"DomainType"},
3944
- "Address":{"shape":"String"},
3944
+ "Address":{"shape":"PublicIpAddress"},
3945
3945
  "PublicIpv4Pool":{"shape":"String"},
3946
3946
  "NetworkBorderGroup":{"shape":"String"},
3947
3947
  "CustomerOwnedIpv4Pool":{"shape":"String"},
@@ -6203,6 +6203,13 @@
6203
6203
  }
6204
6204
  },
6205
6205
  "ConnectionNotificationId":{"type":"string"},
6206
+ "ConnectionNotificationIdsList":{
6207
+ "type":"list",
6208
+ "member":{
6209
+ "shape":"ConnectionNotificationId",
6210
+ "locationName":"item"
6211
+ }
6212
+ },
6206
6213
  "ConnectionNotificationSet":{
6207
6214
  "type":"list",
6208
6215
  "member":{
@@ -6283,7 +6290,7 @@
6283
6290
  ],
6284
6291
  "members":{
6285
6292
  "DryRun":{"shape":"Boolean"},
6286
- "SourceFpgaImageId":{"shape":"FpgaImageId"},
6293
+ "SourceFpgaImageId":{"shape":"String"},
6287
6294
  "Description":{"shape":"String"},
6288
6295
  "Name":{"shape":"String"},
6289
6296
  "SourceRegion":{"shape":"String"},
@@ -9083,7 +9090,7 @@
9083
9090
  "members":{
9084
9091
  "DryRun":{"shape":"Boolean"},
9085
9092
  "ConnectionNotificationIds":{
9086
- "shape":"ValueStringList",
9093
+ "shape":"ConnectionNotificationIdsList",
9087
9094
  "locationName":"ConnectionNotificationId"
9088
9095
  }
9089
9096
  }
@@ -17573,7 +17580,7 @@
17573
17580
  "InstanceIdSet":{
17574
17581
  "type":"list",
17575
17582
  "member":{
17576
- "shape":"String",
17583
+ "shape":"InstanceId",
17577
17584
  "locationName":"item"
17578
17585
  }
17579
17586
  },
@@ -22913,6 +22920,7 @@
22913
22920
  }
22914
22921
  }
22915
22922
  },
22923
+ "PublicIpAddress":{"type":"string"},
22916
22924
  "PublicIpStringList":{
22917
22925
  "type":"list",
22918
22926
  "member":{
@@ -9,6 +9,12 @@
9
9
  "DescribeConfigurationOptions": {
10
10
  "result_key": "Options"
11
11
  },
12
+ "DescribeEnvironmentManagedActionHistory": {
13
+ "input_token": "NextToken",
14
+ "limit_key": "MaxItems",
15
+ "output_token": "NextToken",
16
+ "result_key": "ManagedActionHistoryItems"
17
+ },
12
18
  "DescribeEnvironments": {
13
19
  "result_key": "Environments"
14
20
  },
@@ -25,6 +31,12 @@
25
31
  "input_token": "NextToken",
26
32
  "limit_key": "MaxRecords",
27
33
  "output_token": "NextToken"
34
+ },
35
+ "ListPlatformVersions": {
36
+ "input_token": "NextToken",
37
+ "limit_key": "MaxRecords",
38
+ "output_token": "NextToken",
39
+ "result_key": "PlatformSummaryList"
28
40
  }
29
41
  }
30
42
  }
@@ -0,0 +1,63 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "EnvironmentExists": {
5
+ "delay": 20,
6
+ "maxAttempts": 20,
7
+ "operation": "DescribeEnvironments",
8
+ "acceptors": [
9
+ {
10
+ "state": "success",
11
+ "matcher": "pathAll",
12
+ "argument": "Environments[].Status",
13
+ "expected": "Ready"
14
+ },
15
+ {
16
+ "state": "retry",
17
+ "matcher": "pathAll",
18
+ "argument": "Environments[].Status",
19
+ "expected": "Launching"
20
+ }
21
+ ]
22
+ },
23
+ "EnvironmentUpdated": {
24
+ "delay": 20,
25
+ "maxAttempts": 20,
26
+ "operation": "DescribeEnvironments",
27
+ "acceptors": [
28
+ {
29
+ "state": "success",
30
+ "matcher": "pathAll",
31
+ "argument": "Environments[].Status",
32
+ "expected": "Ready"
33
+ },
34
+ {
35
+ "state": "retry",
36
+ "matcher": "pathAll",
37
+ "argument": "Environments[].Status",
38
+ "expected": "Updating"
39
+ }
40
+ ]
41
+ },
42
+ "EnvironmentTerminated": {
43
+ "delay": 20,
44
+ "maxAttempts": 20,
45
+ "operation": "DescribeEnvironments",
46
+ "acceptors": [
47
+ {
48
+ "state": "success",
49
+ "matcher": "pathAll",
50
+ "argument": "Environments[].Status",
51
+ "expected": "Terminated"
52
+ },
53
+ {
54
+ "state": "retry",
55
+ "matcher": "pathAll",
56
+ "argument": "Environments[].Status",
57
+ "expected": "Terminating"
58
+ }
59
+ ]
60
+ }
61
+ }
62
+ }
63
+
@@ -3313,6 +3313,10 @@
3313
3313
  "FindingsFilterListItem": {
3314
3314
  "type": "structure",
3315
3315
  "members": {
3316
+ "action": {
3317
+ "shape": "FindingsFilterAction",
3318
+ "locationName": "action"
3319
+ },
3316
3320
  "arn": {
3317
3321
  "shape": "__string",
3318
3322
  "locationName": "arn"
@@ -4414,7 +4418,9 @@
4414
4418
  "Removed",
4415
4419
  "Resigned",
4416
4420
  "EmailVerificationInProgress",
4417
- "EmailVerificationFailed"
4421
+ "EmailVerificationFailed",
4422
+ "RegionDisabled",
4423
+ "AccountSuspended"
4418
4424
  ]
4419
4425
  },
4420
4426
  "ReplicationDetails": {
@@ -1,3 +1,58 @@
1
1
  {
2
- "pagination" : { }
3
- }
2
+ "pagination": {
3
+ "DescribeBuckets": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "buckets"
8
+ },
9
+ "GetUsageStatistics": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "records"
14
+ },
15
+ "ListClassificationJobs": {
16
+ "input_token": "nextToken",
17
+ "output_token": "nextToken",
18
+ "limit_key": "maxResults",
19
+ "result_key": "items"
20
+ },
21
+ "ListCustomDataIdentifiers": {
22
+ "input_token": "nextToken",
23
+ "output_token": "nextToken",
24
+ "limit_key": "maxResults",
25
+ "result_key": "items"
26
+ },
27
+ "ListFindings": {
28
+ "input_token": "nextToken",
29
+ "output_token": "nextToken",
30
+ "limit_key": "maxResults",
31
+ "result_key": "findingIds"
32
+ },
33
+ "ListFindingsFilters": {
34
+ "input_token": "nextToken",
35
+ "output_token": "nextToken",
36
+ "limit_key": "maxResults",
37
+ "result_key": "findingsFilterListItems"
38
+ },
39
+ "ListInvitations": {
40
+ "input_token": "nextToken",
41
+ "output_token": "nextToken",
42
+ "limit_key": "maxResults",
43
+ "result_key": "invitations"
44
+ },
45
+ "ListMembers": {
46
+ "input_token": "nextToken",
47
+ "output_token": "nextToken",
48
+ "limit_key": "maxResults",
49
+ "result_key": "members"
50
+ },
51
+ "ListOrganizationAdminAccounts": {
52
+ "input_token": "nextToken",
53
+ "output_token": "nextToken",
54
+ "limit_key": "maxResults",
55
+ "result_key": "adminAccounts"
56
+ }
57
+ }
58
+ }
@@ -2919,6 +2919,7 @@
2919
2919
  "iotanalytics" : {
2920
2920
  "endpoints" : {
2921
2921
  "ap-northeast-1" : { },
2922
+ "ap-southeast-2" : { },
2922
2923
  "eu-central-1" : { },
2923
2924
  "eu-west-1" : { },
2924
2925
  "us-east-1" : { },
@@ -6237,6 +6238,11 @@
6237
6238
  "cn-northwest-1" : { }
6238
6239
  }
6239
6240
  },
6241
+ "cur" : {
6242
+ "endpoints" : {
6243
+ "cn-northwest-1" : { }
6244
+ }
6245
+ },
6240
6246
  "data.iot" : {
6241
6247
  "defaults" : {
6242
6248
  "credentialScope" : {
@@ -8505,6 +8511,11 @@
8505
8511
  "us-iso-east-1" : { }
8506
8512
  }
8507
8513
  },
8514
+ "transcribestreaming" : {
8515
+ "endpoints" : {
8516
+ "us-iso-east-1" : { }
8517
+ }
8518
+ },
8508
8519
  "workspaces" : {
8509
8520
  "endpoints" : {
8510
8521
  "us-iso-east-1" : { }
@@ -3,4 +3,5 @@ Aws.add_service(:ElasticBeanstalk, {
3
3
  docs: "#{Aws::API_DIR}/elasticbeanstalk/2010-12-01/docs-2.json",
4
4
  examples: "#{Aws::API_DIR}/elasticbeanstalk/2010-12-01/examples-1.json",
5
5
  paginators: "#{Aws::API_DIR}/elasticbeanstalk/2010-12-01/paginators-1.json",
6
+ waiters: "#{Aws::API_DIR}/elasticbeanstalk/2010-12-01/waiters-2.json",
6
7
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.546'
2
+ VERSION = '2.11.547'
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.11.546
4
+ version: 2.11.547
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: 2020-07-15 00:00:00.000000000 Z
11
+ date: 2020-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -382,6 +382,7 @@ files:
382
382
  - apis/elasticbeanstalk/2010-12-01/examples-1.json
383
383
  - apis/elasticbeanstalk/2010-12-01/paginators-1.json
384
384
  - apis/elasticbeanstalk/2010-12-01/smoke.json
385
+ - apis/elasticbeanstalk/2010-12-01/waiters-2.json
385
386
  - apis/elasticfilesystem/2015-02-01/api-2.json
386
387
  - apis/elasticfilesystem/2015-02-01/examples-1.json
387
388
  - apis/elasticfilesystem/2015-02-01/paginators-1.json