@@ -53,6 +53,7 @@ def openapi_types(_):
5353 "check_certificate_revocation" : (bool ,),
5454 "ci" : (SyntheticsTestCiOptions ,),
5555 "device_ids" : ([str ],),
56+ "disable_aia_intermediate_fetching" : (bool ,),
5657 "disable_cors" : (bool ,),
5758 "disable_csp" : (bool ,),
5859 "enable_profiling" : (bool ,),
@@ -80,6 +81,7 @@ def openapi_types(_):
8081 "check_certificate_revocation" : "checkCertificateRevocation" ,
8182 "ci" : "ci" ,
8283 "device_ids" : "device_ids" ,
84+ "disable_aia_intermediate_fetching" : "disableAiaIntermediateFetching" ,
8385 "disable_cors" : "disableCors" ,
8486 "disable_csp" : "disableCsp" ,
8587 "enable_profiling" : "enableProfiling" ,
@@ -108,6 +110,7 @@ def __init__(
108110 check_certificate_revocation : Union [bool , UnsetType ] = unset ,
109111 ci : Union [SyntheticsTestCiOptions , UnsetType ] = unset ,
110112 device_ids : Union [List [str ], UnsetType ] = unset ,
113+ disable_aia_intermediate_fetching : Union [bool , UnsetType ] = unset ,
111114 disable_cors : Union [bool , UnsetType ] = unset ,
112115 disable_csp : Union [bool , UnsetType ] = unset ,
113116 enable_profiling : Union [bool , UnsetType ] = unset ,
@@ -132,14 +135,14 @@ def __init__(
132135 """
133136 Object describing the extra options for a Synthetic test.
134137
135- :param accept_self_signed: For SSL test , whether or not the test should allow self signed
138+ :param accept_self_signed: For SSL tests , whether or not the test should allow self signed
136139 certificates.
137140 :type accept_self_signed: bool, optional
138141
139142 :param allow_insecure: Allows loading insecure content for an HTTP request in an API test.
140143 :type allow_insecure: bool, optional
141144
142- :param check_certificate_revocation: For SSL test , whether or not the test should fail on revoked certificate in stapled OCSP.
145+ :param check_certificate_revocation: For SSL tests , whether or not the test should fail on revoked certificate in stapled OCSP.
143146 :type check_certificate_revocation: bool, optional
144147
145148 :param ci: CI/CD options for a Synthetic test.
@@ -148,6 +151,9 @@ def __init__(
148151 :param device_ids: For browser test, array with the different device IDs used to run the test.
149152 :type device_ids: [str], optional
150153
154+ :param disable_aia_intermediate_fetching: For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA.
155+ :type disable_aia_intermediate_fetching: bool, optional
156+
151157 :param disable_cors: Whether or not to disable CORS mechanism.
152158 :type disable_cors: bool, optional
153159
@@ -227,6 +233,8 @@ def __init__(
227233 kwargs ["ci" ] = ci
228234 if device_ids is not unset :
229235 kwargs ["device_ids" ] = device_ids
236+ if disable_aia_intermediate_fetching is not unset :
237+ kwargs ["disable_aia_intermediate_fetching" ] = disable_aia_intermediate_fetching
230238 if disable_cors is not unset :
231239 kwargs ["disable_cors" ] = disable_cors
232240 if disable_csp is not unset :
0 commit comments