aws-sdk-core 2.11.10 → 2.11.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 909970a2b6cb5c5146b13580544b9f9b8d077edc
4
- data.tar.gz: fe7f25f0614568aa182a2bce2cc75a8947d2c65e
3
+ metadata.gz: 16d9cf9388fe0a553b3dc998fef07615483b636b
4
+ data.tar.gz: 0a5af5a90029420dc342e6d87a7392e94a492e05
5
5
  SHA512:
6
- metadata.gz: a2805ae4cf3b69e851e4016e94d3746713f7dc0eb3b377875c359ff7e64800a8cf0bd788c30e9cd1579afad817a15f1e8938dfe58a388e4e50921a9e68c78953
7
- data.tar.gz: 0e269487144dd1a93fbb1e60afcce82360478310b908f9d7a25ba264fcfafda7acdb3c1a4e8eb3598f96353a46520ec290265b0dece3d1021749ff04ee2bf6cb
6
+ metadata.gz: 90d4accbcedd4c0c0adf98737dac1070bcba5c0d487c3b9c4edb27a6401edc3228db34b48676d7d03c4b9a4f6abadb2a0b0a574273ad56bfb223c2ad84d3257f
7
+ data.tar.gz: 784299e03d627d07514e99b3c4fe3667c0847f71dc520aeb024450dffd4b12ff49176f6190142d49968f29176cac85b653bf043def984270cbf9940750bcae39
@@ -774,8 +774,7 @@
774
774
  "VM_NAME",
775
775
  "VM_PATH",
776
776
  "BIOS_ID",
777
- "MOTHERBOARD_SERIAL_NUMBER",
778
- "LABEL"
777
+ "MOTHERBOARD_SERIAL_NUMBER"
779
778
  ]
780
779
  },
781
780
  "ResourceAttributeValue":{
@@ -670,7 +670,8 @@
670
670
  "exitCode":{"shape":"BoxedInteger"},
671
671
  "reason":{"shape":"String"},
672
672
  "networkBindings":{"shape":"NetworkBindings"},
673
- "networkInterfaces":{"shape":"NetworkInterfaces"}
673
+ "networkInterfaces":{"shape":"NetworkInterfaces"},
674
+ "healthStatus":{"shape":"HealthStatus"}
674
675
  }
675
676
  },
676
677
  "ContainerDefinition":{
@@ -702,7 +703,8 @@
702
703
  "dockerSecurityOptions":{"shape":"StringList"},
703
704
  "dockerLabels":{"shape":"DockerLabelsMap"},
704
705
  "ulimits":{"shape":"UlimitList"},
705
- "logConfiguration":{"shape":"LogConfiguration"}
706
+ "logConfiguration":{"shape":"LogConfiguration"},
707
+ "healthCheck":{"shape":"HealthCheck"}
706
708
  }
707
709
  },
708
710
  "ContainerDefinitions":{
@@ -1050,6 +1052,25 @@
1050
1052
  "type":"list",
1051
1053
  "member":{"shape":"Failure"}
1052
1054
  },
1055
+ "HealthCheck":{
1056
+ "type":"structure",
1057
+ "required":["command"],
1058
+ "members":{
1059
+ "command":{"shape":"StringList"},
1060
+ "interval":{"shape":"BoxedInteger"},
1061
+ "timeout":{"shape":"BoxedInteger"},
1062
+ "retries":{"shape":"BoxedInteger"},
1063
+ "startPeriod":{"shape":"BoxedInteger"}
1064
+ }
1065
+ },
1066
+ "HealthStatus":{
1067
+ "type":"string",
1068
+ "enum":[
1069
+ "HEALTHY",
1070
+ "UNHEALTHY",
1071
+ "UNKNOWN"
1072
+ ]
1073
+ },
1053
1074
  "HostEntry":{
1054
1075
  "type":"structure",
1055
1076
  "required":[
@@ -1682,7 +1703,8 @@
1682
1703
  "group":{"shape":"String"},
1683
1704
  "launchType":{"shape":"LaunchType"},
1684
1705
  "platformVersion":{"shape":"String"},
1685
- "attachments":{"shape":"Attachments"}
1706
+ "attachments":{"shape":"Attachments"},
1707
+ "healthStatus":{"shape":"HealthStatus"}
1686
1708
  }
1687
1709
  },
