File tree 3 files changed +38
-0
lines changed
3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ document :
2
+ dsl : 1.0.0-alpha1
3
+ namespace : examples
4
+ name : oauth2-authentication
5
+ version : 1.0.0-alpha1
6
+ use :
7
+ secrets :
8
+ - mySecret
9
+ do :
10
+ - getPet :
11
+ call : http
12
+ with :
13
+ method : get
14
+ endpoint :
15
+ uri : https://petstore.swagger.io/v2/pet/{petId}
16
+ authentication :
17
+ oauth2 :
18
+ use : mySecret
Original file line number Diff line number Diff line change
1
+ document :
2
+ dsl : 1.0.0-alpha1
3
+ namespace : examples
4
+ name : oidc-authentication
5
+ version : 1.0.0-alpha1
6
+ use :
7
+ secrets :
8
+ - mySecret
9
+ do :
10
+ - getPet :
11
+ call : http
12
+ with :
13
+ method : get
14
+ endpoint :
15
+ uri : https://petstore.swagger.io/v2/pet/{petId}
16
+ authentication :
17
+ oidc :
18
+ use : mySecret
Original file line number Diff line number Diff line change @@ -924,6 +924,7 @@ $defs:
924
924
- type : object
925
925
title : OAuth2ConnectAuthenticationProperties
926
926
description : The inline configuration of the OAuth2 authentication policy.
927
+ unevaluatedProperties : false
927
928
allOf :
928
929
- $ref : ' #/$defs/oauth2AuthenticationProperties'
929
930
- type : object
@@ -967,6 +968,7 @@ $defs:
967
968
- $ref : ' #/$defs/oauth2AuthenticationProperties'
968
969
title : OpenIdConnectAuthenticationProperties
969
970
description : The inline configuration of the OpenIdConnect authentication policy.
971
+ unevaluatedProperties : false
970
972
- $ref : ' #/$defs/secretBasedAuthenticationPolicy'
971
973
title : OpenIdConnectAuthenticationPolicySecret
972
974
description : Secret based configuration of the OpenIdConnect authentication policy.
You can’t perform that action at this time.
0 commit comments