aws-sdk-core 2.11.235 → 2.11.236

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": { }
4
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "pagination": {
3
+ "ListMeshes": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "limit",
6
+ "output_token": "nextToken",
7
+ "result_key": "meshes"
8
+ },
9
+ "ListRoutes": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "limit",
12
+ "output_token": "nextToken",
13
+ "result_key": "routes"
14
+ },
15
+ "ListVirtualNodes": {
16
+ "input_token": "nextToken",
17
+ "limit_key": "limit",
18
+ "output_token": "nextToken",
19
+ "result_key": "virtualNodes"
20
+ },
21
+ "ListVirtualRouters": {
22
+ "input_token": "nextToken",
23
+ "limit_key": "limit",
24
+ "output_token": "nextToken",
25
+ "result_key": "virtualRouters"
26
+ },
27
+ "ListVirtualServices": {
28
+ "input_token": "nextToken",
29
+ "limit_key": "limit",
30
+ "output_token": "nextToken",
31
+ "result_key": "virtualServices"
32
+ }
33
+ }
34
+ }
@@ -785,6 +785,15 @@
785
785
  "gpuIds":{"shape":"GpuIds"}
786
786
  }
787
787
  },
788
+ "ContainerCondition":{
789
+ "type":"string",
790
+ "enum":[
791
+ "START",
792
+ "COMPLETE",
793
+ "SUCCESS",
794
+ "HEALTHY"
795
+ ]
796
+ },
788
797
  "ContainerDefinition":{
789
798
  "type":"structure",
790
799
  "members":{
@@ -804,6 +813,9 @@
804
813
  "volumesFrom":{"shape":"VolumeFromList"},
805
814
  "linuxParameters":{"shape":"LinuxParameters"},
806
815
  "secrets":{"shape":"SecretList"},
816
+ "dependsOn":{"shape":"ContainerDependencies"},
817
+ "startTimeout":{"shape":"BoxedInteger"},
818
+ "stopTimeout":{"shape":"BoxedInteger"},
807
819
  "hostname":{"shape":"String"},
808
820
  "user":{"shape":"String"},
809
821
  "workingDirectory":{"shape":"String"},
@@ -828,6 +840,21 @@
828
840
  "type":"list",
829
841
  "member":{"shape":"ContainerDefinition"}
830
842
  },
843
+ "ContainerDependencies":{
844
+ "type":"list",
845
+ "member":{"shape":"ContainerDependency"}
846
+ },
847
+ "ContainerDependency":{
848
+ "type":"structure",
849
+ "required":[
850
+ "containerName",
851
+ "condition"
852
+ ],
853
+ "members":{
854
+ "containerName":{"shape":"String"},
855
+ "condition":{"shape":"ContainerCondition"}
856
+ }
857
+ },
831
858
  "ContainerInstance":{
832
859
  "type":"structure",
833
860
  "members":{
@@ -1668,6 +1695,23 @@
1668
1695
  "SERVICE"
1669
1696
  ]
1670
1697
  },
1698
+ "ProxyConfiguration":{
1699
+ "type":"structure",
1700
+ "required":["containerName"],
1701
+ "members":{
1702
+ "type":{"shape":"ProxyConfigurationType"},
1703
+ "containerName":{"shape":"String"},
1704
+ "properties":{"shape":"ProxyConfigurationProperties"}
1705
+ }
1706
+ },
1707
+ "ProxyConfigurationProperties":{
1708
+ "type":"list",
1709
+ "member":{"shape":"KeyValuePair"}
1710
+ },
1711
+ "ProxyConfigurationType":{
1712
+ "type":"string",
1713
+ "enum":["APPMESH"]
1714
+ },
1671
1715
  "PutAccountSettingDefaultRequest":{
1672
1716
  "type":"structure",
1673
1717
  "required":[
@@ -1756,7 +1800,8 @@
1756
1800
  "memory":{"shape":"String"},
1757
1801
  "tags":{"shape":"Tags"},
1758
1802
  "pidMode":{"shape":"PidMode"},
1759
- "ipcMode":{"shape":"IpcMode"}
1803
+ "ipcMode":{"shape":"IpcMode"},
1804
+ "proxyConfiguration":{"shape":"ProxyConfiguration"}
1760
1805
  }
1761
1806
  },
1762
1807
  "RegisterTaskDefinitionResponse":{
@@ -2220,7 +2265,8 @@
2220
2265
  "cpu":{"shape":"String"},
2221
2266
  "memory":{"shape":"String"},
2222
2267
  "pidMode":{"shape":"PidMode"},
2223
- "ipcMode":{"shape":"IpcMode"}
2268
+ "ipcMode":{"shape":"IpcMode"},
2269
+ "proxyConfiguration":{"shape":"ProxyConfiguration"}
2224
2270
  }
2225
2271
  },