1688
1710
  "TaskDefinition":{
@@ -63,6 +63,33 @@
63
63
  }, {
64
64
  "shape" : "TooManyRequestsException"
65
65
  } ]
66
+ },
67
+ "CreateExportJob" : {
68
+ "name" : "CreateExportJob",
69
+ "http" : {
70
+ "method" : "POST",
71
+ "requestUri" : "/v1/apps/{application-id}/jobs/export",
72
+ "responseCode" : 202
73
+ },
74
+ "input" : {
75
+ "shape" : "CreateExportJobRequest"
76
+ },
77
+ "output" : {
78
+ "shape" : "CreateExportJobResponse"
79
+ },
80
+ "errors" : [ {
81
+ "shape" : "BadRequestException"
82
+ }, {
83
+ "shape" : "InternalServerErrorException"
84
+ }, {
85
+ "shape" : "ForbiddenException"
86
+ }, {
87
+ "shape" : "NotFoundException"
88
+ }, {
89
+ "shape" : "MethodNotAllowedException"
90
+ }, {
91
+ "shape" : "TooManyRequestsException"
92
+ } ]
66
93
  },
67
94
  "CreateImportJob" : {
68
95
  "name" : "CreateImportJob",
@@ -928,6 +955,60 @@
928
955
  "shape" : "TooManyRequestsException"
929
956
  } ]
930
957
  },
958
+ "GetExportJob" : {
959
+ "name" : "GetExportJob",
960
+ "http" : {
961
+ "method" : "GET",
962
+ "requestUri" : "/v1/apps/{application-id}/jobs/export/{job-id}",
963
+ "responseCode" : 200
964
+ },
965
+ "input" : {
966
+ "shape" : "GetExportJobRequest"
967
+ },
968
+ "output" : {
969
+ "shape" : "GetExportJobResponse"
970
+ },
971
+ "errors" : [ {
972
+ "shape" : "BadRequestException"
973
+ }, {
974
+ "shape" : "InternalServerErrorException"
975
+ }, {
976
+ "shape" : "ForbiddenException"
977
+ }, {
978
+ "shape" : "NotFoundException"
979
+ }, {
980
+ "shape" : "MethodNotAllowedException"
981
+ }, {
982
+ "shape" : "TooManyRequestsException"
983
+ } ]
984
+ },
985
+ "GetExportJobs" : {
986
+ "name" : "GetExportJobs",
987
+ "http" : {
988
+ "method" : "GET",
989
+ "requestUri" : "/v1/apps/{application-id}/jobs/export",
990
+ "responseCode" : 200
991
+ },
992
+ "input" : {
993
+ "shape" : "GetExportJobsRequest"
994
+ },
995
+ "output" : {
996
+ "shape" : "GetExportJobsResponse"
997
+ },
998
+ "errors" : [ {
999
+ "shape" : "BadRequestException"
1000
+ }, {
1001
+ "shape" : "InternalServerErrorException"
1002
+ }, {
1003
+ "shape" : "ForbiddenException"
1004
+ }, {
1005
+ "shape" : "NotFoundException"
1006
+ }, {
1007
+ "shape" : "MethodNotAllowedException"
1008
+ }, {
1009
+ "shape" : "TooManyRequestsException"
1010
+ } ]
1011
+ },
931
1012
  "GetGcmChannel" : {
932
1013
  "name" : "GetGcmChannel",
933
1014
  "http" : {
@@ -1036,6 +1117,33 @@
1036
1117
  "shape" : "TooManyRequestsException"
1037
1118
  } ]
1038
1119
  },
