datadog_api_client 1.9.0 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +489 -124
  4. data/.generator/schemas/v2/openapi.yaml +701 -28
  5. data/.generator/src/generator/formatter.py +6 -1
  6. data/.generator/src/generator/openapi.py +5 -5
  7. data/.generator/src/generator/templates/api_client.j2 +1 -4
  8. data/.generator/src/generator/templates/model_generic.j2 +42 -3
  9. data/.github/workflows/prepare_release.yml +15 -3
  10. data/CHANGELOG.md +32 -0
  11. data/Makefile +1 -1
  12. data/README.md +16 -0
  13. data/check-examples.sh +0 -2
  14. data/examples/v1/aws-integration/UpdateAWSAccount.rb +8 -4
  15. data/examples/v1/downtimes/CreateDowntime_2908359488.rb +1 -0
  16. data/examples/v1/downtimes/CreateDowntime_3059354445.rb +1 -0
  17. data/examples/v1/downtimes/UpdateDowntime.rb +1 -0
  18. data/examples/v1/monitors/CreateMonitor_1969035628.rb +52 -0
  19. data/examples/v1/monitors/CreateMonitor_2520912138.rb +22 -0
  20. data/examples/v1/security-monitoring/AddSecurityMonitoringSignalToIncident.rb +9 -0
  21. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +9 -0
  22. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalState.rb +10 -0
  23. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -3
  24. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.rb +0 -3
  25. data/examples/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +0 -3
  26. data/examples/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -3
  27. data/examples/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -3
  28. data/examples/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -3
  29. data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
  30. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +5 -0
  31. data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
  32. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +64 -0
  33. data/examples/v1/synthetics/UpdateBrowserTest.rb +5 -0
  34. data/examples/v1/usage-metering/GetHourlyUsageAttribution.rb +1 -1
  35. data/examples/v1/usage-metering/GetMonthlyUsageAttribution.rb +1 -1
  36. data/examples/v1/usage-metering/{GetMonthlyUsageAttribution_3738504447.rb → GetMonthlyUsageAttribution_3849653599.rb} +1 -1
  37. data/examples/v1/usage-metering/GetUsageAttribution.rb +1 -1
  38. data/examples/v1/usage-metering/GetUsageRumSessions_3271366243.rb +9 -0
  39. data/examples/v2/logs/SubmitLog.rb +1 -0
  40. data/examples/v2/logs-archives/CreateLogsArchive.rb +1 -0
  41. data/examples/v2/logs-archives/UpdateLogsArchive.rb +1 -0
  42. data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
  43. data/examples/v2/metrics/SubmitMetrics.rb +20 -0
  44. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +1 -0
  45. data/examples/v2/usage-metering/GetCostByOrg.rb +5 -0
  46. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +8 -0
  47. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +8 -0
  48. data/lib/datadog_api_client/v1/api/metrics_api.rb +1 -1
  49. data/lib/datadog_api_client/v1/api/monitors_api.rb +69 -56
  50. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +266 -0
  51. data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +1 -1
  52. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +10 -10
  53. data/lib/datadog_api_client/v1/api_client.rb +1 -4
  54. data/lib/datadog_api_client/v1/configuration.rb +0 -6
  55. data/lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb +142 -0
  56. data/lib/datadog_api_client/v1/models/downtime.rb +11 -1
  57. data/lib/datadog_api_client/v1/models/downtime_child.rb +11 -1
  58. data/lib/datadog_api_client/v1/models/event.rb +1 -1
  59. data/lib/datadog_api_client/v1/models/http_log_item.rb +29 -4
  60. data/lib/datadog_api_client/v1/models/logs_category_processor.rb +1 -1
  61. data/lib/datadog_api_client/v1/models/logs_list_request.rb +1 -1
  62. data/lib/datadog_api_client/v1/models/logs_sort.rb +1 -1
  63. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +1 -0
  64. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +2 -2
  65. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_tag_item.rb → monitor_search_count_item.rb} +3 -3
  66. data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +4 -4
  67. data/lib/datadog_api_client/v1/models/monitor_type.rb +1 -0
  68. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +1 -1
  69. data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +146 -0
  70. data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +68 -0
  71. data/lib/datadog_api_client/v1/models/series.rb +2 -2
  72. data/lib/datadog_api_client/v1/models/signal_archive_reason.rb +29 -0
  73. data/lib/datadog_api_client/v1/models/signal_assignee_update_request.rb +132 -0
  74. data/lib/datadog_api_client/v1/models/signal_state_update_request.rb +152 -0
  75. data/lib/datadog_api_client/v1/models/signal_triage_state.rb +28 -0
  76. data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -1
  77. data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +4 -4
  78. data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -1
  79. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_status_item.rb → successful_signal_update_response.rb} +12 -22
  80. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +1 -1
  81. data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +2 -0
  82. data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
  83. data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
  84. data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +2 -1
  85. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +21 -1
  86. data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +21 -1
  87. data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +1 -1
  88. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +18 -4
  89. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +11 -1
  90. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +11 -1
  91. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +11 -1
  92. data/lib/datadog_api_client/v1.rb +11 -6
  93. data/lib/datadog_api_client/v2/api/authn_mappings_api.rb +0 -2
  94. data/lib/datadog_api_client/v2/api/metrics_api.rb +173 -0
  95. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +228 -0
  96. data/lib/datadog_api_client/v2/api_client.rb +1 -4
  97. data/lib/datadog_api_client/v2/models/authn_mapping.rb +1 -13
  98. data/lib/datadog_api_client/v2/models/authn_mapping_attributes.rb +1 -12
  99. data/lib/datadog_api_client/v2/models/authn_mapping_response.rb +16 -4
  100. data/lib/datadog_api_client/v2/models/authn_mappings_response.rb +13 -1
  101. data/lib/datadog_api_client/v2/models/chargeback_breakdown.rb +131 -0
  102. data/lib/datadog_api_client/v2/models/cost_by_org.rb +133 -0
  103. data/lib/datadog_api_client/v2/models/cost_by_org_attributes.rb +153 -0
  104. data/lib/datadog_api_client/v2/models/cost_by_org_response.rb +113 -0
  105. data/lib/datadog_api_client/v2/models/cost_by_org_type.rb +26 -0
  106. data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +2 -0
  107. data/lib/datadog_api_client/v2/models/http_log_item.rb +40 -4
  108. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +111 -0
  109. data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +12 -1
  110. data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +12 -1
  111. data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
  112. data/lib/datadog_api_client/v2/models/metric_estimate.rb +133 -0
  113. data/lib/datadog_api_client/v2/models/metric_estimate_attributes.rb +133 -0
  114. data/lib/datadog_api_client/v2/models/metric_estimate_resource_type.rb +26 -0
  115. data/lib/datadog_api_client/v2/models/metric_estimate_response.rb +111 -0
  116. data/lib/datadog_api_client/v2/models/metric_estimate_type.rb +28 -0
  117. data/lib/datadog_api_client/v2/models/metric_intake_type.rb +30 -0
  118. data/lib/datadog_api_client/v2/models/metric_metadata.rb +111 -0
  119. data/lib/datadog_api_client/v2/models/metric_origin.rb +170 -0
  120. data/lib/datadog_api_client/{v1/models/monitor_group_search_response_counts_type_item.rb → v2/models/metric_payload.rb} +27 -24
  121. data/lib/datadog_api_client/v2/models/metric_point.rb +122 -0
  122. data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_type_item.rb → v2/models/metric_resource.rb} +21 -21
  123. data/lib/datadog_api_client/v2/models/metric_series.rb +220 -0
  124. data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +1 -5
  125. data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +1 -5
  126. data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
  127. data/lib/datadog_api_client/v2/models/security_monitoring_rule_hardcoded_evaluator_type.rb +26 -0
  128. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
  129. data/lib/datadog_api_client/{v1/models/monitor_group_search_response_counts_status_item.rb → v2/models/usage_application_security_monitoring_response.rb} +16 -24
  130. data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_muted_item.rb → v2/models/usage_lambda_traced_invocations_response.rb} +16 -24
  131. data/lib/datadog_api_client/v2.rb +22 -0
  132. data/lib/datadog_api_client/version.rb +1 -1
  133. data/spec/v1/api_client_spec.rb +3 -3
  134. data/spec/v2/api_client_spec.rb +3 -3
  135. metadata +49 -11
  136. data/extract-code-blocks.awk +0 -81
  137. data/extract-code-blocks.sh +0 -3
