Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17308,6 +17308,7 @@ components:
- $ref: "#/components/schemas/SyntheticsBasicAuthDigest"
- $ref: "#/components/schemas/SyntheticsBasicAuthOauthClient"
- $ref: "#/components/schemas/SyntheticsBasicAuthOauthROP"
- $ref: "#/components/schemas/SyntheticsBasicAuthJWT"
SyntheticsBasicAuthDigest:
description: Object to handle digest authentication when performing the test.
properties:
Expand Down Expand Up @@ -17335,6 +17336,78 @@ components:
type: string
x-enum-varnames:
- DIGEST
SyntheticsBasicAuthJWT:
description: Object to handle JWT authentication when performing the test.
properties:
addClaims:
$ref: "#/components/schemas/SyntheticsBasicAuthJWTAddClaims"
algorithm:
$ref: "#/components/schemas/SyntheticsBasicAuthJWTAlgorithm"
expiresIn:
description: Token time-to-live in seconds.
example: 3600
format: int64
minimum: 1
type: integer
header:
description: Custom JWT header as a JSON string.
example: '{"kid": "my-key-id"}'
type: string
payload:
description: JWT claims as a JSON string.
example: '{"sub": "1234567890", "name": "John Doe"}'
type: string
secret:
description: |-
Signing key for the JWT authentication. Use the shared secret for `HS256`
or the private key (PEM format) for `RS256` and `ES256`.
example: "mysecretkey"
type: string
tokenPrefix:
description: Prefix added before the token in the `Authorization` header. Defaults to `Bearer`.
example: "Bearer"
type: string
type:
$ref: "#/components/schemas/SyntheticsBasicAuthJWTType"
required:
- algorithm
- payload
- secret
- type
type: object
SyntheticsBasicAuthJWTAddClaims:
description: Standard JWT claims to automatically inject.
properties:
exp:
description: Whether to inject the `exp` (expiration) claim.
example: true
type: boolean
iat:
description: Whether to inject the `iat` (issued at) claim.
example: true
type: boolean
type: object
SyntheticsBasicAuthJWTAlgorithm:
description: Algorithm to use for the JWT authentication.
enum:
- HS256
- RS256
- ES256
example: "HS256"
type: string
x-enum-varnames:
- HS256
- RS256
- ES256
SyntheticsBasicAuthJWTType:
default: "jwt"
description: The type of authentication to use when performing the test.
enum:
- jwt
example: "jwt"
type: string
x-enum-varnames:
- JWT
SyntheticsBasicAuthNTLM:
description: Object to handle `NTLM` authentication when performing the test.
properties:
Expand Down
Loading
Loading