2226
2272
  "TaskDefinitionFamilyStatus":{
@@ -1226,7 +1226,8 @@
1226
1226
  "MetricGroups":{"shape":"MetricGroupList"},
1227
1227
  "PeerVpcAwsAccountId":{"shape":"NonZeroAndMaxString"},
1228
1228
  "PeerVpcId":{"shape":"NonZeroAndMaxString"},
1229
- "FleetType":{"shape":"FleetType"}
1229
+ "FleetType":{"shape":"FleetType"},
1230
+ "InstanceRoleArn":{"shape":"NonEmptyString"}
1230
1231
  }
1231
1232
  },
1232
1233
  "CreateFleetOutput":{
@@ -1966,7 +1967,8 @@
1966
1967
  "OperatingSystem":{"shape":"OperatingSystem"},
1967
1968
  "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
1968
1969
  "MetricGroups":{"shape":"MetricGroupList"},
1969
- "StoppedActions":{"shape":"FleetActionList"}
1970
+ "StoppedActions":{"shape":"FleetActionList"},
1971
+ "InstanceRoleArn":{"shape":"NonEmptyString"}
1970
1972
  }
1971
1973
  },
1972
1974
  "FleetAttributesList":{
@@ -2765,6 +2765,9 @@
2765
2765
  "members" : {
2766
2766
  "IsolationMode" : {
2767
2767
  "shape" : "FunctionIsolationMode"
2768
+ },
2769
+ "RunAs" : {
2770
+ "shape" : "FunctionRunAsConfig"
2768
2771
  }
2769
2772
  }
2770
2773
  },
@@ -5742,6 +5742,32 @@
5742
5742
  }
5743
5743
  }
5744
5744
  },
5745
+ "MediaPackageGroupSettings": {
5746
+ "type": "structure",
5747
+ "members": {
5748
+ "Destination": {
5749
+ "shape": "OutputLocationRef",
5750
+ "locationName": "destination"
5751
+ }
5752
+ },
5753
+ "required": [
5754
+ "Destination"
5755
+ ]
5756
+ },
5757
+ "MediaPackageOutputDestinationSettings": {
5758
+ "type": "structure",
5759
+ "members": {
5760
+ "ChannelId": {
5761
+ "shape": "__stringMin1",
5762
+ "locationName": "channelId"
5763
+ }
5764
+ }
5765
+ },
5766
+ "MediaPackageOutputSettings": {
5767
+ "type": "structure",
5768
+ "members": {
5769
+ }
5770
+ },
5745
5771
  "Mp2CodingMode": {
5746
5772
  "type": "string",
5747
5773
  "enum": [
@@ -5988,6 +6014,10 @@
5988
6014
  "shape": "__string",
5989
6015
  "locationName": "id"
5990
6016
  },
6017
+ "MediaPackageSettings": {
6018
+ "shape": "__listOfMediaPackageOutputDestinationSettings",
6019
+ "locationName": "mediaPackageSettings"
6020
+ },
5991
6021
  "Settings": {
5992
6022
  "shape": "__listOfOutputDestinationSettings",
5993
6023
  "locationName": "settings"
@@ -6051,6 +6081,10 @@
6051
6081
  "shape": "HlsGroupSettings",
6052
6082
  "locationName": "hlsGroupSettings"
6053
6083
  },
6084
+ "MediaPackageGroupSettings": {
6085
+ "shape": "MediaPackageGroupSettings",
6086
+ "locationName": "mediaPackageGroupSettings"
6087
+ },
6054
6088
  "MsSmoothGroupSettings": {
6055
6089
  "shape": "MsSmoothGroupSettings",
6056
6090
  "locationName": "msSmoothGroupSettings"
@@ -6089,6 +6123,10 @@
6089
6123
  "shape": "HlsOutputSettings",
6090
6124
  "locationName": "hlsOutputSettings"
6091
6125
  },
6126
+ "MediaPackageOutputSettings": {
6127
+ "shape": "MediaPackageOutputSettings",
6128
+ "locationName": "mediaPackageOutputSettings"
6129
+ },
6092
6130
  "MsSmoothOutputSettings": {
6093
6131
  "shape": "MsSmoothOutputSettings",
6094
6132
  "locationName": "msSmoothOutputSettings"
@@ -8038,6 +8076,12 @@
8038
8076
  "shape": "MediaConnectFlowRequest"
8039
8077
  }
8040
8078
  },
8079
+ "__listOfMediaPackageOutputDestinationSettings": {
8080
+ "type": "list",
8081
+ "member": {
8082
+ "shape": "MediaPackageOutputDestinationSettings"
8083
+ }
8084
+ },
8041
8085
  "__listOfOffering": {
8042
8086
  "type": "list",
8043
8087
  "member": {
@@ -2328,7 +2328,8 @@
2328
2328
  "EngineMode":{"shape":"String"},
2329
2329
  "ScalingConfiguration":{"shape":"ScalingConfiguration"},
2330
2330
  "DeletionProtection":{"shape":"BooleanOptional"},
2331
- "GlobalClusterIdentifier":{"shape":"String"}
2331
+ "GlobalClusterIdentifier":{"shape":"String"},
2332
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
2332
2333
  }
2333
2334
  },
2334
2335
  "CreateDBClusterParameterGroupMessage":{
@@ -2663,7 +2664,8 @@
2663
2664
  "EngineMode":{"shape":"String"},
2664
2665
  "ScalingConfigurationInfo":{"shape":"ScalingConfigurationInfo"},
2665
2666
  "DeletionProtection":{"shape":"Boolean"},
2666
- "HttpEndpointEnabled":{"shape":"Boolean"}
2667
+ "HttpEndpointEnabled":{"shape":"Boolean"},
2668
+ "CopyTagsToSnapshot":{"shape":"Boolean"}
2667
2669
  },
2668
2670
  "wrapper":true
2669
2671
  },
@@ -4875,7 +4877,8 @@
4875
4877
  "EngineVersion":{"shape":"String"},
4876
4878
  "ScalingConfiguration":{"shape":"ScalingConfiguration"},
4877
4879
  "DeletionProtection":{"shape":"BooleanOptional"},
4878
- "EnableHttpEndpoint":{"shape":"BooleanOptional"}
4880
+ "EnableHttpEndpoint":{"shape":"BooleanOptional"},
4881
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
4879
4882
  }
4880
4883
  },
4881
4884
  "ModifyDBClusterParameterGroupMessage":{
@@ -5830,7 +5833,8 @@
5830
5833
  "S3IngestionRoleArn":{"shape":"String"},
5831
5834
  "BacktrackWindow":{"shape":"LongOptional"},
5832
5835
  "EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
5833
- "DeletionProtection":{"shape":"BooleanOptional"}
5836
+ "DeletionProtection":{"shape":"BooleanOptional"},
5837
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
5834
5838
  }
5835
5839
  },
5836
5840
  "RestoreDBClusterFromS3Result":{
@@ -5865,7 +5869,8 @@
5865
5869
  "EngineMode":{"shape":"String"},
5866
5870
  "ScalingConfiguration":{"shape":"ScalingConfiguration"},
5867
5871
  "DBClusterParameterGroupName":{"shape":"String"},
5868
- "DeletionProtection":{"shape":"BooleanOptional"}
5872
+ "DeletionProtection":{"shape":"BooleanOptional"},
5873
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
5869
5874
  }
5870
5875
  },
5871
5876
  "RestoreDBClusterFromSnapshotResult":{
@@ -5896,7 +5901,8 @@
5896
5901
  "BacktrackWindow":{"shape":"LongOptional"},
5897
5902
  "EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
5898
5903
  "DBClusterParameterGroupName":{"shape":"String"},
5899
- "DeletionProtection":{"shape":"BooleanOptional"}
5904
+ "DeletionProtection":{"shape":"BooleanOptional"},
5905
+ "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
5900
5906
  }
5901
5907
  },
5902
5908
  "RestoreDBClusterToPointInTimeResult":{
@@ -802,6 +802,14 @@
802
802
  "us-west-2" : { }
803
803
  }
804
804
  },
805
+ "comprehendmedical" : {
806
+ "endpoints" : {
807
+ "eu-west-1" : { },
808
+ "us-east-1" : { },
809
+ "us-east-2" : { },
810
+ "us-west-2" : { }
811
+ }
812
+ },
805
813
  "config" : {
806
814
  "endpoints" : {
807
815
  "ap-northeast-1" : { },
@@ -1,6 +1,6 @@
1
1
  Aws.add_service(:AppMesh, {
2
- api: "#{Aws::API_DIR}/appmesh/2018-10-01/api-2.json",
3
- docs: "#{Aws::API_DIR}/appmesh/2018-10-01/docs-2.json",
4
- examples: "#{Aws::API_DIR}/appmesh/2018-10-01/examples-1.json",
5
- paginators: "#{Aws::API_DIR}/appmesh/2018-10-01/paginators-1.json",
2
+ api: "#{Aws::API_DIR}/appmesh/2019-01-25/api-2.json",
3
+ docs: "#{Aws::API_DIR}/appmesh/2019-01-25/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/appmesh/2019-01-25/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/appmesh/2019-01-25/paginators-1.json",
6
6
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.235'
2
+ VERSION = '2.11.236'
3
3
  end
@@ -28,7 +28,7 @@
28
28
  "endpoint": "apigateway"
29
29
  },
30
30
  "AppMesh": {
31
- "models": "appmesh/2018-10-01",
31
+ "models": "appmesh/2019-01-25",
32
32
  "endpoint": "appmesh"
33
33
  },
34
34
  "AppStream": {
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.235
4
+ version: 2.11.236
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-03-06 00:00:00.000000000 Z
11
+ date: 2019-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -80,6 +80,9 @@ files:
80
80
  - apis/appmesh/2018-10-01/api-2.json
81
81
  - apis/appmesh/2018-10-01/examples-1.json
82
82
  - apis/appmesh/2018-10-01/paginators-1.json
83
+ - apis/appmesh/2019-01-25/api-2.json
84
+ - apis/appmesh/2019-01-25/examples-1.json
85
+ - apis/appmesh/2019-01-25/paginators-1.json
83
86
  - apis/appstream/2016-12-01/api-2.json
84
87
  - apis/appstream/2016-12-01/examples-1.json
85
88
  - apis/appstream/2016-12-01/paginators-1.json