amazonka-route53-domains 0.0.4 → 0.0.5
raw patch · 19 files changed
+38/−2 lines, 19 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-route53-domains.cabal +2/−2
- gen/Network/AWS/Route53Domains.hs +2/−0
- gen/Network/AWS/Route53Domains/CheckDomainAvailability.hs +2/−0
- gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.hs +2/−0
- gen/Network/AWS/Route53Domains/DisableDomainTransferLock.hs +2/−0
- gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.hs +2/−0
- gen/Network/AWS/Route53Domains/EnableDomainTransferLock.hs +2/−0
- gen/Network/AWS/Route53Domains/GetDomainDetail.hs +2/−0
- gen/Network/AWS/Route53Domains/GetOperationDetail.hs +2/−0
- gen/Network/AWS/Route53Domains/ListDomains.hs +2/−0
- gen/Network/AWS/Route53Domains/ListOperations.hs +2/−0
- gen/Network/AWS/Route53Domains/RegisterDomain.hs +2/−0
- gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.hs +2/−0
- gen/Network/AWS/Route53Domains/TransferDomain.hs +2/−0
- gen/Network/AWS/Route53Domains/Types.hs +2/−0
- gen/Network/AWS/Route53Domains/UpdateDomainContact.hs +2/−0
- gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.hs +2/−0
- gen/Network/AWS/Route53Domains/UpdateDomainNameservers.hs +2/−0
README.md view
@@ -24,3 +24,5 @@ ## Licence `amazonka-route53-domains` 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-route53-domains.cabal view
@@ -1,5 +1,5 @@ name: amazonka-route53-domains-version: 0.0.4+version: 0.0.5 synopsis: Amazon Route 53 Domains SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -53,5 +53,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/Route53Domains.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. -- | Pending module Network.AWS.Route53Domains
gen/Network/AWS/Route53Domains/CheckDomainAvailability.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. -- | This operation checks the availability of one domain name. You can access -- this API without authenticating. Note that if the availability status of a
gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.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. -- | This operation disables automatic renewal of domain registration for the -- specified domain.
gen/Network/AWS/Route53Domains/DisableDomainTransferLock.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. -- | This operation removes the transfer lock on the domain (specifically the 'clientTransferProhibited' status) to allow domain transfers. We recommend you refrain from performing -- this action unless you intend to transfer the domain to a different
gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.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. -- | This operation configures Amazon Route 53 to automatically renew the -- specified domain before the domain registration expires. The cost of renewing
gen/Network/AWS/Route53Domains/EnableDomainTransferLock.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. -- | This operation sets the transfer lock on the domain (specifically the 'clientTransferProhibited' status) to prevent domain transfers. Successful submission returns an -- operation ID that you can use to track the progress and completion of the
gen/Network/AWS/Route53Domains/GetDomainDetail.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. -- | This operation returns detailed information about the domain. The domain's -- contact information is also returned as part of the output.
gen/Network/AWS/Route53Domains/GetOperationDetail.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. -- | This operation returns the current status of an operation that is not -- completed.
gen/Network/AWS/Route53Domains/ListDomains.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. -- | This operation returns all the domain names registered with Amazon Route 53 -- for the current AWS account.
gen/Network/AWS/Route53Domains/ListOperations.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. -- | This operation returns the operation IDs of operations that are not yet -- complete.
gen/Network/AWS/Route53Domains/RegisterDomain.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. -- | This operation registers a domain. Domains are registered by the AWS -- registrar partner, Gandi. For some top-level domains (TLDs), this operation
gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.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. -- | This operation returns the AuthCode for the domain. To transfer a domain to -- another registrar, you provide this value to the new registrar.
gen/Network/AWS/Route53Domains/TransferDomain.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. -- | This operation transfers a domain from another registrar to Amazon Route 53. -- Domains are registered by the AWS registrar, Gandi upon transfer.
gen/Network/AWS/Route53Domains/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.Route53Domains.Types (
gen/Network/AWS/Route53Domains/UpdateDomainContact.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. -- | This operation updates the contact information for a particular domain. -- Information for at least one contact (registrant, administrator, or
gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.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. -- | This operation updates the specified domain contact's privacy setting. When -- the privacy option is enabled, personal information such as postal or email
gen/Network/AWS/Route53Domains/UpdateDomainNameservers.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. -- | This operation replaces the current set of name servers for the domain with -- the specified set of name servers. If you use Amazon Route 53 as your DNS