aws-sdk-core 2.11.34 → 2.11.35

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: 30f8bec497cb66f14025fc902e00c2a6f370fcd5
4
- data.tar.gz: c3a40b2628efebfb92013d4616d65c06fa762783
3
+ metadata.gz: '078ed45949f0c0c4cce0670db2973a744298ec4c'
4
+ data.tar.gz: '049bd74e28e3122071e1112506197f8ebdde2589'
5
5
  SHA512:
6
- metadata.gz: c868eee1671523f29fc611b2668ddccd3b6b55c6b10083f8afb886c5ea858ccfab5facd8df61a946452ae0ea456d63f0b611cd9a3dc7510e95cd0ba7f6b76dcf
7
- data.tar.gz: d8315739b9d7b9449553d4f2d9ba421e01d8307e875ee019f7d46e04a166d1d6186df0c451810e859b1987dd7d450094dde2afd14cf131ba76ecabed127abccb
6
+ metadata.gz: 15f9e361cf5e13ff67af506a7fbb9a14f77e1ba3ef6a64e3df477d7ba452133b30dc1cf0b1a9790eddb28d06222d8a6d47804a7dafe652b3ef717da9c7ae5b1f
7
+ data.tar.gz: 9915cfbcc5fe586632b60195e639174843e0fce30de476610d628825e5603e845b09df638f2c49299fd437ec2af16d44a6904689e14ba9506a1b891fd7837096
@@ -61,6 +61,20 @@
61
61
  "input":{"shape":"ListDeliveryStreamsInput"},
62
62
  "output":{"shape":"ListDeliveryStreamsOutput"}
63
63
  },
64
+ "ListTagsForDeliveryStream":{
65
+ "name":"ListTagsForDeliveryStream",
66
+ "http":{
67
+ "method":"POST",
68
+ "requestUri":"/"
69
+ },
70
+ "input":{"shape":"ListTagsForDeliveryStreamInput"},
71
+ "output":{"shape":"ListTagsForDeliveryStreamOutput"},
72
+ "errors":[
73
+ {"shape":"ResourceNotFoundException"},
74
+ {"shape":"InvalidArgumentException"},
75
+ {"shape":"LimitExceededException"}
76
+ ]
77
+ },
64
78
  "PutRecord":{
65
79
  "name":"PutRecord",
66
80
  "http":{
@@ -89,6 +103,36 @@
89
103
  {"shape":"ServiceUnavailableException"}
90
104
  ]
91
105
  },
106
+ "TagDeliveryStream":{
107
+ "name":"TagDeliveryStream",
108
+ "http":{
109
+ "method":"POST",
110
+ "requestUri":"/"
111
+ },
112
+ "input":{"shape":"TagDeliveryStreamInput"},
113
+ "output":{"shape":"TagDeliveryStreamOutput"},
114
+ "errors":[
115
+ {"shape":"ResourceNotFoundException"},
116
+ {"shape":"ResourceInUseException"},
117
+ {"shape":"InvalidArgumentException"},
118
+ {"shape":"LimitExceededException"}
119
+ ]
120
+ },
121
+ "UntagDeliveryStream":{
122
+ "name":"UntagDeliveryStream",
123
+ "http":{
124
+ "method":"POST",
125
+ "requestUri":"/"
126
+ },
127
+ "input":{"shape":"UntagDeliveryStreamInput"},
128
+ "output":{"shape":"UntagDeliveryStreamOutput"},
129
+ "errors":[
130
+ {"shape":"ResourceNotFoundException"},
131
+ {"shape":"ResourceInUseException"},
132
+ {"shape":"InvalidArgumentException"},
133
+ {"shape":"LimitExceededException"}
134
+ ]
135
+ },
92
136
  "UpdateDestination":{
93
137
  "name":"UpdateDestination",
94
138
  "http":{
@@ -583,6 +627,37 @@
583
627
  "HasMoreDeliveryStreams":{"shape":"BooleanObject"}
584
628
  }
585
629
  },
630
+ "ListTagsForDeliveryStreamInput":{
631
+ "type":"structure",
632
+ "required":["DeliveryStreamName"],
633
+ "members":{
634
+ "DeliveryStreamName":{"shape":"DeliveryStreamName"},
635
+ "ExclusiveStartTagKey":{"shape":"TagKey"},
636
+ "Limit":{"shape":"ListTagsForDeliveryStreamInputLimit"}
637
+ }
638
+ },
639
+ "ListTagsForDeliveryStreamInputLimit":{
640
+ "type":"integer",
641
+ "max":50,
642
+ "min":1
643
+ },
644
+ "ListTagsForDeliveryStreamOutput":{
645
+ "type":"structure",
646
+ "required":[
647
+ "Tags",
648
+ "HasMoreTags"
649
+ ],
650
+ "members":{
651
+ "Tags":{"shape":"ListTagsForDeliveryStreamOutputTagList"},
652
+ "HasMoreTags":{"shape":"BooleanObject"}
653
+ }
654
+ },
655
+ "ListTagsForDeliveryStreamOutputTagList":{
656
+ "type":"list",
657
+ "member":{"shape":"Tag"},
658
+ "max":50,
659
+ "min":0
660
+ },
586
661
  "LogGroupName":{"type":"string"},
