Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
chore: Move to Container App Env workload DEV (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuraf authored Jul 12, 2024
1 parent 6a70ed1 commit 09b493e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/main/resources/swagger/api-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@
},
"/institutions/{id}" : {
"get" : {
"tags" : [ "Institution", "external-v2" ],
"tags" : [ "Institution", "external-pnpg", "external-v2", "internal-v1" ],
"summary" : "Gets the corresponding institution using internal institution id",
"description" : "Gets the corresponding institution using internal institution id",
"operationId" : "retrieveInstitutionByIdUsingGET",
Expand Down Expand Up @@ -1938,7 +1938,7 @@
},
"/institutions/{institutionId}/createdAt" : {
"put" : {
"tags" : [ "Institution" ],
"tags" : [ "Institution", "internal-v1" ],
"summary" : "The service updates the createdAt field for the institution-product pair",
"description" : "The service updates the createdAt field for the institution-product pair",
"operationId" : "updateCreatedAtUsingPUT",
Expand Down
2 changes: 2 additions & 0 deletions infra/container_apps/env/dev/terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
env_short = "d"
env = "dev"
suffix_increment = "-002"
cae_name = "cae-002"

tags = {
CreatedBy = "Terraform"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,10 @@ public ResponseEntity<List<GeographicTaxonomies>> retrieveInstitutionGeoTaxonomi
* * Code: 200, Message: successful operation, DataType: InstitutionResponse
* * Code: 404, Message: GeographicTaxonomies or Institution not found, DataType: Problem
*/
@Tags({@Tag(name = "external-v2"), @Tag(name = "Institution")})
@Tag(name = "external-v2")
@Tag(name = "internal-v1")
@Tag(name = "external-pnpg")
@Tag(name = "Institution")
@ResponseStatus(HttpStatus.OK)
@ApiOperation(value = "${swagger.mscore.institution}", notes = "${swagger.mscore.institution}")
@GetMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE)
Expand Down Expand Up @@ -472,6 +475,8 @@ public ResponseEntity<List<InstitutionToOnboard>> getValidInstitutionToOnboard(@
* * Code: 404, Message: Institution or Token or UserBinding not found, DataType: Problem
*/
@ResponseStatus(HttpStatus.OK)
@Tag(name = "internal-v1")
@Tag(name = "Institution")
@ApiOperation(value = "${swagger.mscore.institutions.updateCreatedAt}", notes = "${swagger.mscore.institutions.updateCreatedAt}")
@PutMapping(value = "/{institutionId}/createdAt", produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Void> updateCreatedAt(@ApiParam("${swagger.mscore.institutions.model.institutionId}")
Expand Down

0 comments on commit 09b493e

Please sign in to comment.