gogol-admin-datatransfer 0.3.0 → 0.4.0
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~gogol-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: gogol-core
API changes (from Hackage documentation)
- Network.Google.DataTransfer: type DataTransferAPI = TransfersInsertResource :<|> (TransfersListResource :<|> (TransfersGetResource :<|> (ApplicationsListResource :<|> ApplicationsGetResource)))
+ Network.Google.DataTransfer: type DataTransferAPI = TransfersInsertResource :<|> TransfersListResource :<|> TransfersGetResource :<|> ApplicationsListResource :<|> ApplicationsGetResource
- Network.Google.Resource.DataTransfer.Applications.Get: type ApplicationsGetResource = "admin" :> ("datatransfer" :> ("v1" :> ("applications" :> (Capture "applicationId" (Textual Int64) :> (QueryParam "alt" AltJSON :> Get '[JSON] Application)))))
+ Network.Google.Resource.DataTransfer.Applications.Get: type ApplicationsGetResource = "admin" :> "datatransfer" :> "v1" :> "applications" :> Capture "applicationId" (Textual Int64) :> QueryParam "alt" AltJSON :> Get '[JSON] Application
- Network.Google.Resource.DataTransfer.Applications.List: type ApplicationsListResource = "admin" :> ("datatransfer" :> ("v1" :> ("applications" :> (QueryParam "customerId" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Int32) :> (QueryParam "alt" AltJSON :> Get '[JSON] ApplicationsListResponse)))))))
+ Network.Google.Resource.DataTransfer.Applications.List: type ApplicationsListResource = "admin" :> "datatransfer" :> "v1" :> "applications" :> QueryParam "customerId" Text :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] ApplicationsListResponse
- Network.Google.Resource.DataTransfer.Transfers.Get: type TransfersGetResource = "admin" :> ("datatransfer" :> ("v1" :> ("transfers" :> (Capture "dataTransferId" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] DataTransfer)))))
+ Network.Google.Resource.DataTransfer.Transfers.Get: type TransfersGetResource = "admin" :> "datatransfer" :> "v1" :> "transfers" :> Capture "dataTransferId" Text :> QueryParam "alt" AltJSON :> Get '[JSON] DataTransfer
- Network.Google.Resource.DataTransfer.Transfers.Insert: type TransfersInsertResource = "admin" :> ("datatransfer" :> ("v1" :> ("transfers" :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] DataTransfer :> Post '[JSON] DataTransfer)))))
+ Network.Google.Resource.DataTransfer.Transfers.Insert: type TransfersInsertResource = "admin" :> "datatransfer" :> "v1" :> "transfers" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] DataTransfer :> Post '[JSON] DataTransfer
- Network.Google.Resource.DataTransfer.Transfers.List: type TransfersListResource = "admin" :> ("datatransfer" :> ("v1" :> ("transfers" :> (QueryParam "status" Text :> (QueryParam "oldOwnerUserId" Text :> (QueryParam "newOwnerUserId" Text :> (QueryParam "customerId" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Int32) :> (QueryParam "alt" AltJSON :> Get '[JSON] DataTransfersListResponse))))))))))
+ Network.Google.Resource.DataTransfer.Transfers.List: type TransfersListResource = "admin" :> "datatransfer" :> "v1" :> "transfers" :> QueryParam "status" Text :> QueryParam "oldOwnerUserId" Text :> QueryParam "newOwnerUserId" Text :> QueryParam "customerId" Text :> QueryParam "pageToken" Text :> QueryParam "maxResults" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] DataTransfersListResponse
Files
gen/Network/Google/DataTransfer/Types/Sum.hs view
@@ -16,4 +16,4 @@ -- module Network.Google.DataTransfer.Types.Sum where -import Network.Google.Prelude+import Network.Google.Prelude hiding (Bytes)
gogol-admin-datatransfer.cabal view
@@ -1,5 +1,5 @@ name: gogol-admin-datatransfer-version: 0.3.0+version: 0.4.0 synopsis: Google Admin Data Transfer SDK. homepage: https://github.com/brendanhay/gogol bug-reports: https://github.com/brendanhay/gogol/issues@@ -46,5 +46,5 @@ , Network.Google.DataTransfer.Types.Sum build-depends:- gogol-core == 0.3.0.*+ gogol-core == 0.4.0.* , base >= 4.7 && < 5