@@ -17,26 +17,22 @@ require 'date'
17
17
  require 'time'
18
18
 
19
19
  module DatadogAPIClient::V1
20
- # A facet item.
21
- class MonitorSearchResponseCountsStatusItem
20
+ # Updated signal data following a successfully performed update.
21
+ class SuccessfulSignalUpdateResponse
22
22
  include BaseGenericModel
23
23
 
24
24
  # Whether the object has unparsed attributes
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
- # The number of found monitors with the listed value.
29
- attr_accessor :count
30
-
31
- # The facet value.
32
- attr_accessor :name
28
+ # Status of the response.
29
+ attr_accessor :status
33
30
 
34
31
  # Attribute mapping from ruby-style variable name to JSON key.
35
32
  # @!visibility private
36
33
  def self.attribute_map
37
34
  {
38
- :'count' => :'count',
39
- :'name' => :'name'
35
+ :'status' => :'status'
40
36
  }
41
37
  end
42
38
 
@@ -50,8 +46,7 @@ module DatadogAPIClient::V1
50
46
  # @!visibility private
51
47
  def self.openapi_types
52
48
  {
53
- :'count' => :'Integer',
54
- :'name' => :'Object'
49
+ :'status' => :'String'
55
50
  }
56
51
  end
57
52
 
@@ -67,23 +62,19 @@ module DatadogAPIClient::V1
67
62
  # @!visibility private
68
63
  def initialize(attributes = {})
69
64
  if (!attributes.is_a?(Hash))
70
- fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::MonitorSearchResponseCountsStatusItem` initialize method"
65
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SuccessfulSignalUpdateResponse` initialize method"
71
66
  end
72
67
 
73
68
  # check to see if the attribute exists and convert string to symbol for hash key
74
69
  attributes = attributes.each_with_object({}) { |(k, v), h|
75
70
  if (!self.class.attribute_map.key?(k.to_sym))
76
- fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::MonitorSearchResponseCountsStatusItem`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SuccessfulSignalUpdateResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
77
72
  end
78
73
  h[k.to_sym] = v
79
74
  }
80
75
 
81
- if attributes.key?(:'count')
82
- self.count = attributes[:'count']
83
- end
84
-
85
- if attributes.key?(:'name')
86
- self.name = attributes[:'name']
76
+ if attributes.key?(:'status')
77
+ self.status = attributes[:'status']
87
78
  end
88
79
  end
89
80
 
@@ -100,8 +91,7 @@ module DatadogAPIClient::V1
100
91
  def ==(o)
101
92
  return true if self.equal?(o)
102
93
  self.class == o.class &&
103
- count == o.count &&
104
- name == o.name
94
+ status == o.status
105
95
  end
106
96
 
107
97
  # @see the `==` method
@@ -115,7 +105,7 @@ module DatadogAPIClient::V1
115
105
  # @return [Integer] Hash code
116
106
  # @!visibility private
117
107
  def hash
118
- [count, name].hash
108
+ [status].hash
119
109
  end
120
110
  end
121
111
  end
@@ -51,7 +51,7 @@ module DatadogAPIClient::V1
51
51
  attr_accessor :status
52
52
 
53
53
  # The subtype of the Synthetic API test, `http`, `ssl`, `tcp`,
54
- # `dns`, `icmp`, `udp`, `websocket` or `multi`.
54
+ # `dns`, `icmp`, `udp`, `websocket`, `grpc` or `multi`.
55
55
  attr_accessor :subtype
56
56
 
57
57
  # Array of tags attached to the test.
@@ -36,5 +36,7 @@ module DatadogAPIClient::V1
36
36
  PACKETS_RECEIVED = "packetsReceived".freeze
37
37
  NETWORK_HOP = "networkHop".freeze
38
38
  RECEIVED_MESSAGE = "receivedMessage".freeze
39
+ GRPC_HEALTHCHECK_STATUS = "grpcHealthcheckStatus".freeze
40
+ CONNECTION = "connection".freeze
39
41
  end
40
42
  end
@@ -0,0 +1,152 @@
1
+ =begin
2
+ #Datadog API V1 Collection
3
+
4
+ #Collection of all Datadog Public endpoints.
5
+
6
+ The version of the OpenAPI document: 1.0
7
+ Contact: support@datadoghq.com
8
+ Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
9
+
10
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
11
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
12
+ Copyright 2020-Present Datadog, Inc.
13
+
14
+ =end
15
+
16
+ require 'date'
17
+ require 'time'
18
+
19
+ module DatadogAPIClient::V1
20
+ # The RUM data collection settings for the Synthetic browser test.
21
+ # **Note:** There are 3 ways to format RUM settings:
22
+ #
23
+ # `{ isEnabled: false }`
24
+ # RUM data is not collected.
25
+ #
26
+ # `{ isEnabled: true }`
27
+ # RUM data is collected from the Synthetic test's default application.
28
+ #
29
+ # `{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", clientTokenId: 12345 }`
30
+ # RUM data is collected using the specified application.
31
+ class SyntheticsBrowserTestRumSettings
32
+ include BaseGenericModel
33
+
34
+ # Whether the object has unparsed attributes
35
+ # @!visibility private
36
+ attr_accessor :_unparsed
37
+
38
+ # RUM application ID used to collect RUM data for the browser test.
39
+ attr_accessor :application_id
40
+
41
+ # RUM application API key ID used to collect RUM data for the browser test.
42
+ attr_accessor :client_token_id
43
+
44
+ # Determines whether RUM data is collected during test runs.
45
+ attr_accessor :is_enabled
46
+
47
+ # Attribute mapping from ruby-style variable name to JSON key.
48
+ # @!visibility private
49
+ def self.attribute_map
50
+ {
51
+ :'application_id' => :'applicationId',
52
+ :'client_token_id' => :'clientTokenId',
53
+ :'is_enabled' => :'isEnabled'
54
+ }
55
+ end
56
+
57
+ # Returns all the JSON keys this model knows about
58
+ # @!visibility private
59
+ def self.acceptable_attributes
60
+ attribute_map.values
61
+ end
62
+
63
+ # Attribute type mapping.
64
+ # @!visibility private
65
+ def self.openapi_types
66
+ {
67
+ :'application_id' => :'String',
68
+ :'client_token_id' => :'Integer',
69
+ :'is_enabled' => :'Boolean'
70
+ }
71
+ end
72
+
73
+ # List of attributes with nullable: true
74
+ # @!visibility private
75
+ def self.openapi_nullable
76
+ Set.new([
77
+ ])
78
+ end
79
+
80
+ # Initializes the object
81
+ # @param attributes [Hash] Model attributes in the form of hash
82
+ # @!visibility private
83
+ def initialize(attributes = {})
84
+ if (!attributes.is_a?(Hash))
85
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SyntheticsBrowserTestRumSettings` initialize method"
86
+ end
87
+
88
+ # check to see if the attribute exists and convert string to symbol for hash key
89
+ attributes = attributes.each_with_object({}) { |(k, v), h|
90
+ if (!self.class.attribute_map.key?(k.to_sym))
91
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SyntheticsBrowserTestRumSettings`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
92
+ end
93
+ h[k.to_sym] = v
94
+ }
95
+
96
+ if attributes.key?(:'application_id')
97
+ self.application_id = attributes[:'application_id']
98
+ end
99
+
100
+ if attributes.key?(:'client_token_id')
101
+ self.client_token_id = attributes[:'client_token_id']
102
+ end
103
+
104
+ if attributes.key?(:'is_enabled')
105
+ self.is_enabled = attributes[:'is_enabled']
106
+ end
107
+ end
108
+
109
+ # Check to see if the all the properties in the model are valid
110
+ # @return true if the model is valid
111
+ # @!visibility private
112
+ def valid?
113
+ return false if @is_enabled.nil?
114
+ true
115
+ end
116
+
117
+ # Custom attribute writer method with validation
118
+ # @param is_enabled [Object] Object to be assigned
119
+ # @!visibility private
120
+ def is_enabled=(is_enabled)
121
+ if is_enabled.nil?
122
+ fail ArgumentError, 'invalid value for "is_enabled", is_enabled cannot be nil.'
123
+ end
124
+ @is_enabled = is_enabled
125
+ end
126
+
127
+ # Checks equality by comparing each attribute.
128
+ # @param o [Object] Object to be compared
129
+ # @!visibility private
130
+ def ==(o)
131
+ return true if self.equal?(o)
132
+ self.class == o.class &&
133
+ application_id == o.application_id &&
134
+ client_token_id == o.client_token_id &&
135
+ is_enabled == o.is_enabled
136
+ end
137
+
138
+ # @see the `==` method
139
+ # @param o [Object] Object to be compared
140
+ # @!visibility private
141
+ def eql?(o)
142
+ self == o
143
+ end
144
+
145
+ # Calculates hash code according to all attributes.
146
+ # @return [Integer] Hash code
147
+ # @!visibility private
148
+ def hash
149
+ [application_id, client_token_id, is_enabled].hash
150
+ end
151
+ end
152
+ end
@@ -57,7 +57,7 @@ module DatadogAPIClient::V1
57
57
  attr_accessor :steps
58
58
 
59
59
  # The subtype of the Synthetic API test, `http`, `ssl`, `tcp`,
60
- # `dns`, `icmp`, `udp`, `websocket` or `multi`.
60
+ # `dns`, `icmp`, `udp`, `websocket`, `grpc` or `multi`.
61
61
  attr_accessor :subtype
62
62
 
63
63
  # Array of tags attached to the test.
@@ -18,7 +18,7 @@ require 'time'
18
18
 
19
19
  module DatadogAPIClient::V1
20
20
  # The subtype of the Synthetic API test, `http`, `ssl`, `tcp`,
21
- # `dns`, `icmp`, `udp`, `websocket` or `multi`.
21
+ # `dns`, `icmp`, `udp`, `websocket`, `grpc` or `multi`.
22
22
  class SyntheticsTestDetailsSubType
23
23
  include BaseEnumModel
24
24
 
@@ -30,5 +30,6 @@ module DatadogAPIClient::V1
30
30
  ICMP = "icmp".freeze
31
31
  UDP = "udp".freeze
32
32
  WEBSOCKET = "websocket".freeze
33
+ GRPC = "grpc".freeze
33
34
  end
34
35
  end
@@ -70,6 +70,19 @@ module DatadogAPIClient::V1
70
70
  # Object describing the retry strategy to apply to a Synthetic test.
71
71
  attr_accessor :_retry
72
72
 
73
+ # The RUM data collection settings for the Synthetic browser test.
74
+ # **Note:** There are 3 ways to format RUM settings:
75
+ #
76
+ # `{ isEnabled: false }`
77
+ # RUM data is not collected.
78
+ #
79
+ # `{ isEnabled: true }`
80
+ # RUM data is collected from the Synthetic test's default application.
81
+ #
82
+ # `{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", clientTokenId: 12345 }`
83
+ # RUM data is collected using the specified application.
84
+ attr_accessor :rum_settings
85
+
73
86
  # The frequency at which to run the Synthetic test (in seconds).
74
87
  attr_accessor :tick_every
75
88
 
@@ -91,6 +104,7 @@ module DatadogAPIClient::V1
91
104
  :'no_screenshot' => :'noScreenshot',
92
105
  :'restricted_roles' => :'restricted_roles',
93
106
  :'_retry' => :'retry',
107
+ :'rum_settings' => :'rumSettings',
94
108
  :'tick_every' => :'tick_every'
95
109
  }
96
110
  end
@@ -119,6 +133,7 @@ module DatadogAPIClient::V1
119
133
  :'no_screenshot' => :'Boolean',
120
134
  :'restricted_roles' => :'Array<String>',
121
135
  :'_retry' => :'SyntheticsTestOptionsRetry',
136
+ :'rum_settings' => :'SyntheticsBrowserTestRumSettings',
122
137
  :'tick_every' => :'Integer'
123
138
  }
124
139
  end
@@ -206,6 +221,10 @@ module DatadogAPIClient::V1
206
221
  self._retry = attributes[:'_retry']
207
222
  end
208
223
 
224
+ if attributes.key?(:'rum_settings')
225
+ self.rum_settings = attributes[:'rum_settings']
226
+ end
227
+
209
228
  if attributes.key?(:'tick_every')
210
229
  self.tick_every = attributes[:'tick_every']
211
230
  end
@@ -268,6 +287,7 @@ module DatadogAPIClient::V1
268
287
  no_screenshot == o.no_screenshot &&
269
288
  restricted_roles == o.restricted_roles &&
270
289
  _retry == o._retry &&
290
+ rum_settings == o.rum_settings &&
271
291
  tick_every == o.tick_every
272
292
  end
273
293
 
@@ -282,7 +302,7 @@ module DatadogAPIClient::V1
282
302
  # @return [Integer] Hash code
283
303
  # @!visibility private
284
304
  def hash
285
- [accept_self_signed, allow_insecure, check_certificate_revocation, device_ids, disable_cors, follow_redirects, min_failure_duration, min_location_failed, monitor_name, monitor_options, monitor_priority, no_screenshot, restricted_roles, _retry, tick_every].hash
305
+ [accept_self_signed, allow_insecure, check_certificate_revocation, device_ids, disable_cors, follow_redirects, min_failure_duration, min_location_failed, monitor_name, monitor_options, monitor_priority, no_screenshot, restricted_roles, _retry, rum_settings, tick_every].hash
286
306
  end
287
307
  end
288
308
  end
@@ -55,6 +55,9 @@ module DatadogAPIClient::V1
55
55
  # Message to send for UDP or WebSocket tests.
56
56
  attr_accessor :message
57
57
 
58
+ # Metadata to include when performing the gRPC test.
59
+ attr_accessor :metadata
60
+
58
61
  # The HTTP method.
59
62
  attr_accessor :method
60
63
 
@@ -78,6 +81,9 @@ module DatadogAPIClient::V1
78
81
  # the same IP address and TCP port number.
79
82
  attr_accessor :servername
80
83
 
84
+ # gRPC service on which you want to perform the healthcheck.
85
+ attr_accessor :service
86
+
81
87
  # Turns on a traceroute probe to discover all gateways along the path to the host destination.
82
88
  attr_accessor :should_track_hops
83
89
 
@@ -101,6 +107,7 @@ module DatadogAPIClient::V1
101
107
  :'headers' => :'headers',
102
108
  :'host' => :'host',
103
109
  :'message' => :'message',
110
+ :'metadata' => :'metadata',
104
111
  :'method' => :'method',
105
112
  :'no_saving_response_body' => :'noSavingResponseBody',
106
113
  :'number_of_packets' => :'numberOfPackets',
@@ -108,6 +115,7 @@ module DatadogAPIClient::V1
108
115
  :'proxy' => :'proxy',
109
116
  :'query' => :'query',
110
117
  :'servername' => :'servername',
118
+ :'service' => :'service',
111
119
  :'should_track_hops' => :'shouldTrackHops',
112
120
  :'timeout' => :'timeout',
113
121
  :'url' => :'url'
@@ -134,6 +142,7 @@ module DatadogAPIClient::V1
134
142
  :'headers' => :'Hash<String, String>',
135
143
  :'host' => :'String',
136
144
  :'message' => :'String',
145
+ :'metadata' => :'Hash<String, String>',
137
146
  :'method' => :'HTTPMethod',
138
147
  :'no_saving_response_body' => :'Boolean',
139
148
  :'number_of_packets' => :'Integer',
@@ -141,6 +150,7 @@ module DatadogAPIClient::V1
141
150
  :'proxy' => :'SyntheticsTestRequestProxy',
142
151
  :'query' => :'Object',
143
152
  :'servername' => :'String',
153
+ :'service' => :'String',
144
154
  :'should_track_hops' => :'Boolean',
145
155
  :'timeout' => :'Float',
146
156
  :'url' => :'String'
@@ -210,6 +220,10 @@ module DatadogAPIClient::V1
210
220
  self.message = attributes[:'message']
211
221
  end
212
222
 
223
+ if attributes.key?(:'metadata')
224
+ self.metadata = attributes[:'metadata']
225
+ end
226
+
213
227
  if attributes.key?(:'method')
214
228
  self.method = attributes[:'method']
215
229
  end
@@ -238,6 +252,10 @@ module DatadogAPIClient::V1
238
252
  self.servername = attributes[:'servername']
239
253
  end
240
254
 
255
+ if attributes.key?(:'service')
256
+ self.service = attributes[:'service']
257
+ end
258
+
241
259
  if attributes.key?(:'should_track_hops')
242
260
  self.should_track_hops = attributes[:'should_track_hops']
243
261
  end
@@ -304,6 +322,7 @@ module DatadogAPIClient::V1
304
322
  headers == o.headers &&
305
323
  host == o.host &&
306
324
  message == o.message &&
325
+ metadata == o.metadata &&
307
326
  method == o.method &&
308
327
  no_saving_response_body == o.no_saving_response_body &&
309
328
  number_of_packets == o.number_of_packets &&
@@ -311,6 +330,7 @@ module DatadogAPIClient::V1
311
330
  proxy == o.proxy &&
312
331
  query == o.query &&
313
332
  servername == o.servername &&
333
+ service == o.service &&
314
334
  should_track_hops == o.should_track_hops &&
315
335
  timeout == o.timeout &&
316
336
  url == o.url
@@ -327,7 +347,7 @@ module DatadogAPIClient::V1
327
347
  # @return [Integer] Hash code
328
348
  # @!visibility private
329
349
  def hash
330
- [allow_insecure, basic_auth, body, certificate, dns_server, dns_server_port, follow_redirects, headers, host, message, method, no_saving_response_body, number_of_packets, port, proxy, query, servername, should_track_hops, timeout, url].hash
350
+ [allow_insecure, basic_auth, body, certificate, dns_server, dns_server_port, follow_redirects, headers, host, message, metadata, method, no_saving_response_body, number_of_packets, port, proxy, query, servername, service, should_track_hops, timeout, url].hash
331
351
  end
332
352
  end
333
353
  end
@@ -28,7 +28,7 @@ module DatadogAPIClient::V1
28
28
  # The object containing document metadata.
29
29
  attr_accessor :metadata
30
30
 
31
- # Get Usage Summary by tag(s).
31
+ # Get usage summary by tag(s).
32
32
  attr_accessor :usage
33
33
 
34
34
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -46,6 +46,9 @@ module DatadogAPIClient::V1
46
46
  # Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020).
47
47
  attr_accessor :session_count_ios
48
48
 
49
+ # Contains the number of mobile RUM Sessions on React Native (data available beginning May 1, 2022).
50
+ attr_accessor :session_count_reactnative
51
+
49
52
  # Attribute mapping from ruby-style variable name to JSON key.
50
53
  # @!visibility private
51
54
  def self.attribute_map
@@ -56,7 +59,8 @@ module DatadogAPIClient::V1
56
59
  :'replay_session_count' => :'replay_session_count',
57
60
  :'session_count' => :'session_count',
58
61
  :'session_count_android' => :'session_count_android',
59
- :'session_count_ios' => :'session_count_ios'
62
+ :'session_count_ios' => :'session_count_ios',
63
+ :'session_count_reactnative' => :'session_count_reactnative'
60
64
  }
61
65
  end
62
66
 
@@ -76,7 +80,8 @@ module DatadogAPIClient::V1
76
80
  :'replay_session_count' => :'Integer',
77
81
  :'session_count' => :'Integer',
78
82
  :'session_count_android' => :'Integer',
79
- :'session_count_ios' => :'Integer'
83
+ :'session_count_ios' => :'Integer',
84
+ :'session_count_reactnative' => :'Integer'
80
85
  }
81
86
  end
82
87
 
@@ -84,6 +89,10 @@ module DatadogAPIClient::V1
84
89
  # @!visibility private
85
90
  def self.openapi_nullable
86
91
  Set.new([
92
+ :'session_count',
93
+ :'session_count_android',
94
+ :'session_count_ios',
95
+ :'session_count_reactnative',
87
96
  ])
88
97
  end
89
98
 
@@ -130,6 +139,10 @@ module DatadogAPIClient::V1
130
139
  if attributes.key?(:'session_count_ios')
131
140
  self.session_count_ios = attributes[:'session_count_ios']
132
141
  end
142
+
143
+ if attributes.key?(:'session_count_reactnative')
144
+ self.session_count_reactnative = attributes[:'session_count_reactnative']
145
+ end
133
146
  end
134
147
 
135
148
  # Check to see if the all the properties in the model are valid
@@ -151,7 +164,8 @@ module DatadogAPIClient::V1
151
164
  replay_session_count == o.replay_session_count &&
152
165
  session_count == o.session_count &&
153
166
  session_count_android == o.session_count_android &&
154
- session_count_ios == o.session_count_ios
167
+ session_count_ios == o.session_count_ios &&
168
+ session_count_reactnative == o.session_count_reactnative
155
169
  end
156
170
 
157
171
  # @see the `==` method
@@ -165,7 +179,7 @@ module DatadogAPIClient::V1
165
179
  # @return [Integer] Hash code
166
180
  # @!visibility private
167
181
  def hash
168
- [hour, org_name, public_id, replay_session_count, session_count, session_count_android, session_count_ios].hash
182
+ [hour, org_name, public_id, replay_session_count, session_count, session_count_android, session_count_ios, session_count_reactnative].hash
169
183
  end
170
184
  end
171
185
  end
@@ -154,6 +154,9 @@ module DatadogAPIClient::V1
154
154
  # Shows the sum of all mobile RUM Sessions on iOS over all hours in the current date for all organizations.
155
155
  attr_accessor :mobile_rum_session_count_ios_sum
156
156
 
157
+ # Shows the sum of all mobile RUM Sessions on React Native over all hours in the current date for all organizations.
158
+ attr_accessor :mobile_rum_session_count_reactnative_sum
159
+
157
160
  # Shows the sum of all mobile RUM Sessions over all hours in the current date for all organizations
158
161
  attr_accessor :mobile_rum_session_count_sum
159
162
 
@@ -261,6 +264,7 @@ module DatadogAPIClient::V1
261
264
  :'mobile_rum_lite_session_count_sum' => :'mobile_rum_lite_session_count_sum',
262
265
  :'mobile_rum_session_count_android_sum' => :'mobile_rum_session_count_android_sum',
263
266
  :'mobile_rum_session_count_ios_sum' => :'mobile_rum_session_count_ios_sum',
267
+ :'mobile_rum_session_count_reactnative_sum' => :'mobile_rum_session_count_reactnative_sum',
264
268
  :'mobile_rum_session_count_sum' => :'mobile_rum_session_count_sum',
265
269
  :'mobile_rum_units_sum' => :'mobile_rum_units_sum',
266
270
  :'netflow_indexed_events_count_sum' => :'netflow_indexed_events_count_sum',
@@ -337,6 +341,7 @@ module DatadogAPIClient::V1
337
341
  :'mobile_rum_lite_session_count_sum' => :'Integer',
338
342
  :'mobile_rum_session_count_android_sum' => :'Integer',
339
343
  :'mobile_rum_session_count_ios_sum' => :'Integer',
344
+ :'mobile_rum_session_count_reactnative_sum' => :'Integer',
340
345
  :'mobile_rum_session_count_sum' => :'Integer',
341
346
  :'mobile_rum_units_sum' => :'Integer',
342
347
  :'netflow_indexed_events_count_sum' => :'Integer',
@@ -555,6 +560,10 @@ module DatadogAPIClient::V1
555
560
  self.mobile_rum_session_count_ios_sum = attributes[:'mobile_rum_session_count_ios_sum']
556
561
  end
557
562
 
563
+ if attributes.key?(:'mobile_rum_session_count_reactnative_sum')
564
+ self.mobile_rum_session_count_reactnative_sum = attributes[:'mobile_rum_session_count_reactnative_sum']
565
+ end
566
+
558
567
  if attributes.key?(:'mobile_rum_session_count_sum')
559
568
  self.mobile_rum_session_count_sum = attributes[:'mobile_rum_session_count_sum']
560
569
  end
@@ -694,6 +703,7 @@ module DatadogAPIClient::V1
694
703
  mobile_rum_lite_session_count_sum == o.mobile_rum_lite_session_count_sum &&
695
704
  mobile_rum_session_count_android_sum == o.mobile_rum_session_count_android_sum &&
696
705
  mobile_rum_session_count_ios_sum == o.mobile_rum_session_count_ios_sum &&
706
+ mobile_rum_session_count_reactnative_sum == o.mobile_rum_session_count_reactnative_sum &&
697
707
  mobile_rum_session_count_sum == o.mobile_rum_session_count_sum &&
698
708
  mobile_rum_units_sum == o.mobile_rum_units_sum &&
699
709
  netflow_indexed_events_count_sum == o.netflow_indexed_events_count_sum &&
@@ -727,7 +737,7 @@ module DatadogAPIClient::V1
727
737
  # @return [Integer] Hash code
728
738
  # @!visibility private
729
739
  def hash
730
- [agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, container_avg, container_hwm, cspm_aas_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, date, dbm_host_top99p, dbm_queries_count_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_host_top99p, orgs, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_logs_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
740
+ [agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, container_avg, container_hwm, cspm_aas_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, date, dbm_host_top99p, dbm_queries_count_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_host_top99p, orgs, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_logs_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
731
741
  end
732
742
  end
733
743
  end
@@ -154,6 +154,9 @@ module DatadogAPIClient::V1
154
154
  # Shows the sum of all mobile RUM Sessions on iOS over all hours in the current date for the given org.
155
155
  attr_accessor :mobile_rum_session_count_ios_sum
156
156
 
157
+ # Shows the sum of all mobile RUM Sessions on React Native over all hours in the current date for the given org.
158
+ attr_accessor :mobile_rum_session_count_reactnative_sum
159
+
157
160
  # Shows the sum of all mobile RUM Sessions over all hours in the current date for the given org.
158
161
  attr_accessor :mobile_rum_session_count_sum
159
162
 
@@ -264,6 +267,7 @@ module DatadogAPIClient::V1
264
267
  :'mobile_rum_lite_session_count_sum' => :'mobile_rum_lite_session_count_sum',
265
268
  :'mobile_rum_session_count_android_sum' => :'mobile_rum_session_count_android_sum',
266
269
  :'mobile_rum_session_count_ios_sum' => :'mobile_rum_session_count_ios_sum',
270
+ :'mobile_rum_session_count_reactnative_sum' => :'mobile_rum_session_count_reactnative_sum',
267
271
  :'mobile_rum_session_count_sum' => :'mobile_rum_session_count_sum',
268
272
  :'mobile_rum_units_sum' => :'mobile_rum_units_sum',
269
273
  :'name' => :'name',
@@ -341,6 +345,7 @@ module DatadogAPIClient::V1
341
345
  :'mobile_rum_lite_session_count_sum' => :'Integer',
342
346
  :'mobile_rum_session_count_android_sum' => :'Integer',
343
347
  :'mobile_rum_session_count_ios_sum' => :'Integer',
348
+ :'mobile_rum_session_count_reactnative_sum' => :'Integer',
344
349
  :'mobile_rum_session_count_sum' => :'Integer',
345
350
  :'mobile_rum_units_sum' => :'Integer',
346
351
  :'name' => :'String',
@@ -560,6 +565,10 @@ module DatadogAPIClient::V1
560
565
  self.mobile_rum_session_count_ios_sum = attributes[:'mobile_rum_session_count_ios_sum']
561
566
  end
562
567
 
568
+ if attributes.key?(:'mobile_rum_session_count_reactnative_sum')
569
+ self.mobile_rum_session_count_reactnative_sum = attributes[:'mobile_rum_session_count_reactnative_sum']
570
+ end
571
+
563
572
  if attributes.key?(:'mobile_rum_session_count_sum')
564
573
  self.mobile_rum_session_count_sum = attributes[:'mobile_rum_session_count_sum']
565
574
  end
@@ -701,6 +710,7 @@ module DatadogAPIClient::V1
701
710
  mobile_rum_lite_session_count_sum == o.mobile_rum_lite_session_count_sum &&
702
711
  mobile_rum_session_count_android_sum == o.mobile_rum_session_count_android_sum &&
703
712
  mobile_rum_session_count_ios_sum == o.mobile_rum_session_count_ios_sum &&
713
+ mobile_rum_session_count_reactnative_sum == o.mobile_rum_session_count_reactnative_sum &&
704
714
  mobile_rum_session_count_sum == o.mobile_rum_session_count_sum &&
705
715
  mobile_rum_units_sum == o.mobile_rum_units_sum &&
706
716
  name == o.name &&
@@ -735,7 +745,7 @@ module DatadogAPIClient::V1
735
745
  # @return [Integer] Hash code
736
746
  # @!visibility private
737
747
  def hash
738
- [agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, container_avg, container_hwm, cspm_aas_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, dbm_host_top99p_sum, dbm_queries_avg_sum, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_host_top99p, profiling_host_top99p, public_id, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_logs_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
748
+ [agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, container_avg, container_hwm, cspm_aas_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, dbm_host_top99p_sum, dbm_queries_avg_sum, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_host_top99p, profiling_host_top99p, public_id, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_logs_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
739
749
  end
740
750
  end
741
751
  end