1120
+ "GetSegmentExportJobs" : {
1121
+ "name" : "GetSegmentExportJobs",
1122
+ "http" : {
1123
+ "method" : "GET",
1124
+ "requestUri" : "/v1/apps/{application-id}/segments/{segment-id}/jobs/export",
1125
+ "responseCode" : 200
1126
+ },
1127
+ "input" : {
1128
+ "shape" : "GetSegmentExportJobsRequest"
1129
+ },
1130
+ "output" : {
1131
+ "shape" : "GetSegmentExportJobsResponse"
1132
+ },
1133
+ "errors" : [ {
1134
+ "shape" : "BadRequestException"
1135
+ }, {
1136
+ "shape" : "InternalServerErrorException"
1137
+ }, {
1138
+ "shape" : "ForbiddenException"
1139
+ }, {
1140
+ "shape" : "NotFoundException"
1141
+ }, {
1142
+ "shape" : "MethodNotAllowedException"
1143
+ }, {
1144
+ "shape" : "TooManyRequestsException"
1145
+ } ]
1146
+ },
1039
1147
  "GetSegmentImportJobs" : {
1040
1148
  "name" : "GetSegmentImportJobs",
1041
1149
  "http" : {
@@ -2166,6 +2274,9 @@
2166
2274
  "ApplicationId" : {
2167
2275
  "shape" : "__string"
2168
2276
  },
2277
+ "CampaignHook" : {
2278
+ "shape" : "CampaignHook"
2279
+ },
2169
2280
  "LastModifiedDate" : {
2170
2281
  "shape" : "__string"
2171
2282
  },
@@ -2331,6 +2442,20 @@
2331
2442
  }
2332
2443
  }
2333
2444
  },
2445
+ "CampaignHook" : {
2446
+ "type" : "structure",
2447
+ "members" : {
2448
+ "LambdaFunctionName" : {
2449
+ "shape" : "__string"
2450
+ },
2451
+ "Mode" : {
2452
+ "shape" : "Mode"
2453
+ },
2454
+ "WebUrl" : {
2455
+ "shape" : "__string"
2456
+ }
2457
+ }
2458
+ },
2334
2459
  "CampaignLimits" : {
2335
2460
  "type" : "structure",
2336
2461
  "members" : {
@@ -2369,6 +2494,9 @@
2369
2494
  "HoldoutPercent" : {
2370
2495
  "shape" : "__integer"
2371
2496
  },
2497
+ "Hook" : {
2498
+ "shape" : "CampaignHook"
2499
+ },
2372
2500
  "Id" : {
2373
2501
  "shape" : "__string"
2374
2502
  },
@@ -2449,7 +2577,7 @@
2449
2577
  },
2450
2578
  "ChannelType" : {
2451
2579
  "type" : "string",
2452
- "enum" : [ "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "EMAIL", "BAIDU"]
2580
+ "enum" : [ "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "EMAIL", "BAIDU", "CUSTOM" ]
2453
2581
  },
2454
2582
  "CreateAppRequest" : {
2455
2583
  "type" : "structure",
@@ -2504,6 +2632,31 @@
2504
2632
  "required" : [ "CampaignResponse" ],
2505
2633
  "payload" : "CampaignResponse"
2506
2634
  },
2635
+ "CreateExportJobRequest" : {
2636
+ "type" : "structure",
2637
+ "members" : {
2638
+ "ApplicationId" : {
2639
+ "shape" : "__string",
2640
+ "location" : "uri",
2641
+ "locationName" : "application-id"
2642
+ },
2643
+ "ExportJobRequest" : {
2644
+ "shape" : "ExportJobRequest"
2645
+ }
2646
+ },
2647
+ "required" : [ "ApplicationId", "ExportJobRequest" ],
2648
+ "payload" : "ExportJobRequest"
2649
+ },
2650
+ "CreateExportJobResponse" : {
2651
+ "type" : "structure",
2652
+ "members" : {
2653
+ "ExportJobResponse" : {
2654
+ "shape" : "ExportJobResponse"
2655
+ }
2656
+ },
2657
+ "required" : [ "ExportJobResponse" ],
2658
+ "payload" : "ExportJobResponse"
2659
+ },
2507
2660
  "CreateImportJobRequest" : {
2508
2661
  "type" : "structure",
2509
2662
  "members" : {
@@ -3236,6 +3389,93 @@
3236
3389
  }
3237
3390
  }
3238
3391
  },
3392
+ "ExportJobRequest" : {
3393
+ "type" : "structure",
3394
+ "members" : {
3395
+ "RoleArn" : {
3396
+ "shape" : "__string"
3397
+ },
3398
+ "S3UrlPrefix" : {
3399
+ "shape" : "__string"
3400
+ },
3401
+ "SegmentId" : {
3402
+ "shape" : "__string"
3403
+ }
3404
+ },
3405
+ "required" : [ ]
3406
+ },
3407
+ "ExportJobResource" : {
3408
+ "type" : "structure",
3409
+ "members" : {
3410
+ "RoleArn" : {
3411
+ "shape" : "__string"
3412
+ },
3413
+ "S3UrlPrefix" : {
3414
+ "shape" : "__string"
3415
+ },
3416
+ "SegmentId" : {
3417
+ "shape" : "__string"
3418
+ }
3419
+ },
3420
+ "required" : [ ]
3421
+ },
3422
+ "ExportJobResponse" : {
3423
+ "type" : "structure",
3424
+ "members" : {
3425
+ "ApplicationId" : {
3426
+ "shape" : "__string"
3427
+ },
3428
+ "CompletedPieces" : {
3429
+ "shape" : "__integer"
3430
+ },
3431
+ "CompletionDate" : {
3432
+ "shape" : "__string"
3433
+ },
3434
+ "CreationDate" : {
3435
+ "shape" : "__string"
3436
+ },
3437
+ "Definition" : {
3438
+ "shape" : "ExportJobResource"
3439
+ },
3440
+ "FailedPieces" : {
3441
+ "shape" : "__integer"
3442
+ },
3443
+ "Failures" : {
3444
+ "shape" : "ListOf__string"
3445
+ },
3446
+ "Id" : {
3447
+ "shape" : "__string"
3448
+ },
3449
+ "JobStatus" : {
3450
+ "shape" : "JobStatus"
3451
+ },
3452
+ "TotalFailures" : {
3453
+ "shape" : "__integer"
3454
+ },
3455
+ "TotalPieces" : {
3456
+ "shape" : "__integer"
3457
+ },
3458
+ "TotalProcessed" : {
3459
+ "shape" : "__integer"
3460
+ },
3461
+ "Type" : {
3462
+ "shape" : "__string"
3463
+ }
3464
+ },
3465
+ "required" : [ ]
3466
+ },
3467
+ "ExportJobsResponse" : {
3468
+ "type" : "structure",
3469
+ "members" : {
3470
+ "Item" : {
3471
+ "shape" : "ListOfExportJobResponse"
3472
+ },
3473
+ "NextToken" : {
3474
+ "shape" : "__string"
3475
+ }
3476
+ },
3477
+ "required" : [ ]
3478
+ },
3239
3479
  "ForbiddenException" : {
3240
3480
  "type" : "structure",
3241
3481
  "members" : {
@@ -3785,6 +4025,63 @@
3785
4025
  "required" : [ "EventStream" ],
3786
4026
  "payload" : "EventStream"
3787
4027
  },
4028
+ "GetExportJobRequest" : {
4029
+ "type" : "structure",
4030
+ "members" : {
4031
+ "ApplicationId" : {
4032
+ "shape" : "__string",
4033
+ "location" : "uri",
4034
+ "locationName" : "application-id"
4035
+ },
4036
+ "JobId" : {
4037
+ "shape" : "__string",
4038
+ "location" : "uri",
4039
+ "locationName" : "job-id"
4040
+ }
4041
+ },
4042
+ "required" : [ "ApplicationId", "JobId" ]
4043
+ },
4044
+ "GetExportJobResponse" : {
4045
+ "type" : "structure",
4046
+ "members" : {
4047
+ "ExportJobResponse" : {
4048
+ "shape" : "ExportJobResponse"
4049
+ }
4050
+ },
4051
+ "required" : [ "ExportJobResponse" ],
4052
+ "payload" : "ExportJobResponse"
4053
+ },
4054
+ "GetExportJobsRequest" : {
4055
+ "type" : "structure",
4056
+ "members" : {
4057
+ "ApplicationId" : {
4058
+ "shape" : "__string",
4059
+ "location" : "uri",
4060
+ "locationName" : "application-id"
4061
+ },
4062
+ "PageSize" : {
4063
+ "shape" : "__string",
4064
+ "location" : "querystring",
4065
+ "locationName" : "page-size"
4066
+ },
4067
+ "Token" : {
4068
+ "shape" : "__string",
4069
+ "location" : "querystring",
4070
+ "locationName" : "token"
4071
+ }
4072
+ },
4073
+ "required" : [ "ApplicationId" ]
4074
+ },
4075
+ "GetExportJobsResponse" : {
4076
+ "type" : "structure",
4077
+ "members" : {
4078
+ "ExportJobsResponse" : {
4079
+ "shape" : "ExportJobsResponse"
4080
+ }
4081
+ },
4082
+ "required" : [ "ExportJobsResponse" ],
4083
+ "payload" : "ExportJobsResponse"
4084
+ },
3788
4085
  "GetGcmChannelRequest" : {
3789
4086
  "type" : "structure",
3790
4087
  "members" : {
@@ -3863,6 +4160,42 @@
3863
4160
  "required" : [ "ImportJobsResponse" ],
3864
4161
  "payload" : "ImportJobsResponse"
3865
4162
  },
4163
+ "GetSegmentExportJobsRequest" : {
4164
+ "type" : "structure",
4165
+ "members" : {
4166
+ "ApplicationId" : {
4167
+ "shape" : "__string",
4168
+ "location" : "uri",
4169
+ "locationName" : "application-id"
4170
+ },
4171
+ "PageSize" : {
4172
+ "shape" : "__string",
4173
+ "location" : "querystring",
4174
+ "locationName" : "page-size"
4175
+ },
4176
+ "SegmentId" : {
4177
+ "shape" : "__string",
4178
+ "location" : "uri",
4179
+ "locationName" : "segment-id"
4180
+ },
4181
+ "Token" : {
4182
+ "shape" : "__string",
4183
+ "location" : "querystring",
4184
+ "locationName" : "token"
4185
+ }
4186
+ },
4187
+ "required" : [ "SegmentId", "ApplicationId" ]
4188
+ },
4189
+ "GetSegmentExportJobsResponse" : {
4190
+ "type" : "structure",
4191
+ "members" : {
4192
+ "ExportJobsResponse" : {
4193
+ "shape" : "ExportJobsResponse"
4194
+ }
4195
+ },
4196
+ "required" : [ "ExportJobsResponse" ],
4197
+ "payload" : "ExportJobsResponse"
4198
+ },
3866
4199
  "GetSegmentImportJobsRequest" : {
3867
4200
  "type" : "structure",
3868
4201
  "members" : {
@@ -4200,6 +4533,12 @@
4200
4533
  "shape" : "EndpointBatchItem"
4201
4534
  }
4202
4535
  },
4536
+ "ListOfExportJobResponse" : {
4537
+ "type" : "list",
4538
+ "member" : {
4539
+ "shape" : "ExportJobResponse"
4540
+ }
4541
+ },
4203
4542
  "ListOfImportJobResponse" : {
4204
4543
  "type" : "list",
4205
4544
  "member" : {
@@ -4465,6 +4804,10 @@
4465
4804
  "httpStatusCode" : 405
4466
4805
  }
4467
4806
  },
4807
+ "Mode" : {
4808
+ "type" : "string",
4809
+ "enum" : [ "DELIVERY", "FILTER" ]
4810
+ },
4468
4811
  "NotFoundException" : {
4469
4812
  "type" : "structure",
4470
4813
  "members" : {
@@ -5253,6 +5596,9 @@
5253
5596
  "WriteApplicationSettingsRequest" : {
5254
5597
  "type" : "structure",
5255
5598
  "members" : {
5599
+ "CampaignHook" : {
5600
+ "shape" : "CampaignHook"
5601
+ },
5256
5602
  "Limits" : {
5257
5603
  "shape" : "CampaignLimits"
5258
5604
  },
@@ -5273,6 +5619,9 @@
5273
5619
  "HoldoutPercent" : {
5274
5620
  "shape" : "__integer"
5275
5621
  },
5622
+ "Hook" : {
5623
+ "shape" : "CampaignHook"
5624
+ },
5276
5625
  "IsPaused" : {
5277
5626
  "shape" : "__boolean"
5278
5627
  },
@@ -5360,4 +5709,4 @@
5360
5709
  "type" : "timestamp"
5361
5710
  }
5362
5711
  }
5363
- }
5712
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.10'
2
+ VERSION = '2.11.11'
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.10
4
+ version: 2.11.11
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: 2018-03-07 00:00:00.000000000 Z
11
+ date: 2018-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath