amazonka-directconnect 0.0.4 → 0.0.5
raw patch · 23 files changed
+46/−2 lines, 23 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-directconnect.cabal +2/−2
- gen/Network/AWS/DirectConnect.hs +2/−0
- gen/Network/AWS/DirectConnect/AllocateConnectionOnInterconnect.hs +2/−0
- gen/Network/AWS/DirectConnect/AllocatePrivateVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/AllocatePublicVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/ConfirmConnection.hs +2/−0
- gen/Network/AWS/DirectConnect/ConfirmPrivateVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/ConfirmPublicVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/CreateConnection.hs +2/−0
- gen/Network/AWS/DirectConnect/CreateInterconnect.hs +2/−0
- gen/Network/AWS/DirectConnect/CreatePrivateVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/CreatePublicVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/DeleteConnection.hs +2/−0
- gen/Network/AWS/DirectConnect/DeleteInterconnect.hs +2/−0
- gen/Network/AWS/DirectConnect/DeleteVirtualInterface.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeConnections.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeConnectionsOnInterconnect.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeInterconnects.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeLocations.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeVirtualGateways.hs +2/−0
- gen/Network/AWS/DirectConnect/DescribeVirtualInterfaces.hs +2/−0
- gen/Network/AWS/DirectConnect/Types.hs +2/−0
README.md view
@@ -29,3 +29,5 @@ ## Licence `amazonka-directconnect` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-directconnect.cabal view
@@ -1,5 +1,5 @@ name: amazonka-directconnect-version: 0.0.4+version: 0.0.5 synopsis: Amazon Direct Connect SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -62,5 +62,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/DirectConnect.hs view
@@ -7,6 +7,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | AWS Direct Connect links your internal network to an AWS Direct Connect -- location over a standard 1 gigabit or 10 gigabit Ethernet fiber-optic cable.
gen/Network/AWS/DirectConnect/AllocateConnectionOnInterconnect.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a hosted connection on an interconnect. --
gen/Network/AWS/DirectConnect/AllocatePrivateVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Provisions a private virtual interface to be owned by a different customer. --
gen/Network/AWS/DirectConnect/AllocatePublicVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Provisions a public virtual interface to be owned by a different customer. --
gen/Network/AWS/DirectConnect/ConfirmConnection.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Confirm the creation of a hosted connection on an interconnect. --
gen/Network/AWS/DirectConnect/ConfirmPrivateVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Accept ownership of a private virtual interface created by another customer. --
gen/Network/AWS/DirectConnect/ConfirmPublicVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Accept ownership of a public virtual interface created by another customer. --
gen/Network/AWS/DirectConnect/CreateConnection.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new connection between the customer network and a specific AWS -- Direct Connect location.
gen/Network/AWS/DirectConnect/CreateInterconnect.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new interconnect between a AWS Direct Connect partner's network and -- a specific AWS Direct Connect location.
gen/Network/AWS/DirectConnect/CreatePrivateVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new private virtual interface. A virtual interface is the VLAN that -- transports AWS Direct Connect traffic. A private virtual interface supports
gen/Network/AWS/DirectConnect/CreatePublicVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a new public virtual interface. A virtual interface is the VLAN that -- transports AWS Direct Connect traffic. A public virtual interface supports
gen/Network/AWS/DirectConnect/DeleteConnection.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the connection. --
gen/Network/AWS/DirectConnect/DeleteInterconnect.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the specified interconnect. --
gen/Network/AWS/DirectConnect/DeleteVirtualInterface.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes a virtual interface. --
gen/Network/AWS/DirectConnect/DescribeConnections.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Displays all connections in this region. --
gen/Network/AWS/DirectConnect/DescribeConnectionsOnInterconnect.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Return a list of connections that have been provisioned on the given -- interconnect.
gen/Network/AWS/DirectConnect/DescribeInterconnects.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns a list of interconnects owned by the AWS account. --
gen/Network/AWS/DirectConnect/DescribeLocations.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns the list of AWS Direct Connect locations in the current AWS region. -- These are the locations that may be selected when calling CreateConnection or
gen/Network/AWS/DirectConnect/DescribeVirtualGateways.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns a list of virtual private gateways owned by the AWS account. --
gen/Network/AWS/DirectConnect/DescribeVirtualInterfaces.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Displays all virtual interfaces for an AWS account. Virtual interfaces -- deleted fewer than 15 minutes before DescribeVirtualInterfaces is called are
gen/Network/AWS/DirectConnect/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. module Network.AWS.DirectConnect.Types (