Skip to content

Commit

Permalink
Update CI Visibility types of BucketResponse schema (#1805)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> 20b33f3
  • Loading branch information
1 parent 92d2aaa commit 4f94f55
Show file tree
Hide file tree
Showing 6 changed files with 1,559 additions and 1,559 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3091,10 +3091,10 @@ <h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>



<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.GetBy">func (o *CIAppPipelinesBucketResponse) GetBy() map[string]string</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.GetBy">func (o *CIAppPipelinesBucketResponse) GetBy() map[string]interface{}</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.GetByOk">func (o *CIAppPipelinesBucketResponse) GetByOk() (*map[string]string, bool)</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.GetByOk">func (o *CIAppPipelinesBucketResponse) GetByOk() (*map[string]interface{}, bool)</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.GetComputes">func (o *CIAppPipelinesBucketResponse) GetComputes() map[string]CIAppAggregateBucketValue</a></dd>
Expand All @@ -3112,7 +3112,7 @@ <h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>
<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.MarshalJSON">func (o CIAppPipelinesBucketResponse) MarshalJSON() ([]byte, error)</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.SetBy">func (o *CIAppPipelinesBucketResponse) SetBy(v map[string]string)</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.SetBy">func (o *CIAppPipelinesBucketResponse) SetBy(v map[string]interface{})</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppPipelinesBucketResponse.SetComputes">func (o *CIAppPipelinesBucketResponse) SetComputes(v map[string]CIAppAggregateBucketValue)</a></dd>
Expand Down Expand Up @@ -3898,10 +3898,10 @@ <h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>



<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.GetBy">func (o *CIAppTestsBucketResponse) GetBy() map[string]string</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.GetBy">func (o *CIAppTestsBucketResponse) GetBy() map[string]interface{}</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.GetByOk">func (o *CIAppTestsBucketResponse) GetByOk() (*map[string]string, bool)</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.GetByOk">func (o *CIAppTestsBucketResponse) GetByOk() (*map[string]interface{}, bool)</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.GetComputes">func (o *CIAppTestsBucketResponse) GetComputes() map[string]CIAppAggregateBucketValue</a></dd>
Expand All @@ -3919,7 +3919,7 @@ <h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>
<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.MarshalJSON">func (o CIAppTestsBucketResponse) MarshalJSON() ([]byte, error)</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.SetBy">func (o *CIAppTestsBucketResponse) SetBy(v map[string]string)</a></dd>
<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.SetBy">func (o *CIAppTestsBucketResponse) SetBy(v map[string]interface{})</a></dd>


<dd>&nbsp; &nbsp; <a href="#CIAppTestsBucketResponse.SetComputes">func (o *CIAppTestsBucketResponse) SetComputes(v map[string]CIAppAggregateBucketValue)</a></dd>
Expand Down Expand Up @@ -50456,7 +50456,7 @@ <h2 id="CIAppPipelinesBucketResponse">type <a href="https://github.com/DataDog/d

<pre>type CIAppPipelinesBucketResponse struct {
<span class="comment">// The key-value pairs for each group-by.</span>
<span id="CIAppPipelinesBucketResponse.By"></span> By map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a> `json:&#34;by,omitempty&#34;`
<span id="CIAppPipelinesBucketResponse.By"></span> By map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{} `json:&#34;by,omitempty&#34;`
<span class="comment">// A map of the metric name to value for regular compute, or a list of values for a timeseries.</span>
<span id="CIAppPipelinesBucketResponse.Computes"></span> Computes map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="#CIAppAggregateBucketValue">CIAppAggregateBucketValue</a> `json:&#34;computes,omitempty&#34;`
<span id="CIAppPipelinesBucketResponse.UnparsedObject"></span> <span class="comment">// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct</span>
Expand Down Expand Up @@ -50511,7 +50511,7 @@ <h3 id="CIAppPipelinesBucketResponse.GetBy">func (*CIAppPipelinesBucketResponse)


</h3>
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) GetBy() map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a></pre>
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) GetBy() map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{}</pre>
<p>GetBy returns the By field value if set, zero value otherwise.


Expand All @@ -50524,7 +50524,7 @@ <h3 id="CIAppPipelinesBucketResponse.GetByOk">func (*CIAppPipelinesBucketRespons


</h3>
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) GetByOk() (*map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a>, <a href="https://pkg.go.dev/builtin/#bool">bool</a>)</pre>
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) GetByOk() (*map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{}, <a href="https://pkg.go.dev/builtin/#bool">bool</a>)</pre>
<p>GetByOk returns a tuple with the By field value if set, nil otherwise
and a boolean to check if the value has been set.

Expand Down Expand Up @@ -50604,8 +50604,8 @@ <h3 id="CIAppPipelinesBucketResponse.SetBy">func (*CIAppPipelinesBucketResponse)


</h3>
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) SetBy(v map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a>)</pre>
<p>SetBy gets a reference to the given map[string]string and assigns it to the By field.
<pre>func (o *<a href="#CIAppPipelinesBucketResponse">CIAppPipelinesBucketResponse</a>) SetBy(v map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{})</pre>
<p>SetBy gets a reference to the given map[string]interface{} and assigns it to the By field.



Expand Down Expand Up @@ -54245,7 +54245,7 @@ <h2 id="CIAppTestsBucketResponse">type <a href="https://github.com/DataDog/datad

<pre>type CIAppTestsBucketResponse struct {
<span class="comment">// The key-value pairs for each group-by.</span>
<span id="CIAppTestsBucketResponse.By"></span> By map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a> `json:&#34;by,omitempty&#34;`
<span id="CIAppTestsBucketResponse.By"></span> By map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{} `json:&#34;by,omitempty&#34;`
<span class="comment">// A map of the metric name to value for regular compute, or a list of values for a timeseries.</span>
<span id="CIAppTestsBucketResponse.Computes"></span> Computes map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="#CIAppAggregateBucketValue">CIAppAggregateBucketValue</a> `json:&#34;computes,omitempty&#34;`
<span id="CIAppTestsBucketResponse.UnparsedObject"></span> <span class="comment">// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct</span>
Expand Down Expand Up @@ -54300,7 +54300,7 @@ <h3 id="CIAppTestsBucketResponse.GetBy">func (*CIAppTestsBucketResponse) <a href


</h3>
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) GetBy() map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a></pre>
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) GetBy() map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{}</pre>
<p>GetBy returns the By field value if set, zero value otherwise.


Expand All @@ -54313,7 +54313,7 @@ <h3 id="CIAppTestsBucketResponse.GetByOk">func (*CIAppTestsBucketResponse) <a hr


</h3>
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) GetByOk() (*map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a>, <a href="https://pkg.go.dev/builtin/#bool">bool</a>)</pre>
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) GetByOk() (*map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{}, <a href="https://pkg.go.dev/builtin/#bool">bool</a>)</pre>
<p>GetByOk returns a tuple with the By field value if set, nil otherwise
and a boolean to check if the value has been set.

Expand Down Expand Up @@ -54393,8 +54393,8 @@ <h3 id="CIAppTestsBucketResponse.SetBy">func (*CIAppTestsBucketResponse) <a href


</h3>
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) SetBy(v map[<a href="https://pkg.go.dev/builtin/#string">string</a>]<a href="https://pkg.go.dev/builtin/#string">string</a>)</pre>
<p>SetBy gets a reference to the given map[string]string and assigns it to the By field.
<pre>func (o *<a href="#CIAppTestsBucketResponse">CIAppTestsBucketResponse</a>) SetBy(v map[<a href="https://pkg.go.dev/builtin/#string">string</a>]interface{})</pre>
<p>SetBy gets a reference to the given map[string]interface{} and assigns it to the By field.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2>
<td></td>
<td align="right">12002</td>
<td></td>
<td align="left">2022-12-20 19:50:08.172472343 +0000 UTC</td>
<td align="left">2022-12-22 09:24:47.488517234 +0000 UTC</td>
</tr>

<tr>
Expand All @@ -88,7 +88,7 @@ <h2>
<td></td>
<td align="right">17393</td>
<td></td>
<td align="left">2022-12-20 19:50:08.172472343 +0000 UTC</td>
<td align="left">2022-12-22 09:24:47.488517234 +0000 UTC</td>
</tr>

<tr>
Expand All @@ -97,7 +97,7 @@ <h2>
<td></td>
<td align="right">405</td>
<td></td>
<td align="left">2022-12-20 19:50:08.172472343 +0000 UTC</td>
<td align="left">2022-12-22 09:24:47.488517234 +0000 UTC</td>
</tr>

<tr>
Expand All @@ -106,7 +106,7 @@ <h2>
<td></td>
<td align="right">11332</td>
<td></td>
<td align="left">2022-12-20 19:50:08.172472343 +0000 UTC</td>
<td align="left">2022-12-22 09:24:47.488517234 +0000 UTC</td>
</tr>

<tr>
Expand All @@ -115,7 +115,7 @@ <h2>
<td></td>
<td align="right">589</td>
<td></td>
<td align="left">2022-12-20 19:50:08.172472343 +0000 UTC</td>
<td align="left">2022-12-22 09:24:47.488517234 +0000 UTC</td>
</tr>


Expand Down
Loading

0 comments on commit 4f94f55

Please sign in to comment.