587
662
  "LogStreamName":{"type":"string"},
588
663
  "NoEncryptionConfig":{
@@ -962,7 +1037,69 @@
962
1037
  "AllEvents"
963
1038
  ]
964
1039
  },
1040
+ "Tag":{
1041
+ "type":"structure",
1042
+ "required":["Key"],
1043
+ "members":{
1044
+ "Key":{"shape":"TagKey"},
1045
+ "Value":{"shape":"TagValue"}
1046
+ }
1047
+ },
1048
+ "TagDeliveryStreamInput":{
1049
+ "type":"structure",
1050
+ "required":[
1051
+ "DeliveryStreamName",
1052
+ "Tags"
1053
+ ],
1054
+ "members":{
1055
+ "DeliveryStreamName":{"shape":"DeliveryStreamName"},
1056
+ "Tags":{"shape":"TagDeliveryStreamInputTagList"}
1057
+ }
1058
+ },
1059
+ "TagDeliveryStreamInputTagList":{
1060
+ "type":"list",
1061
+ "member":{"shape":"Tag"},
1062
+ "max":50,
1063
+ "min":1
1064
+ },
1065
+ "TagDeliveryStreamOutput":{
1066
+ "type":"structure",
1067
+ "members":{
1068
+ }
1069
+ },
1070
+ "TagKey":{
1071
+ "type":"string",
1072
+ "max":128,
1073
+ "min":1
1074
+ },
1075
+ "TagKeyList":{
1076
+ "type":"list",
1077
+ "member":{"shape":"TagKey"},
1078
+ "max":50,
1079
+ "min":1
1080
+ },
1081
+ "TagValue":{
1082
+ "type":"string",
1083
+ "max":256,
1084
+ "min":0
1085
+ },
965
1086
  "Timestamp":{"type":"timestamp"},
1087
+ "UntagDeliveryStreamInput":{
1088
+ "type":"structure",
1089
+ "required":[
1090
+ "DeliveryStreamName",
1091
+ "TagKeys"
1092
+ ],
1093
+ "members":{
1094
+ "DeliveryStreamName":{"shape":"DeliveryStreamName"},
1095
+ "TagKeys":{"shape":"TagKeyList"}
1096
+ }
1097
+ },
1098
+ "UntagDeliveryStreamOutput":{
1099
+ "type":"structure",
1100
+ "members":{
1101
+ }
1102
+ },
966
1103
  "UpdateDestinationInput":{
967
1104
  "type":"structure",
968
1105
  "required":[
@@ -1121,6 +1121,13 @@
1121
1121
  "VISUAL_IMPAIRED_COMMENTARY"
1122
1122
  ]
1123
1123
  },
1124
+ "AuthenticationScheme": {
1125
+ "type": "string",
1126
+ "enum": [
1127
+ "AKAMAI",
1128
+ "COMMON"
1129
+ ]
1130
+ },
1124
1131
  "AvailBlanking": {
1125
1132
  "type": "structure",
1126
1133
  "members": {
@@ -1406,6 +1413,10 @@
1406
1413
  "shape": "EmbeddedPlusScte20DestinationSettings",
1407
1414
  "locationName": "embeddedPlusScte20DestinationSettings"
1408
1415
  },
1416
+ "RtmpCaptionInfoDestinationSettings": {
1417
+ "shape": "RtmpCaptionInfoDestinationSettings",
1418
+ "locationName": "rtmpCaptionInfoDestinationSettings"
1419
+ },
1409
1420
  "Scte20PlusEmbeddedDestinationSettings": {
1410
1421
  "shape": "Scte20PlusEmbeddedDestinationSettings",
1411
1422
  "locationName": "scte20PlusEmbeddedDestinationSettings"
@@ -1677,7 +1688,7 @@
1677
1688
  "Reserved": {
1678
1689
  "shape": "__string",
1679
1690
  "locationName": "reserved",
1680
- "deprecated" : true
1691
+ "deprecated": true
1681
1692
  },
1682
1693
  "RoleArn": {
1683
1694
  "shape": "__string",
@@ -4423,6 +4434,10 @@
4423
4434
  "shape": "M3u8TimedMetadataBehavior",
4424
4435
  "locationName": "timedMetadataBehavior"
4425
4436
  },
4437
+ "TimedMetadataPid": {
4438
+ "shape": "__string",
4439
+ "locationName": "timedMetadataPid"
4440
+ },
4426
4441
  "TransportStreamId": {
4427
4442
  "shape": "__integerMin0Max65535",
4428
4443
  "locationName": "transportStreamId"
@@ -4643,6 +4658,10 @@
4643
4658
  "shape": "__string",
4644
4659
  "locationName": "passwordParam"
4645
4660
  },
4661
+ "StreamName": {
4662
+ "shape": "__string",
4663
+ "locationName": "streamName"
4664
+ },
4646
4665
  "Url": {
4647
4666
  "shape": "__string",
4648
4667
  "locationName": "url"
@@ -4689,6 +4708,10 @@
4689
4708
  "shape": "MsSmoothGroupSettings",
4690
4709
  "locationName": "msSmoothGroupSettings"
4691
4710
  },
4711
+ "RtmpGroupSettings": {
4712
+ "shape": "RtmpGroupSettings",
4713
+ "locationName": "rtmpGroupSettings"
4714
+ },
4692
4715
  "UdpGroupSettings": {
4693
4716
  "shape": "UdpGroupSettings",
4694
4717
  "locationName": "udpGroupSettings"
@@ -4719,6 +4742,10 @@
4719
4742
  "shape": "MsSmoothOutputSettings",
4720
4743
  "locationName": "msSmoothOutputSettings"
4721
4744
  },
4745
+ "RtmpOutputSettings": {
4746
+ "shape": "RtmpOutputSettings",
4747
+ "locationName": "rtmpOutputSettings"
4748
+ },
4722
4749
  "UdpOutputSettings": {
4723
4750
  "shape": "UdpOutputSettings",
4724
4751
  "locationName": "udpOutputSettings"
@@ -4768,6 +4795,82 @@
4768
4795
  }
4769
4796
  }
4770
4797
  },
