Skip to content

Commit

Permalink
Regenerate client from commit a4f22f3 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jul 21, 2021
1 parent ffe3628 commit 2fc9119
Show file tree
Hide file tree
Showing 32 changed files with 2,004 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-20 10:13:11.748010",
"spec_repo_commit": "9c185b5"
"regenerated": "2021-07-21 11:36:58.068418",
"spec_repo_commit": "a4f22f3"
},
"v2": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-20 10:14:02.056296",
"spec_repo_commit": "9c185b5"
"regenerated": "2021-07-21 11:37:44.067887",
"spec_repo_commit": "a4f22f3"
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

140 changes: 140 additions & 0 deletions data/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3274,6 +3274,145 @@ components:
example: ok
type: string
type: object
ListStreamColumn:
description: Widget column.
example:
field: timestamp
width: auto
properties:
field:
description: Widget column field.
example: content
type: string
width:
$ref: '#/components/schemas/ListStreamColumnWidth'
required:
- width
- field
type: object
ListStreamColumnWidth:
description: Widget column width.
enum:
- auto
- compact
- full
type: string
x-enum-varnames:
- AUTO
- COMPACT
- FULL
ListStreamQuery:
description: Updated list stream widget.
properties:
data_source:
$ref: '#/components/schemas/ListStreamSource'
indexes:
description: List of indexes.
items:
description: Index.
type: string
type: array
query_string:
description: Widget query.
example: '@service:app'
type: string
required:
- query_string
- data_source
type: object
ListStreamResponseFormat:
description: Widget response format.
enum:
- event_list
type: string
x-enum-varnames:
- EVENT_LIST
ListStreamSource:
default: issue_stream
description: Source from which to query items to display in the stream.
enum:
- issue_stream
- logs_stream
example: issue_stream
type: string
x-enum-varnames:
- ISSUE_STREAM
- LOGS_STREAM
ListStreamWidgetDefinition:
description: 'The list stream visualization displays a table of recent events
in your application that

match a search criteria using user-defined columns.

'
properties:
legend_size:
$ref: '#/components/schemas/WidgetLegendSize'
requests:
description: Request payload used to query items.
example:
- response_format: event_list
- columns:
- field: timestamp
width: auto
- query:
data_source: issue_stream
query_string: '@data_source:APM'
items:
$ref: '#/components/schemas/ListStreamWidgetRequest'
maxItems: 1
minItems: 1
type: array
show_legend:
description: Whether or not to display the legend on this widget.
type: boolean
time:
$ref: '#/components/schemas/WidgetTime'
title:
description: Title of the widget.
type: string
title_align:
$ref: '#/components/schemas/WidgetTextAlign'
title_size:
description: Size of the title.
type: string
type:
$ref: '#/components/schemas/ListStreamWidgetDefinitionType'
required:
- type
- requests
type: object
ListStreamWidgetDefinitionType:
default: list_stream
description: Type of the list stream widget.
enum:
- list_stream
example: list_stream
type: string
x-enum-varnames:
- LIST_STREAM
ListStreamWidgetRequest:
description: Updated list stream widget.
properties:
columns:
description: Widget columns.
example:
- field: timestamp
width: auto
- field: content
width: full
items:
$ref: '#/components/schemas/ListStreamColumn'
type: array
query:
$ref: '#/components/schemas/ListStreamQuery'
response_format:
$ref: '#/components/schemas/ListStreamResponseFormat'
required:
- columns
- query
- response_format
type: object
Log:
description: Object describing a log after being processed and stored by Datadog.
properties:
Expand Down Expand Up @@ -13019,6 +13158,7 @@ components:
- $ref: '#/components/schemas/TimeseriesWidgetDefinition'
- $ref: '#/components/schemas/ToplistWidgetDefinition'
- $ref: '#/components/schemas/TreeMapWidgetDefinition'
- $ref: '#/components/schemas/ListStreamWidgetDefinition'
type: object
WidgetDisplayType:
description: Type of display to use for the request.
Expand Down
20 changes: 20 additions & 0 deletions docs/v1/ListStreamColumn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# DatadogAPIClient::V1::ListStreamColumn

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **field** | **String** | Widget column field. | |
| **width** | [**ListStreamColumnWidth**](ListStreamColumnWidth.md) | | |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamColumn.new(
field: content,
width: null
)
```

15 changes: 15 additions & 0 deletions docs/v1/ListStreamColumnWidth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# DatadogAPIClient::V1::ListStreamColumnWidth

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamColumnWidth.new()
```

22 changes: 22 additions & 0 deletions docs/v1/ListStreamQuery.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# DatadogAPIClient::V1::ListStreamQuery

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **data_source** | [**ListStreamSource**](ListStreamSource.md) | | [default to 'issue_stream'] |
| **indexes** | **Array<String>** | List of indexes. | [optional] |
| **query_string** | **String** | Widget query. | |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamQuery.new(
data_source: null,
indexes: null,
query_string: @service:app
)
```

15 changes: 15 additions & 0 deletions docs/v1/ListStreamResponseFormat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# DatadogAPIClient::V1::ListStreamResponseFormat

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamResponseFormat.new()
```

15 changes: 15 additions & 0 deletions docs/v1/ListStreamSource.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# DatadogAPIClient::V1::ListStreamSource

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamSource.new()
```

32 changes: 32 additions & 0 deletions docs/v1/ListStreamWidgetDefinition.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# DatadogAPIClient::V1::ListStreamWidgetDefinition

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **legend_size** | **String** | Available legend sizes for a widget. Should be one of \"0\", \"2\", \"4\", \"8\", \"16\", or \"auto\". | [optional] |
| **requests** | [**Array<ListStreamWidgetRequest>**](ListStreamWidgetRequest.md) | Request payload used to query items. | |
| **show_legend** | **Boolean** | Whether or not to display the legend on this widget. | [optional] |
| **time** | [**WidgetTime**](WidgetTime.md) | | [optional] |
| **title** | **String** | Title of the widget. | [optional] |
| **title_align** | [**WidgetTextAlign**](WidgetTextAlign.md) | | [optional] |
| **title_size** | **String** | Size of the title. | [optional] |
| **type** | [**ListStreamWidgetDefinitionType**](ListStreamWidgetDefinitionType.md) | | [default to 'list_stream'] |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamWidgetDefinition.new(
legend_size: null,
requests: [{"response_format":"event_list"},{"columns":[{"field":"timestamp","width":"auto"}]},{"query":{"data_source":"issue_stream","query_string":"@data_source:APM"}}],
show_legend: null,
time: null,
title: null,
title_align: null,
title_size: null,
type: null
)
```

15 changes: 15 additions & 0 deletions docs/v1/ListStreamWidgetDefinitionType.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# DatadogAPIClient::V1::ListStreamWidgetDefinitionType

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::ListStreamWidgetDefinitionType.new()
```

Loading

0 comments on commit 2fc9119

Please sign in to comment.