Skip to content

Commit d2bb757

Browse files
committed
Add disableAiaIntermediateFetching option (DataDog#2531)
Co-authored-by: ci.datadog-api-spec <[email protected]> ed07de5
1 parent a040a59 commit d2bb757

File tree

7 files changed

+162
-10
lines changed

7 files changed

+162
-10
lines changed

DatadogAPIClient/V1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ <h1 id="collection-of-all-datadog-public-endpoints">Collection of all Datadog Pu
129129
</div>
130130

131131
<div id="footer">
132-
Generated on Tue Jul 15 04:44:55 2025 by
132+
Generated on Tue Jul 15 18:20:52 2025 by
133133
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
134134
0.9.37 (ruby-2.7.8).
135135
</div>

DatadogAPIClient/V1/SyntheticsTestOptions.html

Lines changed: 73 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collaps
167167

168168

169169

170-
<span class="summary_desc"><div class='inline'><p>For SSL test, whether or not the test should allow self signed certificates.</p>
170+
<span class="summary_desc"><div class='inline'><p>For SSL tests, whether or not the test should allow self signed certificates.</p>
171171
</div></span>
172172

173173
</li>
@@ -245,7 +245,7 @@ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collaps
245245

246246

247247

248-
<span class="summary_desc"><div class='inline'><p>For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.</p>
248+
<span class="summary_desc"><div class='inline'><p>For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.</p>
249249
</div></span>
250250

251251
</li>
@@ -300,6 +300,32 @@ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collaps
300300
<span class="summary_desc"><div class='inline'><p>For browser test, array with the different device IDs used to run the test.</p>
301301
</div></span>
302302

303+
</li>
304+
305+
306+
<li class="public ">
307+
<span class="summary_signature">
308+
309+
<a href="#disable_aia_intermediate_fetching-instance_method" title="#disable_aia_intermediate_fetching (instance method)">#<strong>disable_aia_intermediate_fetching</strong> &#x21d2; Object </a>
310+
311+
312+
313+
</span>
314+
315+
316+
317+
318+
319+
320+
321+
322+
323+
324+
325+
326+
<span class="summary_desc"><div class='inline'><p>For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA.</p>
327+
</div></span>
328+
303329
</li>
304330

305331

@@ -850,7 +876,7 @@ <h3 class="signature " id="accept_self_signed-instance_method">
850876

851877
</h3><div class="docstring">
852878
<div class="discussion">
853-
<p>For SSL test, whether or not the test should allow self signed
879+
<p>For SSL tests, whether or not the test should allow self signed
854880
certificates.</p>
855881

856882

@@ -977,7 +1003,7 @@ <h3 class="signature " id="check_certificate_revocation-instance_method">
9771003

9781004
</h3><div class="docstring">
9791005
<div class="discussion">
980-
<p>For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.</p>
1006+
<p>For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.</p>
9811007

9821008

9831009
</div>
@@ -1091,6 +1117,48 @@ <h3 class="signature " id="device_ids-instance_method">
10911117
</div>
10921118

10931119

1120+
<span id="disable_aia_intermediate_fetching=-instance_method"></span>
1121+
<div class="method_details ">
1122+
<h3 class="signature " id="disable_aia_intermediate_fetching-instance_method">
1123+
1124+
#<strong>disable_aia_intermediate_fetching</strong> &#x21d2; <tt>Object</tt>
1125+
1126+
1127+
1128+
1129+
1130+
</h3><div class="docstring">
1131+
<div class="discussion">
1132+
<p>For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA.</p>
1133+
1134+
1135+
</div>
1136+
</div>
1137+
<div class="tags">
1138+
1139+
1140+
</div><table class="source_code">
1141+
<tr>
1142+
<td>
1143+
<pre class="lines">
1144+
1145+
1146+
41
1147+
42
1148+
43</pre>
1149+
</td>
1150+
<td>
1151+
<pre class="code"><span class="info file"># File 'lib/datadog_api_client/v1/models/synthetics_test_options.rb', line 41</span>
1152+
1153+
<span class='kw'>def</span> <span class='id identifier rubyid_disable_aia_intermediate_fetching'>disable_aia_intermediate_fetching</span>
1154+
<span class='ivar'>@disable_aia_intermediate_fetching</span>
1155+
<span class='kw'>end</span></pre>
1156+
</td>
1157+
</tr>
1158+
</table>
1159+
</div>
1160+
1161+
10941162
<span id="disable_cors=-instance_method"></span>
10951163
<div class="method_details ">
10961164
<h3 class="signature " id="disable_cors-instance_method">
@@ -1864,7 +1932,7 @@ <h3 class="signature " id="tick_every-instance_method">
18641932
</div>
18651933

18661934
<div id="footer">
1867-
Generated on Tue Jul 15 04:45:24 2025 by
1935+
Generated on Tue Jul 15 18:20:52 2025 by
18681936
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
18691937
0.9.37 (ruby-2.7.8).
18701938
</div>

DatadogAPIClient/V1/SyntheticsTestRequest.html

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,32 @@ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collaps
404404
<span class="summary_desc"><div class='inline'><p>A protobuf file that needs to be gzipped first then base64 encoded.</p>
405405
</div></span>
406406

407+
</li>
408+
409+
410+
<li class="public ">
411+
<span class="summary_signature">
412+
413+
<a href="#disable_aia_intermediate_fetching-instance_method" title="#disable_aia_intermediate_fetching (instance method)">#<strong>disable_aia_intermediate_fetching</strong> &#x21d2; Object </a>
414+
415+
416+
417+
</span>
418+
419+
420+
421+
422+
423+
424+
425+
426+
427+
428+
429+
430+
<span class="summary_desc"><div class='inline'><p>Disable fetching intermediate certificates from AIA.</p>
431+
</div></span>
432+
407433
</li>
408434

409435

@@ -1490,6 +1516,48 @@ <h3 class="signature " id="compressed_proto_file-instance_method">
14901516
</div>
14911517

14921518

1519+
<span id="disable_aia_intermediate_fetching=-instance_method"></span>
1520+
<div class="method_details ">
1521+
<h3 class="signature " id="disable_aia_intermediate_fetching-instance_method">
1522+
1523+
#<strong>disable_aia_intermediate_fetching</strong> &#x21d2; <tt>Object</tt>
1524+
1525+
1526+
1527+
1528+
1529+
</h3><div class="docstring">
1530+
<div class="discussion">
1531+
<p>Disable fetching intermediate certificates from AIA.</p>
1532+
1533+
1534+
</div>
1535+
</div>
1536+
<div class="tags">
1537+
1538+
1539+
</div><table class="source_code">
1540+
<tr>
1541+
<td>
1542+
<pre class="lines">
1543+
1544+
1545+
55
1546+
56
1547+
57</pre>
1548+
</td>
1549+
<td>
1550+
<pre class="code"><span class="info file"># File 'lib/datadog_api_client/v1/models/synthetics_test_request.rb', line 55</span>
1551+
1552+
<span class='kw'>def</span> <span class='id identifier rubyid_disable_aia_intermediate_fetching'>disable_aia_intermediate_fetching</span>
1553+
<span class='ivar'>@disable_aia_intermediate_fetching</span>
1554+
<span class='kw'>end</span></pre>
1555+
</td>
1556+
</tr>
1557+
</table>
1558+
</div>
1559+
1560+
14931561
<span id="dns_server=-instance_method"></span>
14941562
<div class="method_details ">
14951563
<h3 class="signature " id="dns_server-instance_method">
@@ -2463,7 +2531,7 @@ <h3 class="signature " id="url-instance_method">
24632531
</div>
24642532

24652533
<div id="footer">
2466-
Generated on Tue Jul 15 04:45:24 2025 by
2534+
Generated on Tue Jul 15 18:20:52 2025 by
24672535
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
24682536
0.9.37 (ruby-2.7.8).
24692537
</div>

_index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25952,7 +25952,7 @@ <h2>Namespace Listing A-Z</h2>
2595225952
</div>
2595325953

2595425954
<div id="footer">
25955-
Generated on Tue Jul 15 04:44:55 2025 by
25955+
Generated on Tue Jul 15 18:20:52 2025 by
2595625956
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2595725957
0.9.37 (ruby-2.7.8).
2595825958
</div>

file.README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ <h2 id="author">Author</h2>
258258
</div></div>
259259

260260
<div id="footer">
261-
Generated on Tue Jul 15 04:44:55 2025 by
261+
Generated on Tue Jul 15 18:20:52 2025 by
262262
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
263263
0.9.37 (ruby-2.7.8).
264264
</div>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ <h2 id="author">Author</h2>
258258
</div></div>
259259

260260
<div id="footer">
261-
Generated on Tue Jul 15 04:44:55 2025 by
261+
Generated on Tue Jul 15 18:20:52 2025 by
262262
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
263263
0.9.37 (ruby-2.7.8).
264264
</div>

method_list.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46479,6 +46479,22 @@ <h1 id="full_list_header">Method List</h1>
4647946479
</li>
4648046480

4648146481

46482+
<li class="odd ">
46483+
<div class="item">
46484+
<span class='object_link'><a href="DatadogAPIClient/V1/SyntheticsTestOptions.html#disable_aia_intermediate_fetching-instance_method" title="DatadogAPIClient::V1::SyntheticsTestOptions#disable_aia_intermediate_fetching (method)">#disable_aia_intermediate_fetching</a></span>
46485+
<small>DatadogAPIClient::V1::SyntheticsTestOptions</small>
46486+
</div>
46487+
</li>
46488+
46489+
46490+
<li class="even ">
46491+
<div class="item">
46492+
<span class='object_link'><a href="DatadogAPIClient/V1/SyntheticsTestRequest.html#disable_aia_intermediate_fetching-instance_method" title="DatadogAPIClient::V1::SyntheticsTestRequest#disable_aia_intermediate_fetching (method)">#disable_aia_intermediate_fetching</a></span>
46493+
<small>DatadogAPIClient::V1::SyntheticsTestRequest</small>
46494+
</div>
46495+
</li>
46496+
46497+
4648246498
<li class="odd ">
4648346499
<div class="item">
4648446500
<span class='object_link'><a href="DatadogAPIClient/V1/SyntheticsMobileTestOptions.html#disable_auto_accept_alert-instance_method" title="DatadogAPIClient::V1::SyntheticsMobileTestOptions#disable_auto_accept_alert (method)">#disable_auto_accept_alert</a></span>

0 commit comments

Comments
 (0)