aws-sdk-core 2.11.144 → 2.11.145

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
  SHA1:
3
- metadata.gz: ca0c6ae8af6d0d9b42473854f8d64a2d44ec14ed
4
- data.tar.gz: c64e08d6ec7e868f0770bf70e4ee2e2e679a7712
3
+ metadata.gz: da06df1b2a00239ceac010aff3fa868d94e08877
4
+ data.tar.gz: 87da19024e5817bbf509e63b8b41c384d5a79f49
5
5
  SHA512:
6
- metadata.gz: b7f344684db9fe4e5e15c0dbb801053b7603fba377bb77e267253a35470ccd8b5ba11c0e96f4f2f5f38f28570582838eeef4a41c2cb000ebf810c4e2bc4358f3
7
- data.tar.gz: 18e9eaa67c3edd62348d0740c4fefdec13d127dac4ba9c1c06485c0d9c26985e3d820eb7b08137078b7057408c59d931cd2e0624264df695902ccf1685d102aa
6
+ metadata.gz: ee650d9240c71324ac5aeb67373a071b4c4664d52f6b52963ccb024bd659ac9195c4a7093c62b62c238b910f2ad49a03afae11651dc29788d8dcc4b628141b44
7
+ data.tar.gz: e3d8c0b25ed7cdd67262df30f56a4c568c3303e79812d1bf3d8b4e9e818277512b04aed18b7dd3007819e62af3ee9f6f9c32a1babc748e03cdfce5240921dae0
@@ -784,6 +784,21 @@
784
784
  {"shape":"ServiceException"}
785
785
  ]
786
786
  },
787
+ "UpdateTrust":{
788
+ "name":"UpdateTrust",
789
+ "http":{
790
+ "method":"POST",
791
+ "requestUri":"/"
792
+ },
793
+ "input":{"shape":"UpdateTrustRequest"},
794
+ "output":{"shape":"UpdateTrustResult"},
795
+ "errors":[
796
+ {"shape":"EntityDoesNotExistException"},
797
+ {"shape":"InvalidParameterException"},
798
+ {"shape":"ClientException"},
799
+ {"shape":"ServiceException"}
800
+ ]
801
+ },
787
802
  "VerifyTrust":{
788
803
  "name":"VerifyTrust",
789
804
  "http":{
@@ -1138,7 +1153,8 @@
1138
1153
  "TrustPassword":{"shape":"TrustPassword"},
1139
1154
  "TrustDirection":{"shape":"TrustDirection"},
1140
1155
  "TrustType":{"shape":"TrustType"},
1141
- "ConditionalForwarderIpAddrs":{"shape":"DnsIpAddrs"}
1156
+ "ConditionalForwarderIpAddrs":{"shape":"DnsIpAddrs"},
1157
+ "SelectiveAuth":{"shape":"SelectiveAuth"}
1142
1158
  }
1143
1159
  },
1144
1160
  "CreateTrustResult":{
@@ -2139,6 +2155,13 @@
2139
2155
  "type":"string",
2140
2156
  "pattern":"^(sg-[0-9a-f]{8}|sg-[0-9a-f]{17})$"
2141
2157
  },
2158
+ "SelectiveAuth":{
2159
+ "type":"string",
2160
+ "enum":[
2161
+ "Enabled",
2162
+ "Disabled"
2163
+ ]
2164
+ },
2142
2165
  "Server":{
2143
2166
  "type":"string",
2144
2167
  "max":256,
@@ -2410,7 +2433,8 @@
2410
2433
  "CreatedDateTime":{"shape":"CreatedDateTime"},
2411
2434
  "LastUpdatedDateTime":{"shape":"LastUpdatedDateTime"},
2412
2435
  "StateLastUpdatedDateTime":{"shape":"StateLastUpdatedDateTime"},
2413
- "TrustStateReason":{"shape":"TrustStateReason"}
2436
+ "TrustStateReason":{"shape":"TrustStateReason"},
2437
+ "SelectiveAuth":{"shape":"SelectiveAuth"}
2414
2438
  }
2415
2439
  },
2416
2440
  "TrustDirection":{
@@ -2433,6 +2457,7 @@
2433
2457
  "type":"string",
2434
2458
  "max":128,
2435
2459
  "min":1,
2460
+ "pattern":"(.|\\s)*\\S(.|\\s)*",
2436
2461
  "sensitive":true
2437
2462
  },
2438
2463
  "TrustState":{
@@ -2443,6 +2468,9 @@
2443
2468
  "Verifying",
2444
2469
  "VerifyFailed",
2445
2470
  "Verified",
2471
+ "Updating",
2472
+ "UpdateFailed",
2473
+ "Updated",
2446
2474
  "Deleting",
2447
2475
  "Deleted",
2448
2476
  "Failed"
@@ -2451,7 +2479,10 @@
2451
2479
  "TrustStateReason":{"type":"string"},
2452
2480
  "TrustType":{
2453
2481
  "type":"string",
2454
- "enum":["Forest"]
2482
+ "enum":[
2483
+ "Forest",
2484
+ "External"
2485
+ ]
2455
2486
  },
2456
2487
  "Trusts":{
2457
2488
  "type":"list",
@@ -2544,6 +2575,21 @@
2544
2575
  }
2545
2576
  },
2546
2577
  "UpdateSecurityGroupForDirectoryControllers":{"type":"boolean"},
2578
+ "UpdateTrustRequest":{
2579
+ "type":"structure",
2580
+ "required":["TrustId"],
2581
+ "members":{
2582
+ "TrustId":{"shape":"TrustId"},
2583
+ "SelectiveAuth":{"shape":"SelectiveAuth"}
2584
+ }
2585
+ },
2586
+ "UpdateTrustResult":{
2587
+ "type":"structure",
2588
+ "members":{
2589
+ "RequestId":{"shape":"RequestId"},
2590
+ "TrustId":{"shape":"TrustId"}
2591
+ }
2592
+ },
2547
2593
  "UseSameUsername":{"type":"boolean"},
2548
2594
  "UserDoesNotExistException":{
2549
2595
  "type":"structure",
@@ -5,6 +5,7 @@
5
5
  "endpointPrefix":"data.jobs.iot",
6
6
  "protocol":"rest-json",
7
7
  "serviceFullName":"AWS IoT Jobs Data Plane",
8
+ "serviceId":"IoT Jobs Data Plane",
8
9
  "signatureVersion":"v4",
9
10
  "signingName":"iot-jobs-data",
10
11
  "uid":"iot-jobs-data-2017-09-29"
@@ -78,6 +79,8 @@
78
79
  }
79
80
  },
80
81
  "shapes":{
82
+ "ApproximateSecondsBeforeTimedOut":{"type":"long"},
83
+ "BinaryBlob":{"type":"blob"},
81
84
  "CertificateValidationException":{
82
85
  "type":"structure",
83
86
  "members":{
@@ -194,6 +197,7 @@
194
197
  "queuedAt":{"shape":"QueuedAt"},
195
198
  "startedAt":{"shape":"StartedAt"},
196
199
  "lastUpdatedAt":{"shape":"LastUpdatedAt"},
200
+ "approximateSecondsBeforeTimedOut":{"shape":"ApproximateSecondsBeforeTimedOut"},
197
201
  "versionNumber":{"shape":"VersionNumber"},
198
202
  "executionNumber":{"shape":"ExecutionNumber"},
199
203
  "jobDocument":{"shape":"JobDocument"}
@@ -214,6 +218,7 @@
214
218
  "IN_PROGRESS",
215
219
  "SUCCEEDED",
216
220
  "FAILED",
221
+ "TIMED_OUT",
217
222
  "REJECTED",
218
223
  "REMOVED",
219
224
  "CANCELED"
@@ -268,7 +273,8 @@
268
273
  "location":"uri",
269
274
  "locationName":"thingName"
270
275
  },
271
- "statusDetails":{"shape":"DetailsMap"}
276
+ "statusDetails":{"shape":"DetailsMap"},
277
+ "stepTimeoutInMinutes":{"shape":"StepTimeoutInMinutes"}
272
278
  }
273
279
  },
274
280
  "StartNextPendingJobExecutionResponse":{
@@ -278,6 +284,7 @@
278
284
  }
279
285
  },
280
286
  "StartedAt":{"type":"long"},
287
+ "StepTimeoutInMinutes":{"type":"long"},
281
288
  "TerminalStateException":{
282
289
  "type":"structure",
283
290
  "members":{
@@ -295,7 +302,8 @@
295
302
  "ThrottlingException":{
296
303
  "type":"structure",
297
304
  "members":{
298
- "message":{"shape":"errorMessage"}
305
+ "message":{"shape":"errorMessage"},
306
+ "payload":{"shape":"BinaryBlob"}
299
307
  },
300
308
  "error":{"httpStatusCode":429},
301
309
  "exception":true
@@ -320,6 +328,7 @@
320
328
  },
321
329
  "status":{"shape":"JobExecutionStatus"},
322
330
  "statusDetails":{"shape":"DetailsMap"},
331
+ "stepTimeoutInMinutes":{"shape":"StepTimeoutInMinutes"},
323
332
  "expectedVersion":{"shape":"ExpectedVersion"},
324
333
  "includeJobExecutionState":{"shape":"IncludeExecutionState"},
325
334
  "includeJobDocument":{"shape":"IncludeJobDocument"},
@@ -2558,6 +2558,7 @@
2558
2558
  "policies":{"shape":"Policies"}
2559
2559
  }
2560
2560
  },
2561
+ "ApproximateSecondsBeforeTimedOut":{"type":"long"},
2561
2562
  "AscendingOrder":{"type":"boolean"},
2562
2563
  "AssociateTargetsWithJobRequest":{
2563
2564
  "type":"structure",
@@ -3345,7 +3346,8 @@
3345
3346
  "description":{"shape":"JobDescription"},
3346
3347
  "presignedUrlConfig":{"shape":"PresignedUrlConfig"},
3347
3348
  "targetSelection":{"shape":"TargetSelection"},
3348
- "jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"}
3349
+ "jobExecutionsRolloutConfig":{"shape":"JobExecutionsRolloutConfig"},
3350
+ "timeoutConfig":{"shape":"TimeoutConfig"}
3349
3351
  }
3350
3352
  },
3351
3353
  "CreateJobResponse":{
@@ -4897,6 +4899,7 @@
4897
4899
  },
4898
4900
  "InProgressChecksCount":{"type":"integer"},
4899
4901
  "InProgressThings":{"type":"integer"},
4902
+ "InProgressTimeoutInMinutes":{"type":"long"},
4900
4903
  "IndexName":{
4901
4904
  "type":"string",
4902
4905
  "max":128,
@@ -5002,7 +5005,8 @@
5002
5005
  "createdAt":{"shape":"DateType"},
5003
5006
  "lastUpdatedAt":{"shape":"DateType"},
5004
5007
  "completedAt":{"shape":"DateType"},
5005
- "jobProcessDetails":{"shape":"JobProcessDetails"}
5008
+ "jobProcessDetails":{"shape":"JobProcessDetails"},
5009
+ "timeoutConfig":{"shape":"TimeoutConfig"}
5006
5010
  }
5007
5011
  },
5008
5012
  "JobArn":{"type":"string"},
@@ -5032,7 +5036,8 @@
5032
5036
  "startedAt":{"shape":"DateType"},
5033
5037
  "lastUpdatedAt":{"shape":"DateType"},
5034
5038
  "executionNumber":{"shape":"ExecutionNumber"},
5035
- "versionNumber":{"shape":"VersionNumber"}
5039
+ "versionNumber":{"shape":"VersionNumber"},
5040
+ "approximateSecondsBeforeTimedOut":{"shape":"ApproximateSecondsBeforeTimedOut"}
5036
5041
  }
5037
5042
  },
5038
5043
  "JobExecutionStatus":{
@@ -5042,6 +5047,7 @@
5042
5047
  "IN_PROGRESS",
5043
5048
  "SUCCEEDED",
5044
5049
  "FAILED",
5050
+ "TIMED_OUT",
5045
5051
  "REJECTED",
5046
5052
  "REMOVED",
5047
5053
  "CANCELED"
@@ -5107,7 +5113,8 @@
5107
5113
  "numberOfRejectedThings":{"shape":"RejectedThings"},
5108
5114
  "numberOfQueuedThings":{"shape":"QueuedThings"},
5109
5115
  "numberOfInProgressThings":{"shape":"InProgressThings"},
5110
- "numberOfRemovedThings":{"shape":"RemovedThings"}
5116
+ "numberOfRemovedThings":{"shape":"RemovedThings"},
5117
+ "numberOfTimedOutThings":{"shape":"TimedOutThings"}
5111
5118
  }
5112
5119
  },
5113
5120
  "JobStatus":{
@@ -7626,6 +7633,13 @@
7626
7633
  "error":{"httpStatusCode":429},
7627
7634
  "exception":true
7628
7635
  },
7636
+ "TimedOutThings":{"type":"integer"},
7637
+ "TimeoutConfig":{
7638
+ "type":"structure",
7639
+ "members":{
7640
+ "inProgressTimeoutInMinutes":{"shape":"InProgressTimeoutInMinutes"}
7641
+ }
7642
+ },
7629
7643
  "Timestamp":{"type":"timestamp"},
7630
7644
  "Token":{
7631
7645
  "type":"string",
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.144'
2
+ VERSION = '2.11.145'
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.144
4
+ version: 2.11.145
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-10-04 00:00:00.000000000 Z
11
+ date: 2018-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath