Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
MEC - Multi-access Edge Computing
MEC Application Support API and MEC Service Management API
Commits
a0317469
Commit
a0317469
authored
May 20, 2019
by
Walter Featherstone
Browse files
grantTypes enum array. Updated jenkins script to use swagger-cli and speccy
parent
e23acf88
Pipeline
#942
passed with stage
in 0 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
.jenkins.sh
View file @
a0317469
#!/bin/bash
specfiles
=
$(
ls
| egrep
-i
"^Mp1
.(json|yaml)"
)
specfiles
=
$(
ls
| egrep
"^[^.]*
.(json|yaml)"
)
fres
=
0
for
i
in
$specfiles
;
do
echo
"-- Validating OpenAPI file
$i
..."
swagger-
tools
validate
$i
echo
"-- Validating
and linting
OpenAPI file
$i
..."
swagger-
cli
validate
"
$i
"
res
=
$?
fres
=
$((
$fres
||
$res
))
echo
-e
"-- Validator returned
$res
.
\n
"
speccy lint
"
$i
"
res2
=
$?
fres
=
$((
$fres
||
$res
||
$res2
))
echo
"--- Validator returned
$res
, linter returned
$res2
."
done
echo
"-- Final validat
or
returns
$fres
."
echo
"-- Final validat
ion
returns
$fres
."
exit
$fres
\ No newline at end of file
Mp1.json
View file @
a0317469
...
...
@@ -890,7 +890,7 @@
"description"
:
"Time to live value"
,
"type"
:
"integer"
,
"format"
:
"uint32"
,
"example"
:
300
"example"
:
"?"
},
"DnsRule"
:
{
"description"
:
"This type represents the general information of a DNS rule."
,
...
...
@@ -1144,7 +1144,13 @@
],
"properties"
:
{
"grantTypes"
:
{
"description"
:
"List of supported OAuth 2.0 grant types."
,
"type"
:
"array"
,
"minItems"
:
1
,
"maxItems"
:
4
,
"items"
:
{
"$ref"
:
"#/components/schemas/SecurityInfo.OAuth2Info.GrantTypes"
}
},
"tokenEndpoint"
:
{
"$ref"
:
"#/components/schemas/SecurityInfo.OAuth2Info.TokenEndpoint"
...
...
Mp1.yaml
View file @
a0317469
...
...
@@ -835,6 +835,12 @@ components:
-
tokenEndpoint
properties
:
grantTypes
:
description
:
>-
List of supported OAuth 2.0 grant types.
type
:
array
minItems
:
1
maxItems
:
4
items
:
$ref
:
'
#/components/schemas/SecurityInfo.OAuth2Info.GrantTypes'
tokenEndpoint
:
$ref
:
'
#/components/schemas/SecurityInfo.OAuth2Info.TokenEndpoint'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment