aws-sdk-core 2.11.433 → 2.11.434

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: 23048842422bcb3c8ade6f3e6860dbc8311e5017
4
- data.tar.gz: ebe79d72150f15160601556860147c00f7f82cd5
3
+ metadata.gz: 1eb3a552dd02c7155ae36d4cba7409a96b6a00ef
4
+ data.tar.gz: 31acc37c5a6bc174986b0503fa6a08fbab4f0762
5
5
  SHA512:
6
- metadata.gz: eeaa615063323123ede3034024bc6f984cce8b14256769a2737868147c739aa8da66ec577a6b596abc9a22879c1b6665ad68cad9b2d541dc8b0e5f10605d16a2
7
- data.tar.gz: 6ab9fdf0ee9bfdc733e58e865c641234484d094fdc37c160f472b1be319805aadc0d98c89bd6916f3e97b1a2923220336e4e973fec0c9f268bcf465e96be36bb
6
+ metadata.gz: d8ef977e4351d2e26c238f5d228bfac5d19f87a426591510cdfe110292d30dd0a2ea605da20e8e5fa4d0e91a52c66ba6a9af970a5107215829cf3b6127af6d14
7
+ data.tar.gz: 5522f25eda572fa2834308e6aaf8f0e5ab5e3b59b85890d8edb8c75dd1e14722c2abdbb2ba41c7fb85301cb28d3d65376645e999f9269693e2b7b86181d43516
@@ -481,6 +481,21 @@
481
481
  {"shape":"PipelineNotFoundException"}
482
482
  ]
483
483
  },
484
+ "StopPipelineExecution":{
485
+ "name":"StopPipelineExecution",
486
+ "http":{
487
+ "method":"POST",
488
+ "requestUri":"/"
489
+ },
490
+ "input":{"shape":"StopPipelineExecutionInput"},
491
+ "output":{"shape":"StopPipelineExecutionOutput"},
492
+ "errors":[
493
+ {"shape":"ValidationException"},
494
+ {"shape":"PipelineNotFoundException"},
495
+ {"shape":"PipelineExecutionNotStoppableException"},
496
+ {"shape":"DuplicatedStopRequestException"}
497
+ ]
498
+ },
484
499
  "TagResource":{
485
500
  "name":"TagResource",
486
501
  "http":{
@@ -759,6 +774,7 @@
759
774
  "type":"string",
760
775
  "enum":[
761
776
  "InProgress",
777
+ "Abandoned",
762
778
  "Succeeded",
763
779
  "Failed"
764
780
  ]
@@ -1177,6 +1193,13 @@
1177
1193
  "min":1,
1178
1194
  "pattern":"[a-zA-Z0-9!@ \\(\\)\\.\\*\\?\\-]+"
1179
1195
  },
1196
+ "DuplicatedStopRequestException":{
1197
+ "type":"structure",
1198
+ "members":{
1199
+ "message":{"shape":"Message"}
1200
+ },
1201
+ "exception":true
1202
+ },
1180
1203
  "EnableStageTransitionInput":{
1181
1204
  "type":"structure",
1182
1205
  "required":[
@@ -1749,10 +1772,19 @@
1749
1772
  },
1750
1773
  "exception":true
1751
1774
  },
1775
+ "PipelineExecutionNotStoppableException":{
1776
+ "type":"structure",
1777
+ "members":{
1778
+ "message":{"shape":"Message"}
1779
+ },
1780
+ "exception":true
1781
+ },
1752
1782
  "PipelineExecutionStatus":{
1753
1783
  "type":"string",
1754
1784
  "enum":[
1755
1785
  "InProgress",
1786
+ "Stopped",
1787
+ "Stopping",
1756
1788
  "Succeeded",
1757
1789
  "Superseded",
1758
1790
  "Failed"
@@ -1766,7 +1798,8 @@
1766
1798
  "startTime":{"shape":"Timestamp"},
1767
1799
  "lastUpdateTime":{"shape":"Timestamp"},
1768
1800
  "sourceRevisions":{"shape":"SourceRevisionList"},
1769
- "trigger":{"shape":"ExecutionTrigger"}
1801
+ "trigger":{"shape":"ExecutionTrigger"},
1802
+ "stopTrigger":{"shape":"StopExecutionTrigger"}
1770
1803
  }
1771
1804
  },
1772
1805
  "PipelineExecutionSummaryList":{
@@ -2125,6 +2158,8 @@
2125
2158
  "enum":[
2126
2159
  "InProgress",
2127
2160
  "Failed",
2161
+ "Stopped",
2162
+ "Stopping",
2128
2163
  "Succeeded"
2129
2164
  ]
2130
2165
  },
@@ -2187,6 +2222,35 @@
2187
2222
  "pipelineExecutionId":{"shape":"PipelineExecutionId"}
2188
2223
  }
2189
2224
  },
2225
+ "StopExecutionTrigger":{
2226
+ "type":"structure",
2227
+ "members":{
2228
+ "reason":{"shape":"StopPipelineExecutionReason"}
2229
+ }
2230
+ },
2231
+ "StopPipelineExecutionInput":{
2232
+ "type":"structure",
2233
+ "required":[
2234
+ "pipelineName",
2235
+ "pipelineExecutionId"
2236
+ ],
2237
+ "members":{
2238
+ "pipelineName":{"shape":"PipelineName"},
2239
+ "pipelineExecutionId":{"shape":"PipelineExecutionId"},
2240
+ "abandon":{"shape":"Boolean"},
2241
+ "reason":{"shape":"StopPipelineExecutionReason"}
2242
+ }
2243
+ },
2244
+ "StopPipelineExecutionOutput":{
2245
+ "type":"structure",
2246
+ "members":{
2247
+ "pipelineExecutionId":{"shape":"PipelineExecutionId"}
2248
+ }
2249
+ },
2250
+ "StopPipelineExecutionReason":{
2251
+ "type":"string",
2252
+ "max":200
2253
+ },
2190
2254
  "String":{"type":"string"},
2191
2255
  "Tag":{
2192
2256
  "type":"structure",
@@ -4993,7 +4993,8 @@
4993
4993
  "failed-provision",
4994
4994
  "pending-deprovision",
4995
4995
  "pending-provision",
4996
- "provisioned"
4996
+ "provisioned",
4997
+ "provisioned-not-publicly-advertisable"
4997
4998
  ]
4998
4999
  },
4999
5000
  "CancelBatchErrorCode":{
@@ -4129,6 +4129,16 @@
4129
4129
  "cn-northwest-1" : { }
4130
4130
  }
4131
4131
  },
4132
+ "appsync" : {
4133
+ "endpoints" : {
4134
+ "cn-north-1" : { }
4135
+ }
4136
+ },
4137
+ "athena" : {
4138
+ "endpoints" : {
4139
+ "cn-northwest-1" : { }
4140
+ }
4141
+ },
4132
4142
  "autoscaling" : {
4133
4143
  "defaults" : {
4134
4144
  "protocols" : [ "http", "https" ]
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.433'
2
+ VERSION = '2.11.434'
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.433
4
+ version: 2.11.434
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-01-20 00:00:00.000000000 Z
11
+ date: 2020-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath