Skip to content

Commit 5194e91

Browse files
committed
Adding NetScaler supported HTTP methods in the enums of CRD definitions
Signed-off-by: Dhiraj Gedam <[email protected]>
1 parent 3bf7285 commit 5194e91

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

crd/auth/auth-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ spec:
461461
type: array
462462
items:
463463
type: string
464-
enum: ['GET', 'PUT', 'POST','DELETE']
464+
enum: ['GET', 'PUT', 'POST', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT', 'UNKNOWN_METHOD']
465465
required:
466466
- path
467467
expression:
@@ -501,7 +501,7 @@ spec:
501501
type: array
502502
items:
503503
type: string
504-
enum: ['GET', 'PUT', 'POST','DELETE']
504+
enum: ['GET', 'PUT', 'POST', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT', 'UNKNOWN_METHOD']
505505
claims:
506506
description: 'authorization scopes required for selected resource saved as claims or attributes'
507507
type: array

crd/bot/bot-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
description: "List of http methods to inspect"
7070
items:
7171
type: string
72-
enum: ['GET', 'PUT', 'POST','DELETE']
72+
enum: ['GET', 'PUT', 'POST', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT', 'UNKNOWN_METHOD']
7373
header:
7474
type: array
7575
description: "List of http headers to inspect"

crd/ratelimit/ratelimit-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ spec:
6464
type: array
6565
items:
6666
type: string
67-
enum: ['GET', 'PUT', 'POST','DELETE']
67+
enum: ['GET', 'PUT', 'POST', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT', 'UNKNOWN_METHOD']
6868
header_name:
6969
description: "HTTP header that identifies the unique API client for e.g. X-apikey"
7070
type: string

crd/waf/waf-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ spec:
8888
description: "List of http methods to inspect"
8989
items:
9090
type: string
91-
enum: ['GET', 'PUT', 'POST','DELETE']
91+
enum: ['GET', 'PUT', 'POST', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT', 'UNKNOWN_METHOD']
9292
header:
9393
type: array
9494
description: "List of http headers to inspect"

0 commit comments

Comments
 (0)