4798
+ "RtmpCacheFullBehavior": {
4799
+ "type": "string",
4800
+ "enum": [
4801
+ "DISCONNECT_IMMEDIATELY",
4802
+ "WAIT_FOR_SERVER"
4803
+ ]
4804
+ },
4805
+ "RtmpCaptionData": {
4806
+ "type": "string",
4807
+ "enum": [
4808
+ "ALL",
4809
+ "FIELD1_608",
4810
+ "FIELD1_AND_FIELD2_608"
4811
+ ]
4812
+ },
4813
+ "RtmpCaptionInfoDestinationSettings": {
4814
+ "type": "structure",
4815
+ "members": {
4816
+ }
4817
+ },
4818
+ "RtmpGroupSettings": {
4819
+ "type": "structure",
4820
+ "members": {
4821
+ "AuthenticationScheme": {
4822
+ "shape": "AuthenticationScheme",
4823
+ "locationName": "authenticationScheme"
4824
+ },
4825
+ "CacheFullBehavior": {
4826
+ "shape": "RtmpCacheFullBehavior",
4827
+ "locationName": "cacheFullBehavior"
4828
+ },
4829
+ "CacheLength": {
4830
+ "shape": "__integerMin30",
4831
+ "locationName": "cacheLength"
4832
+ },
4833
+ "CaptionData": {
4834
+ "shape": "RtmpCaptionData",
4835
+ "locationName": "captionData"
4836
+ },
4837
+ "RestartDelay": {
4838
+ "shape": "__integerMin0",
4839
+ "locationName": "restartDelay"
4840
+ }
4841
+ }
4842
+ },
4843
+ "RtmpOutputCertificateMode": {
4844
+ "type": "string",
4845
+ "enum": [
4846
+ "SELF_SIGNED",
4847
+ "VERIFY_AUTHENTICITY"
4848
+ ]
4849
+ },
4850
+ "RtmpOutputSettings": {
4851
+ "type": "structure",
4852
+ "members": {
4853
+ "CertificateMode": {
4854
+ "shape": "RtmpOutputCertificateMode",
4855
+ "locationName": "certificateMode"
4856
+ },
4857
+ "ConnectionRetryInterval": {
4858
+ "shape": "__integerMin1",
4859
+ "locationName": "connectionRetryInterval"
4860
+ },
4861
+ "Destination": {
4862
+ "shape": "OutputLocationRef",
4863
+ "locationName": "destination"
4864
+ },
4865
+ "NumRetries": {
4866
+ "shape": "__integerMin0",
4867
+ "locationName": "numRetries"
4868
+ }
4869
+ },
4870
+ "required": [
4871
+ "Destination"
4872
+ ]
4873
+ },
4771
4874
  "Scte20Convert608To708": {
4772
4875
  "type": "string",
4773
4876
  "enum": [
@@ -5732,6 +5835,10 @@
5732
5835
  "type": "integer",
5733
5836
  "min": 3
5734
5837
  },
5838
+ "__integerMin30": {
5839
+ "type": "integer",
5840
+ "min": 30
5841
+ },
5735
5842
  "__integerMin4Max20": {
5736
5843
  "type": "integer",
5737
5844
  "min": 4,
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.34'
2
+ VERSION = '2.11.35'
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.34
4
+ version: 2.11.35
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-04-19 00:00:00.000000000 Z
11
+ date: 2018-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath