This is an automated email from the ASF dual-hosted git repository.
DImuthuUpe pushed a change to branch base-api-imp
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git
from e26b314a9 Implemented service layer for ComputeAllocationDiff
add 0fb817038 Implemented the service layer for Allocation Change Requests
and related events
No new revisions were added by this update.
Summary of changes:
docs/API-Docs.md | 186 +++++++++++++++++
...07_compute_allocation_change_requests.down.sql} | 3 +-
...00007_compute_allocation_change_requests.up.sql | 49 +++++
internal/server/server.go | 126 ++++++++++++
...ompute_allocation_change_request_event_store.go | 97 +++++++++
.../compute_allocation_change_request_store.go | 109 ++++++++++
internal/store/store.go | 38 ++++
pkg/models/allocation.go | 28 +--
pkg/service/compute_allocation_change_request.go | 219 +++++++++++++++++++++
.../compute_allocation_change_request_event.go | 119 +++++++++++
pkg/service/service.go | 8 +
11 files changed, 967 insertions(+), 15 deletions(-)
copy
internal/db/migrations/{000004_compute_allocation_resource_mappings.down.sql =>
000007_compute_allocation_change_requests.down.sql} (86%)
create mode 100644
internal/db/migrations/000007_compute_allocation_change_requests.up.sql
create mode 100644
internal/store/compute_allocation_change_request_event_store.go
create mode 100644 internal/store/compute_allocation_change_request_store.go
create mode 100644 pkg/service/compute_allocation_change_request.go
create mode 100644 pkg/service/compute_allocation_change_request_event.go