@@ -10107,20 +10107,122 @@ components:
1010710107 - NETWORK_HOP
1010810108 - RECEIVED_MESSAGE
1010910109 SyntheticsBasicAuth:
10110+ description: Object to handle basic authentication when performing the test.
10111+ oneOf:
10112+ - $ref: '#/components/schemas/SyntheticsBasicAuthWeb'
10113+ - $ref: '#/components/schemas/SyntheticsBasicAuthSigv4'
10114+ - $ref: '#/components/schemas/SyntheticsBasicAuthNTLM'
10115+ type: object
10116+ SyntheticsBasicAuthNTLM:
10117+ description: Object to handle `NTLM` authentication when performing the test.
10118+ properties:
10119+ domain:
10120+ description: Domain for the authentication to use when performing the test.
10121+ example: DOMAINNAME
10122+ type: string
10123+ password:
10124+ description: Password for the authentication to use when performing the
10125+ test.
10126+ example: examplepassword
10127+ type: string
10128+ type:
10129+ $ref: '#/components/schemas/SyntheticsBasicAuthNTLMType'
10130+ username:
10131+ description: Username for the authentication to use when performing the
10132+ test.
10133+ example: joedoe
10134+ type: string
10135+ workstation:
10136+ description: Workstation for the authentication to use when performing the
10137+ test.
10138+ example: ''
10139+ type: string
10140+ required:
10141+ - type
10142+ type: object
10143+ SyntheticsBasicAuthNTLMType:
10144+ default: ntlm
10145+ description: The type of authentication to use when performing the test.
10146+ enum:
10147+ - ntlm
10148+ example: ntlm
10149+ type: string
10150+ x-enum-varnames:
10151+ - NTLM
10152+ SyntheticsBasicAuthSigv4:
10153+ description: Object to handle `SIGV4` authentication when performing the test.
10154+ properties:
10155+ accessKey:
10156+ description: Access key for the `SIGV4` authentication.
10157+ example: AKIAIOSFODNN7EXAMPLE
10158+ type: string
10159+ region:
10160+ description: Region for the `SIGV4` authentication.
10161+ example: us-east-1
10162+ type: string
10163+ secretKey:
10164+ description: Secret key for the `SIGV4` authentication.
10165+ example: wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY
10166+ type: string
10167+ serviceName:
10168+ description: Service name for the `SIGV4` authentication.
10169+ example: execute-api
10170+ type: string
10171+ sessionToken:
10172+ description: Session token for the `SIGV4` authentication.
10173+ example: 'AQoEXAMPLEH4aoAH0gNCAPyJxz4BlCFFxWNE1OPTgk5TthT+FvwqnKwRcOIfrRh3c/L
10174+
10175+ To6UDdyJwOOvEVPvLXCrrrUtdnniCEXAMPLE/IvU1dYUg2RVAJBanLiHb4IgRmpRV3z
10176+
10177+ rkuWJOgQs8IZZaIv2BXIa2R4OlgkBN9bkUDNCJiBeb/AXlzBBko7b15fjrBs2+cTQtp
10178+
10179+ Z3CYWFXG8C5zqx37wnOE49mRl/+OtkIKGO7fAE
10180+
10181+ '
10182+ type: string
10183+ type:
10184+ $ref: '#/components/schemas/SyntheticsBasicAuthSigv4Type'
10185+ required:
10186+ - accessKey
10187+ - secretKey
10188+ - type
10189+ type: object
10190+ SyntheticsBasicAuthSigv4Type:
10191+ default: sigv4
10192+ description: The type of authentication to use when performing the test.
10193+ enum:
10194+ - sigv4
10195+ example: sigv4
10196+ type: string
10197+ x-enum-varnames:
10198+ - SIGV4
10199+ SyntheticsBasicAuthWeb:
1011010200 description: Object to handle basic authentication when performing the test.
1011110201 properties:
1011210202 password:
1011310203 description: Password to use for the basic authentication.
1011410204 example: ''
1011510205 type: string
10206+ type:
10207+ $ref: '#/components/schemas/SyntheticsBasicAuthWebType'
1011610208 username:
1011710209 description: Username to use for the basic authentication.
1011810210 example: ''
1011910211 type: string
1012010212 required:
1012110213 - password
1012210214 - username
10215+ - type
1012310216 type: object
10217+ SyntheticsBasicAuthWebType:
10218+ default: web
10219+ description: The type of basic authentication to use when performing the test.
10220+ enum:
10221+ - web
10222+ example: web
10223+ type: string
10224+ x-enum-varnames:
10225+ - WEB
1012410226 SyntheticsBatchDetails:
1012510227 description: Details about a batch response.
1012610228 properties:
@@ -11583,6 +11685,8 @@ components:
1158311685 description: Port to use when performing the test.
1158411686 format: int64
1158511687 type: integer
11688+ proxy:
11689+ $ref: '#/components/schemas/SyntheticsTestRequestProxy'
1158611690 query:
1158711691 description: Query to use for the test.
1158811692 type: object
@@ -11628,6 +11732,18 @@ components:
1162811732 description: Date of update of the certificate or key, ISO format.
1162911733 type: string
1163011734 type: object
11735+ SyntheticsTestRequestProxy:
11736+ description: The proxy to perform the test.
11737+ properties:
11738+ headers:
11739+ $ref: '#/components/schemas/SyntheticsTestHeaders'
11740+ url:
11741+ description: URL of the proxy to perform the test.
11742+ example: https://example.com
11743+ type: string
11744+ required:
11745+ - url
11746+ type: object
1163111747 SyntheticsTiming:
1163211748 description: 'Object containing all metrics and their values collected for a
1163311749 Synthetic API test.
0 commit comments