aws-sdk-core 2.11.217 → 2.11.218
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c0c0801098e6e61c98160d66901d6ead71d6c14
|
|
4
|
+
data.tar.gz: 405b1cbe4fef706c7d050e18dc2641a34ebdf543
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e6df92e60e2d146fd1f8f3cefa0fe5a0503235c83b4f956804ec9091651d9614b0b27d8577c502c44426c0348fdf4d5ddba3e6e5ec0cd24533e5f4b4f71e5f6
|
|
7
|
+
data.tar.gz: 2abacbd7fa9240448580b764d12db086e5d3df7f33d0bc78293e8f92e8710482edda737bd27eb50ec01041dd1ed157a05f5d09d6dd82bcde8e26a8cea5db2fb5
|
|
@@ -1737,10 +1737,20 @@
|
|
|
1737
1737
|
"StackName":{"shape":"String"},
|
|
1738
1738
|
"FleetName":{"shape":"String"},
|
|
1739
1739
|
"State":{"shape":"SessionState"},
|
|
1740
|
+
"ConnectionState":{"shape":"SessionConnectionState"},
|
|
1741
|
+
"StartTime":{"shape":"Timestamp"},
|
|
1742
|
+
"MaxExpirationTime":{"shape":"Timestamp"},
|
|
1740
1743
|
"AuthenticationType":{"shape":"AuthenticationType"},
|
|
1741
1744
|
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"}
|
|
1742
1745
|
}
|
|
1743
1746
|
},
|
|
1747
|
+
"SessionConnectionState":{
|
|
1748
|
+
"type":"string",
|
|
1749
|
+
"enum":[
|
|
1750
|
+
"CONNECTED",
|
|
1751
|
+
"NOT_CONNECTED"
|
|
1752
|
+
]
|
|
1753
|
+
},
|
|
1744
1754
|
"SessionList":{
|
|
1745
1755
|
"type":"list",
|
|
1746
1756
|
"member":{"shape":"Session"}
|
|
@@ -495,7 +495,8 @@
|
|
|
495
495
|
"required":["projectName"],
|
|
496
496
|
"members":{
|
|
497
497
|
"projectName":{"shape":"ProjectName"},
|
|
498
|
-
"branchFilter":{"shape":"String"}
|
|
498
|
+
"branchFilter":{"shape":"String"},
|
|
499
|
+
"filterGroups":{"shape":"FilterGroups"}
|
|
499
500
|
}
|
|
500
501
|
},
|
|
501
502
|
"CreateWebhookOutput":{
|
|
@@ -609,6 +610,14 @@
|
|
|
609
610
|
"type":"list",
|
|
610
611
|
"member":{"shape":"EnvironmentVariable"}
|
|
611
612
|
},
|
|
613
|
+
"FilterGroup":{
|
|
614
|
+
"type":"list",
|
|
615
|
+
"member":{"shape":"WebhookFilter"}
|
|
616
|
+
},
|
|
617
|
+
"FilterGroups":{
|
|
618
|
+
"type":"list",
|
|
619
|
+
"member":{"shape":"FilterGroup"}
|
|
620
|
+
},
|
|
612
621
|
"GitCloneDepth":{
|
|
613
622
|
"type":"integer",
|
|
614
623
|
"min":0
|
|
@@ -1171,6 +1180,7 @@
|
|
|
1171
1180
|
"members":{
|
|
1172
1181
|
"projectName":{"shape":"ProjectName"},
|
|
1173
1182
|
"branchFilter":{"shape":"String"},
|
|
1183
|
+
"filterGroups":{"shape":"FilterGroups"},
|
|
1174
1184
|
"rotateSecret":{"shape":"Boolean"}
|
|
1175
1185
|
}
|
|
1176
1186
|
},
|
|
@@ -1201,9 +1211,32 @@
|
|
|
1201
1211
|
"payloadUrl":{"shape":"NonEmptyString"},
|
|
1202
1212
|
"secret":{"shape":"NonEmptyString"},
|
|
1203
1213
|
"branchFilter":{"shape":"String"},
|
|
1214
|
+
"filterGroups":{"shape":"FilterGroups"},
|
|
1204
1215
|
"lastModifiedSecret":{"shape":"Timestamp"}
|
|
1205
1216
|
}
|
|
1206
1217
|
},
|
|
1218
|
+
"WebhookFilter":{
|
|
1219
|
+
"type":"structure",
|
|
1220
|
+
"required":[
|
|
1221
|
+
"type",
|
|
1222
|
+
"pattern"
|
|
1223
|
+
],
|
|
1224
|
+
"members":{
|
|
1225
|
+
"type":{"shape":"WebhookFilterType"},
|
|
1226
|
+
"pattern":{"shape":"String"},
|
|
1227
|
+
"excludeMatchedPattern":{"shape":"WrapperBoolean"}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"WebhookFilterType":{
|
|
1231
|
+
"type":"string",
|
|
1232
|
+
"enum":[
|
|
1233
|
+
"EVENT",
|
|
1234
|
+
"BASE_REF",
|
|
1235
|
+
"HEAD_REF",
|
|
1236
|
+
"ACTOR_ACCOUNT_ID",
|
|
1237
|
+
"FILE_PATH"
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1207
1240
|
"WrapperBoolean":{"type":"boolean"},
|
|
1208
1241
|
"WrapperInt":{"type":"integer"},
|
|
1209
1242
|
"WrapperLong":{"type":"long"}
|
|
@@ -726,6 +726,10 @@
|
|
|
726
726
|
"locationName": "encryption",
|
|
727
727
|
"shape": "DashEncryption"
|
|
728
728
|
},
|
|
729
|
+
"ManifestLayout": {
|
|
730
|
+
"locationName": "manifestLayout",
|
|
731
|
+
"shape": "ManifestLayout"
|
|
732
|
+
},
|
|
729
733
|
"ManifestWindowSeconds": {
|
|
730
734
|
"locationName": "manifestWindowSeconds",
|
|
731
735
|
"shape": "__integer"
|
|
@@ -750,6 +754,10 @@
|
|
|
750
754
|
"locationName": "segmentDurationSeconds",
|
|
751
755
|
"shape": "__integer"
|
|
752
756
|
},
|
|
757
|
+
"SegmentTemplateFormat": {
|
|
758
|
+
"locationName": "segmentTemplateFormat",
|
|
759
|
+
"shape": "SegmentTemplateFormat"
|
|
760
|
+
},
|
|
753
761
|
"StreamSelection": {
|
|
754
762
|
"locationName": "streamSelection",
|
|
755
763
|
"shape": "StreamSelection"
|
|
@@ -1168,6 +1176,13 @@
|
|
|
1168
1176
|
},
|
|
1169
1177
|
"type": "structure"
|
|
1170
1178
|
},
|
|
1179
|
+
"ManifestLayout": {
|
|
1180
|
+
"enum": [
|
|
1181
|
+
"FULL",
|
|
1182
|
+
"COMPACT"
|
|
1183
|
+
],
|
|
1184
|
+
"type": "string"
|
|
1185
|
+
},
|
|
1171
1186
|
"MaxResults": {
|
|
1172
1187
|
"max": 1000,
|
|
1173
1188
|
"min": 1,
|
|
@@ -1474,6 +1489,13 @@
|
|
|
1474
1489
|
},
|
|
1475
1490
|
"type": "structure"
|
|
1476
1491
|
},
|
|
1492
|
+
"SegmentTemplateFormat": {
|
|
1493
|
+
"enum": [
|
|
1494
|
+
"NUMBER_WITH_TIMELINE",
|
|
1495
|
+
"TIME_WITH_TIMELINE"
|
|
1496
|
+
],
|
|
1497
|
+
"type": "string"
|
|
1498
|
+
},
|
|
1477
1499
|
"ServiceUnavailableException": {
|
|
1478
1500
|
"error": {
|
|
1479
1501
|
"httpStatusCode": 503
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.
|
|
4
|
+
version: 2.11.218
|
|
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: 2019-02-
|
|
11
|
+
date: 2019-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|