aws-sdk-core 2.11.547 → 2.11.552

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/apis/cloudfront/2020-05-31/api-2.json +5095 -0
  3. data/apis/cloudfront/2020-05-31/examples-1.json +5 -0
  4. data/apis/cloudfront/2020-05-31/paginators-1.json +32 -0
  5. data/apis/cloudfront/2020-05-31/smoke.json +20 -0
  6. data/apis/cloudfront/2020-05-31/waiters-2.json +47 -0
  7. data/apis/codebuild/2016-10-06/api-2.json +13 -3
  8. data/apis/codeguruprofiler/2019-07-18/api-2.json +120 -3
  9. data/apis/config/2014-11-12/api-2.json +12 -5
  10. data/apis/ec2/2016-11-15/api-2.json +13 -1
  11. data/apis/fms/2018-01-01/api-2.json +515 -1
  12. data/apis/frauddetector/2019-11-15/api-2.json +881 -243
  13. data/apis/frauddetector/2019-11-15/paginators-1.json +20 -0
  14. data/apis/fsx/2018-03-01/api-2.json +35 -2
  15. data/apis/glue/2017-03-31/api-2.json +4 -1
  16. data/apis/groundstation/2019-05-23/api-2.json +53 -1
  17. data/apis/kendra/2019-02-03/api-2.json +38 -4
  18. data/apis/lightsail/2016-11-28/api-2.json +748 -2
  19. data/apis/macie2/2020-01-01/api-2.json +23 -2
  20. data/apis/mediaconnect/2018-11-14/api-2.json +19 -0
  21. data/apis/medialive/2017-10-14/api-2.json +136 -51
  22. data/apis/mediapackage/2017-10-12/api-2.json +5 -4
  23. data/apis/monitoring/2010-08-01/api-2.json +6 -1
  24. data/apis/mq/2017-11-27/api-2.json +202 -0
  25. data/apis/mq/2017-11-27/paginators-1.json +8 -1
  26. data/apis/quicksight/2018-04-01/api-2.json +625 -3
  27. data/apis/quicksight/2018-04-01/paginators-1.json +5 -0
  28. data/apis/rds/2014-10-31/api-2.json +5 -2
  29. data/apis/sagemaker/2017-07-24/api-2.json +286 -34
  30. data/apis/sagemaker/2017-07-24/paginators-1.json +6 -0
  31. data/apis/workspaces/2015-04-08/api-2.json +90 -1
  32. data/endpoints.json +11 -0
  33. data/lib/aws-sdk-core/cloudfront.rb +5 -5
  34. data/lib/aws-sdk-core/version.rb +1 -1
  35. data/service-models.json +1 -1
  36. metadata +7 -2
@@ -180,6 +180,12 @@
180
180
  "limit_key": "MaxResults",
181
181
  "result_key": "UserProfiles"
182
182
  },
183
+ "ListWorkforces": {
184
+ "input_token": "NextToken",
185
+ "output_token": "NextToken",
186
+ "limit_key": "MaxResults",
187
+ "result_key": "Workforces"
188
+ },
183
189
  "ListWorkteams": {
184
190
  "input_token": "NextToken",
185
191
  "output_token": "NextToken",
@@ -251,6 +251,20 @@
251
251
  {"shape":"InvalidParameterValuesException"}
252
252
  ]
253
253
  },
254
+ "DescribeWorkspaceImagePermissions":{
255
+ "name":"DescribeWorkspaceImagePermissions",
256
+ "http":{
257
+ "method":"POST",
258
+ "requestUri":"/"
259
+ },
260
+ "input":{"shape":"DescribeWorkspaceImagePermissionsRequest"},
261
+ "output":{"shape":"DescribeWorkspaceImagePermissionsResult"},
262
+ "errors":[
263
+ {"shape":"ResourceNotFoundException"},
264
+ {"shape":"AccessDeniedException"},
265
+ {"shape":"InvalidParameterValuesException"}
266
+ ]
267
+ },
254
268
  "DescribeWorkspaceImages":{
255
269
  "name":"DescribeWorkspaceImages",
256
270
  "http":{
@@ -575,6 +589,22 @@
575
589
  {"shape":"InvalidResourceStateException"},
576
590
  {"shape":"AccessDeniedException"}
577
591
  ]
592
+ },
593
+ "UpdateWorkspaceImagePermission":{
594
+ "name":"UpdateWorkspaceImagePermission",
595
+ "http":{
596
+ "method":"POST",
597
+ "requestUri":"/"
598
+ },
599
+ "input":{"shape":"UpdateWorkspaceImagePermissionRequest"},
600
+ "output":{"shape":"UpdateWorkspaceImagePermissionResult"},
601
+ "errors":[
602
+ {"shape":"ResourceNotFoundException"},
603
+ {"shape":"ResourceUnavailableException"},
604
+ {"shape":"AccessDeniedException"},
605
+ {"shape":"InvalidParameterValuesException"},
606
+ {"shape":"OperationNotSupportedException"}
607
+ ]
578
608
  }
579
609
  },
580
610
  "shapes":{
@@ -644,6 +674,10 @@
644
674
  "members":{
645
675
  }
646
676
  },
677
+ "AwsAccount":{
678
+ "type":"string",
679
+ "pattern":"^\\d{12}$"
680
+ },
647
681
  "BooleanObject":{"type":"boolean"},
648
682
  "BundleId":{
649
683
  "type":"string",
@@ -958,10 +992,28 @@
958
992
  "NextToken":{"shape":"PaginationToken"}
959
993
  }
960
994
  },
995
+ "DescribeWorkspaceImagePermissionsRequest":{
996
+ "type":"structure",
997
+ "required":["ImageId"],
998
+ "members":{
999
+ "ImageId":{"shape":"WorkspaceImageId"},
1000
+ "NextToken":{"shape":"PaginationToken"},
1001
+ "MaxResults":{"shape":"Limit"}
1002
+ }
1003
+ },
1004
+ "DescribeWorkspaceImagePermissionsResult":{
1005
+ "type":"structure",
1006
+ "members":{
1007
+ "ImageId":{"shape":"WorkspaceImageId"},
1008
+ "ImagePermissions":{"shape":"ImagePermissions"},
1009
+ "NextToken":{"shape":"PaginationToken"}
1010
+ }
1011
+ },
961
1012
  "DescribeWorkspaceImagesRequest":{
962
1013
  "type":"structure",
963
1014
  "members":{
964
1015
  "ImageIds":{"shape":"WorkspaceImageIdList"},
1016
+ "ImageType":{"shape":"ImageType"},
965
1017
  "NextToken":{"shape":"PaginationToken"},
966
1018
  "MaxResults":{"shape":"Limit"}
967
1019
  }
@@ -1103,6 +1155,23 @@
1103
1155
  "ErrorMessage":{"shape":"Description"}
1104
1156
  }
1105
1157
  },
1158
+ "ImagePermission":{
1159
+ "type":"structure",
1160
+ "members":{
1161
+ "SharedAccountId":{"shape":"AwsAccount"}
1162
+ }
1163
+ },
1164
+ "ImagePermissions":{
1165
+ "type":"list",
1166
+ "member":{"shape":"ImagePermission"}
1167
+ },
1168
+ "ImageType":{
1169
+ "type":"string",
1170
+ "enum":[
1171
+ "OWNED",
1172
+ "SHARED"
1173
+ ]
1174
+ },
1106
1175
  "ImportWorkspaceImageRequest":{
1107
1176
  "type":"structure",
1108
1177
  "required":[
@@ -1751,6 +1820,24 @@
1751
1820
  "members":{
1752
1821
  }
1753
1822
  },
1823
+ "UpdateWorkspaceImagePermissionRequest":{
1824
+ "type":"structure",
1825
+ "required":[
1826
+ "ImageId",
1827
+ "AllowCopyImage",
1828
+ "SharedAccountId"
1829
+ ],
1830
+ "members":{
1831
+ "ImageId":{"shape":"WorkspaceImageId"},
1832
+ "AllowCopyImage":{"shape":"BooleanObject"},
1833
+ "SharedAccountId":{"shape":"AwsAccount"}
1834
+ }
1835
+ },
1836
+ "UpdateWorkspaceImagePermissionResult":{
1837
+ "type":"structure",
1838
+ "members":{
1839
+ }
1840
+ },
1754
1841
  "UserName":{
1755
1842
  "type":"string",
1756
1843
  "max":63,
@@ -1892,7 +1979,9 @@
1892
1979
  "State":{"shape":"WorkspaceImageState"},
1893
1980
  "RequiredTenancy":{"shape":"WorkspaceImageRequiredTenancy"},
1894
1981
  "ErrorCode":{"shape":"WorkspaceImageErrorCode"},
1895
- "ErrorMessage":{"shape":"Description"}
1982
+ "ErrorMessage":{"shape":"Description"},
1983
+ "Created":{"shape":"Timestamp"},
1984
+ "OwnerAccountId":{"shape":"AwsAccount"}
1896
1985
  }
1897
1986
  },
1898
1987
  "WorkspaceImageDescription":{
@@ -2401,6 +2401,7 @@
2401
2401
  },
2402
2402
  "firehose" : {
2403
2403
  "endpoints" : {
2404
+ "af-south-1" : { },
2404
2405
  "ap-east-1" : { },
2405
2406
  "ap-northeast-1" : { },
2406
2407
  "ap-northeast-2" : { },
@@ -2410,6 +2411,7 @@
2410
2411
  "ca-central-1" : { },
2411
2412
  "eu-central-1" : { },
2412
2413
  "eu-north-1" : { },
2414
+ "eu-south-1" : { },
2413
2415
  "eu-west-1" : { },
2414
2416
  "eu-west-2" : { },
2415
2417
  "eu-west-3" : { },
@@ -3945,6 +3947,7 @@
3945
3947
  "ca-central-1" : { },
3946
3948
  "eu-central-1" : { },
3947
3949
  "eu-north-1" : { },
3950
+ "eu-south-1" : { },
3948
3951
  "eu-west-1" : { },
3949
3952
  "eu-west-2" : { },
3950
3953
  "eu-west-3" : { },
@@ -8511,6 +8514,14 @@
8511
8514
  "us-iso-east-1" : { }
8512
8515
  }
8513
8516
  },
8517
+ "transcribe" : {
8518
+ "defaults" : {
8519
+ "protocols" : [ "https" ]
8520
+ },
8521
+ "endpoints" : {
8522
+ "us-iso-east-1" : { }
8523
+ }
8524
+ },
8514
8525
  "transcribestreaming" : {
8515
8526
  "endpoints" : {
8516
8527
  "us-iso-east-1" : { }
@@ -1,9 +1,9 @@
1
1
  Aws.add_service(:CloudFront, {
2
- api: "#{Aws::API_DIR}/cloudfront/2019-03-26/api-2.json",
3
- docs: "#{Aws::API_DIR}/cloudfront/2019-03-26/docs-2.json",
4
- examples: "#{Aws::API_DIR}/cloudfront/2019-03-26/examples-1.json",
5
- paginators: "#{Aws::API_DIR}/cloudfront/2019-03-26/paginators-1.json",
6
- waiters: "#{Aws::API_DIR}/cloudfront/2019-03-26/waiters-2.json",
2
+ api: "#{Aws::API_DIR}/cloudfront/2020-05-31/api-2.json",
3
+ docs: "#{Aws::API_DIR}/cloudfront/2020-05-31/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/cloudfront/2020-05-31/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/cloudfront/2020-05-31/paginators-1.json",
6
+ waiters: "#{Aws::API_DIR}/cloudfront/2020-05-31/waiters-2.json",
7
7
  })
8
8
 
9
9
  module Aws
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.547'
2
+ VERSION = '2.11.552'
3
3
  end
@@ -104,7 +104,7 @@
104
104
  "endpoint": "cloudformation"
105
105
  },
106
106
  "CloudFront": {
107
- "models": "cloudfront/2019-03-26",
107
+ "models": "cloudfront/2020-05-31",
108
108
  "endpoint": "cloudfront"
109
109
  },
110
110
  "CloudHSM": {
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.547
4
+ version: 2.11.552
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-17 00:00:00.000000000 Z
11
+ date: 2020-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -192,6 +192,11 @@ files:
192
192
  - apis/cloudfront/2019-03-26/paginators-1.json
193
193
  - apis/cloudfront/2019-03-26/smoke.json
194
194
  - apis/cloudfront/2019-03-26/waiters-2.json
195
+ - apis/cloudfront/2020-05-31/api-2.json
196
+ - apis/cloudfront/2020-05-31/examples-1.json
197
+ - apis/cloudfront/2020-05-31/paginators-1.json
198
+ - apis/cloudfront/2020-05-31/smoke.json
199
+ - apis/cloudfront/2020-05-31/waiters-2.json
195
200
  - apis/cloudhsm/2014-05-30/api-2.json
196
201
  - apis/cloudhsm/2014-05-30/examples-1.json
197
202
  - apis/cloudhsm/2014-05-30/paginators-1.json