-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to version 1.0.0-1-hotfix-zip-function [skip ci]
- Loading branch information
1 parent
e7facbb
commit b296f72
Showing
6 changed files
with
57 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,70 @@ | ||
{ | ||
"openapi" : "3.0.1", | ||
"info" : { | ||
"description" : "PagoPA Print Payment Notices Functions", | ||
"termsOfService" : "https://www.pagopa.gov.it/", | ||
"title" : "pagopa-print-payment-notice-functions", | ||
"version" : "1.0.0" | ||
"openapi": "3.0.1", | ||
"info": { | ||
"description": "PagoPA Print Payment Notices Functions", | ||
"termsOfService": "https://www.pagopa.gov.it/", | ||
"title": "pagopa-print-payment-notice-functions", | ||
"version": "1.0.0-1-hotfix-zip-function" | ||
}, | ||
"servers" : [ { | ||
"url" : "http://localhost", | ||
"description" : "Generated server url" | ||
} ], | ||
"paths" : { | ||
"/info" : { | ||
"get" : { | ||
"description" : "Return OK if application is started", | ||
"operationId" : "healthCheck", | ||
"responses" : { | ||
"200" : { | ||
"content" : { | ||
"*/*" : { | ||
"schema" : { | ||
"$ref" : "#/components/schemas/AppInfo" | ||
"servers": [ | ||
{ | ||
"url": "http://localhost", | ||
"description": "Generated server url" | ||
} | ||
], | ||
"paths": { | ||
"/info": { | ||
"get": { | ||
"description": "Return OK if application is started", | ||
"operationId": "healthCheck", | ||
"responses": { | ||
"200": { | ||
"content": { | ||
"*/*": { | ||
"schema": { | ||
"$ref": "#/components/schemas/AppInfo" | ||
} | ||
} | ||
}, | ||
"description" : "OK" | ||
"description": "OK" | ||
} | ||
}, | ||
"security" : [ { | ||
"ApiKey" : [ ] | ||
} ], | ||
"summary" : "health check", | ||
"tags" : [ "Home" ] | ||
"security": [ | ||
{ | ||
"ApiKey": [] | ||
} | ||
], | ||
"summary": "health check", | ||
"tags": [ | ||
"Home" | ||
] | ||
} | ||
} | ||
}, | ||
"components" : { | ||
"schemas" : { | ||
"AppInfo" : { | ||
"type" : "object", | ||
"properties" : { | ||
"environment" : { | ||
"type" : "string" | ||
"components": { | ||
"schemas": { | ||
"AppInfo": { | ||
"type": "object", | ||
"properties": { | ||
"environment": { | ||
"type": "string" | ||
}, | ||
"name" : { | ||
"type" : "string" | ||
"name": { | ||
"type": "string" | ||
}, | ||
"version" : { | ||
"type" : "string" | ||
"version": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"securitySchemes" : { | ||
"ApiKey" : { | ||
"description" : "The API key to access this function app.", | ||
"in" : "header", | ||
"name" : "Ocp-Apim-Subscription-Key", | ||
"type" : "apiKey" | ||
"securitySchemes": { | ||
"ApiKey": { | ||
"description": "The API key to access this function app.", | ||
"in": "header", | ||
"name": "Ocp-Apim-Subscription-Key", | ||
"type": "apiKey" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters