Skip to content

Commit 49c1dfa

Browse files
Restore lines.
1 parent 20d636e commit 49c1dfa

File tree

3,105 files changed

+10833
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,105 files changed

+10833
-0
lines changed

lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ module DatadogAPIClient::V1
2020
# Attributes describing which incident to add the signal to.
2121
class AddSignalToIncidentRequest
2222
include BaseGenericModel
23+
2324
# Whether to post the signal on the incident timeline.
2425
attr_accessor :add_to_signal_timeline
26+
2527
# Public ID attribute of the incident to which the signal will be added.
2628
attr_reader :incident_id
29+
2730
# Version of the updated signal. If server side version is higher, update will be rejected.
2831
attr_accessor :version
2932

lib/datadog_api_client/v1/models/alert_graph_widget_definition.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,25 @@ module DatadogAPIClient::V1
2020
# Alert graphs are timeseries graphs showing the current status of any monitor defined on your system.
2121
class AlertGraphWidgetDefinition
2222
include BaseGenericModel
23+
2324
# ID of the alert to use in the widget.
2425
attr_reader :alert_id
26+
2527
# Time setting for the widget.
2628
attr_accessor :time
29+
2730
# The title of the widget.
2831
attr_accessor :title
32+
2933
# How to align the text on the widget.
3034
attr_accessor :title_align
35+
3136
# Size of the title.
3237
attr_accessor :title_size
38+
3339
# Type of the alert graph widget.
3440
attr_reader :type
41+
3542
# Whether to display the Alert Graph as a timeseries or a top list.
3643
attr_reader :viz_type
3744

lib/datadog_api_client/v1/models/alert_value_widget_definition.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,28 @@ module DatadogAPIClient::V1
2020
# Alert values are query values showing the current value of the metric in any monitor defined on your system.
2121
class AlertValueWidgetDefinition
2222
include BaseGenericModel
23+
2324
# ID of the alert to use in the widget.
2425
attr_reader :alert_id
26+
2527
# Number of decimal to show. If not defined, will use the raw value.
2628
attr_accessor :precision
29+
2730
# How to align the text on the widget.
2831
attr_accessor :text_align
32+
2933
# Title of the widget.
3034
attr_accessor :title
35+
3136
# How to align the text on the widget.
3237
attr_accessor :title_align
38+
3339
# Size of value in the widget.
3440
attr_accessor :title_size
41+
3542
# Type of the alert value widget.
3643
attr_reader :type
44+
3745
# Unit to display with the value.
3846
attr_accessor :unit
3947

lib/datadog_api_client/v1/models/api_error_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module DatadogAPIClient::V1
2020
# Error response object.
2121
class APIErrorResponse
2222
include BaseGenericModel
23+
2324
# Array of errors returned by the API.
2425
attr_reader :errors
2526

lib/datadog_api_client/v1/models/api_key.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ module DatadogAPIClient::V1
2020
# Datadog API key.
2121
class ApiKey
2222
include BaseGenericModel
23+
2324
# Date of creation of the API key.
2425
attr_accessor :created
26+
2527
# Datadog user handle that created the API key.
2628
attr_accessor :created_by
29+
2730
# API key.
2831
attr_reader :key
32+
2933
# Name of your API key.
3034
attr_accessor :name
3135

lib/datadog_api_client/v1/models/api_key_list_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module DatadogAPIClient::V1
2020
# List of API and application keys available for a given organization.
2121
class ApiKeyListResponse
2222
include BaseGenericModel
23+
2324
# Array of API keys.
2425
attr_accessor :api_keys
2526

lib/datadog_api_client/v1/models/api_key_response.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module DatadogAPIClient::V1
2020
# An API key with its associated metadata.
2121
class ApiKeyResponse
2222
include BaseGenericModel
23+
2324
# Datadog API key.
2425
attr_accessor :api_key
2526

lib/datadog_api_client/v1/models/apm_stats_query_column_type.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ module DatadogAPIClient::V1
2020
# Column properties.
2121
class ApmStatsQueryColumnType
2222
include BaseGenericModel
23+
2324
# A user-assigned alias for the column.
2425
attr_accessor :_alias
26+
2527
# Define a display mode for the table cell.
2628
attr_accessor :cell_display_mode
29+
2730
# Column name.
2831
attr_reader :name
32+
2933
# Widget sorting methods.
3034
attr_accessor :order
3135

lib/datadog_api_client/v1/models/apm_stats_query_definition.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,25 @@ module DatadogAPIClient::V1
2020
# The APM stats query for table and distributions widgets.
2121
class ApmStatsQueryDefinition
2222
include BaseGenericModel
23+
2324
# Column properties used by the front end for display.
2425
attr_accessor :columns
26+
2527
# Environment name.
2628
attr_reader :env
29+
2730
# Operation name associated with service.
2831
attr_reader :name
32+
2933
# The organization's host group name and value.
3034
attr_reader :primary_tag
35+
3136
# Resource name.
3237
attr_accessor :resource
38+
3339
# The level of detail for the request.
3440
attr_reader :row_type
41+
3542
# Service name.
3643
attr_reader :service
3744

lib/datadog_api_client/v1/models/application_key.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ module DatadogAPIClient::V1
2020
# An application key with its associated metadata.
2121
class ApplicationKey
2222
include BaseGenericModel
23+
2324
# Hash of an application key.
2425
attr_reader :_hash
26+
2527
# Name of an application key.
2628
attr_accessor :name
29+
2730
# Owner of an application key.
2831
attr_accessor :owner
2932

0 commit comments

Comments
 (0)