amazonka-kms 0.0.6 → 0.0.7
raw patch · 6 files changed
+9/−9 lines, 6 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-kms.cabal +2/−2
- gen/Network/AWS/KMS/ListAliases.hs +1/−1
- gen/Network/AWS/KMS/ListGrants.hs +1/−1
- gen/Network/AWS/KMS/ListKeyPolicies.hs +1/−1
- gen/Network/AWS/KMS/ListKeys.hs +1/−1
- gen/Network/AWS/KMS/Types.hs +3/−3
amazonka-kms.cabal view
@@ -1,5 +1,5 @@ name: amazonka-kms-version: 0.0.6+version: 0.0.7 synopsis: Amazon Key Management Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -69,5 +69,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/KMS/ListAliases.hs view
@@ -142,6 +142,6 @@ instance FromJSON ListAliasesResponse where parseJSON = withObject "ListAliasesResponse" $ \o -> ListAliasesResponse- <$> o .: "Aliases"+ <$> o .:? "Aliases" .!= mempty <*> o .:? "NextMarker" <*> o .:? "Truncated"
gen/Network/AWS/KMS/ListGrants.hs view
@@ -155,6 +155,6 @@ instance FromJSON ListGrantsResponse where parseJSON = withObject "ListGrantsResponse" $ \o -> ListGrantsResponse- <$> o .: "Grants"+ <$> o .:? "Grants" .!= mempty <*> o .:? "NextMarker" <*> o .:? "Truncated"
gen/Network/AWS/KMS/ListKeyPolicies.hs view
@@ -157,5 +157,5 @@ instance FromJSON ListKeyPoliciesResponse where parseJSON = withObject "ListKeyPoliciesResponse" $ \o -> ListKeyPoliciesResponse <$> o .:? "NextMarker"- <*> o .: "PolicyNames"+ <*> o .:? "PolicyNames" .!= mempty <*> o .:? "Truncated"
gen/Network/AWS/KMS/ListKeys.hs view
@@ -142,6 +142,6 @@ instance FromJSON ListKeysResponse where parseJSON = withObject "ListKeysResponse" $ \o -> ListKeysResponse- <$> o .: "Keys"+ <$> o .:? "Keys" .!= mempty <*> o .:? "NextMarker" <*> o .:? "Truncated"
gen/Network/AWS/KMS/Types.hs view
@@ -281,8 +281,8 @@ instance FromJSON GrantConstraints where parseJSON = withObject "GrantConstraints" $ \o -> GrantConstraints- <$> o .: "EncryptionContextEquals"- <*> o .: "EncryptionContextSubset"+ <$> o .:? "EncryptionContextEquals" .!= mempty+ <*> o .:? "EncryptionContextSubset" .!= mempty instance ToJSON GrantConstraints where toJSON GrantConstraints{..} = object@@ -409,7 +409,7 @@ <*> o .:? "GrantId" <*> o .:? "GranteePrincipal" <*> o .:? "IssuingAccount"- <*> o .: "Operations"+ <*> o .:? "Operations" .!= mempty <*> o .:? "RetiringPrincipal" instance ToJSON GrantListEntry where