amazonka-ssm 1.2.0.1 → 1.2.0.2
raw patch · 25 files changed
+29/−28 lines, 25 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-ssm.cabal +6/−5
- fixture/CreateAssociation.yaml +0/−0
- fixture/CreateAssociationBatch.yaml +0/−0
- fixture/CreateAssociationBatchResponse.proto +0/−0
- fixture/CreateAssociationResponse.proto +0/−0
- fixture/CreateDocument.yaml +0/−0
- fixture/CreateDocumentResponse.proto +0/−0
- fixture/DeleteAssociation.yaml +0/−0
- fixture/DeleteAssociationResponse.proto +0/−0
- fixture/DeleteDocument.yaml +0/−0
- fixture/DeleteDocumentResponse.proto +0/−0
- fixture/DescribeAssociation.yaml +0/−0
- fixture/DescribeAssociationResponse.proto +0/−0
- fixture/DescribeDocument.yaml +0/−0
- fixture/DescribeDocumentResponse.proto +0/−0
- fixture/GetDocument.yaml +0/−0
- fixture/GetDocumentResponse.proto +0/−0
- fixture/ListAssociations.yaml +0/−0
- fixture/ListAssociationsResponse.proto +0/−0
- fixture/ListDocuments.yaml +0/−0
- fixture/ListDocumentsResponse.proto +0/−0
- fixture/UpdateAssociationStatus.yaml +0/−0
- fixture/UpdateAssociationStatusResponse.proto +0/−0
- test/Test/AWS/Gen/SSM.hs +22/−22
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.2.0.1`+`1.2.0.2` ## Description
amazonka-ssm.cabal view
@@ -1,7 +1,8 @@ name: amazonka-ssm-version: 1.2.0.1+version: 1.2.0.2 synopsis: Amazon Simple Systems Management Service SDK. homepage: https://github.com/brendanhay/amazonka+bug-reports: https://github.com/brendanhay/amazonka/issues license: OtherLicense license-file: LICENSE author: Brendan Hay@@ -9,9 +10,8 @@ copyright: Copyright (c) 2013-2015 Brendan Hay category: Network, AWS, Cloud, Distributed Computing build-type: Simple-extra-source-files: README.md cabal-version: >= 1.10-+extra-source-files: README.md fixture/*.yaml fixture/*.proto description: Amazon EC2 Simple Systems Manager (SSM) enables you to configure and manage your EC2 instances. You can create a configuration document and@@ -86,8 +86,9 @@ ghc-options: -Wall -threaded - -- This is not comprehensive if modules have manually been added.- -- It exists to ensure cabal 'somewhat' detects test module changes.+ -- This section is encoded by the template and any modules added by+ -- hand outside these namespaces will not correctly be added to the+ -- distribution package. other-modules: Test.AWS.SSM , Test.AWS.Gen.SSM
+ fixture/CreateAssociation.yaml view
+ fixture/CreateAssociationBatch.yaml view
+ fixture/CreateAssociationBatchResponse.proto view
+ fixture/CreateAssociationResponse.proto view
+ fixture/CreateDocument.yaml view
+ fixture/CreateDocumentResponse.proto view
+ fixture/DeleteAssociation.yaml view
+ fixture/DeleteAssociationResponse.proto view
+ fixture/DeleteDocument.yaml view
+ fixture/DeleteDocumentResponse.proto view
+ fixture/DescribeAssociation.yaml view
+ fixture/DescribeAssociationResponse.proto view
+ fixture/DescribeDocument.yaml view
+ fixture/DescribeDocumentResponse.proto view
+ fixture/GetDocument.yaml view
+ fixture/GetDocumentResponse.proto view
+ fixture/ListAssociations.yaml view
+ fixture/ListAssociationsResponse.proto view
+ fixture/ListDocuments.yaml view
+ fixture/ListDocumentsResponse.proto view
+ fixture/UpdateAssociationStatus.yaml view
+ fixture/UpdateAssociationStatusResponse.proto view
test/Test/AWS/Gen/SSM.hs view
@@ -105,133 +105,133 @@ testDescribeDocument :: DescribeDocument -> TestTree testDescribeDocument = req "DescribeDocument"- "fixture/DescribeDocument"+ "fixture/DescribeDocument.yaml" testCreateAssociation :: CreateAssociation -> TestTree testCreateAssociation = req "CreateAssociation"- "fixture/CreateAssociation"+ "fixture/CreateAssociation.yaml" testCreateDocument :: CreateDocument -> TestTree testCreateDocument = req "CreateDocument"- "fixture/CreateDocument"+ "fixture/CreateDocument.yaml" testListDocuments :: ListDocuments -> TestTree testListDocuments = req "ListDocuments"- "fixture/ListDocuments"+ "fixture/ListDocuments.yaml" testGetDocument :: GetDocument -> TestTree testGetDocument = req "GetDocument"- "fixture/GetDocument"+ "fixture/GetDocument.yaml" testDescribeAssociation :: DescribeAssociation -> TestTree testDescribeAssociation = req "DescribeAssociation"- "fixture/DescribeAssociation"+ "fixture/DescribeAssociation.yaml" testUpdateAssociationStatus :: UpdateAssociationStatus -> TestTree testUpdateAssociationStatus = req "UpdateAssociationStatus"- "fixture/UpdateAssociationStatus"+ "fixture/UpdateAssociationStatus.yaml" testDeleteAssociation :: DeleteAssociation -> TestTree testDeleteAssociation = req "DeleteAssociation"- "fixture/DeleteAssociation"+ "fixture/DeleteAssociation.yaml" testListAssociations :: ListAssociations -> TestTree testListAssociations = req "ListAssociations"- "fixture/ListAssociations"+ "fixture/ListAssociations.yaml" testDeleteDocument :: DeleteDocument -> TestTree testDeleteDocument = req "DeleteDocument"- "fixture/DeleteDocument"+ "fixture/DeleteDocument.yaml" testCreateAssociationBatch :: CreateAssociationBatch -> TestTree testCreateAssociationBatch = req "CreateAssociationBatch"- "fixture/CreateAssociationBatch"+ "fixture/CreateAssociationBatch.yaml" -- Responses testDescribeDocumentResponse :: DescribeDocumentResponse -> TestTree testDescribeDocumentResponse = res "DescribeDocumentResponse"- "fixture/DescribeDocumentResponse"+ "fixture/DescribeDocumentResponse.proto" sSM (Proxy :: Proxy DescribeDocument) testCreateAssociationResponse :: CreateAssociationResponse -> TestTree testCreateAssociationResponse = res "CreateAssociationResponse"- "fixture/CreateAssociationResponse"+ "fixture/CreateAssociationResponse.proto" sSM (Proxy :: Proxy CreateAssociation) testCreateDocumentResponse :: CreateDocumentResponse -> TestTree testCreateDocumentResponse = res "CreateDocumentResponse"- "fixture/CreateDocumentResponse"+ "fixture/CreateDocumentResponse.proto" sSM (Proxy :: Proxy CreateDocument) testListDocumentsResponse :: ListDocumentsResponse -> TestTree testListDocumentsResponse = res "ListDocumentsResponse"- "fixture/ListDocumentsResponse"+ "fixture/ListDocumentsResponse.proto" sSM (Proxy :: Proxy ListDocuments) testGetDocumentResponse :: GetDocumentResponse -> TestTree testGetDocumentResponse = res "GetDocumentResponse"- "fixture/GetDocumentResponse"+ "fixture/GetDocumentResponse.proto" sSM (Proxy :: Proxy GetDocument) testDescribeAssociationResponse :: DescribeAssociationResponse -> TestTree testDescribeAssociationResponse = res "DescribeAssociationResponse"- "fixture/DescribeAssociationResponse"+ "fixture/DescribeAssociationResponse.proto" sSM (Proxy :: Proxy DescribeAssociation) testUpdateAssociationStatusResponse :: UpdateAssociationStatusResponse -> TestTree testUpdateAssociationStatusResponse = res "UpdateAssociationStatusResponse"- "fixture/UpdateAssociationStatusResponse"+ "fixture/UpdateAssociationStatusResponse.proto" sSM (Proxy :: Proxy UpdateAssociationStatus) testDeleteAssociationResponse :: DeleteAssociationResponse -> TestTree testDeleteAssociationResponse = res "DeleteAssociationResponse"- "fixture/DeleteAssociationResponse"+ "fixture/DeleteAssociationResponse.proto" sSM (Proxy :: Proxy DeleteAssociation) testListAssociationsResponse :: ListAssociationsResponse -> TestTree testListAssociationsResponse = res "ListAssociationsResponse"- "fixture/ListAssociationsResponse"+ "fixture/ListAssociationsResponse.proto" sSM (Proxy :: Proxy ListAssociations) testDeleteDocumentResponse :: DeleteDocumentResponse -> TestTree testDeleteDocumentResponse = res "DeleteDocumentResponse"- "fixture/DeleteDocumentResponse"+ "fixture/DeleteDocumentResponse.proto" sSM (Proxy :: Proxy DeleteDocument) testCreateAssociationBatchResponse :: CreateAssociationBatchResponse -> TestTree testCreateAssociationBatchResponse = res "CreateAssociationBatchResponse"- "fixture/CreateAssociationBatchResponse"+ "fixture/CreateAssociationBatchResponse.proto" sSM (Proxy :: Proxy CreateAssociationBatch)