datadog_api_client 2.8.0 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +66 -5
  4. data/.generator/schemas/v2/openapi.yaml +860 -20
  5. data/.generator/src/generator/formatter.py +1 -0
  6. data/.generator/src/generator/templates/model_base.j2 +8 -4
  7. data/CHANGELOG.md +24 -0
  8. data/examples/v1/dashboards/CreateDashboard_2800096921.rb +62 -0
  9. data/examples/v1/dashboards/CreateDashboard_3195475781.rb +32 -0
  10. data/examples/v2/incidents/CreateIncidentIntegration.rb +31 -0
  11. data/examples/v2/incidents/DeleteIncidentIntegration.rb +14 -0
  12. data/examples/v2/incidents/GetIncidentIntegration.rb +14 -0
  13. data/examples/v2/incidents/ListIncidentIntegrations.rb +11 -0
  14. data/examples/v2/incidents/UpdateIncidentIntegration.rb +34 -0
  15. data/examples/v2/ip-allowlist/GetIPAllowlist.rb +5 -0
  16. data/examples/v2/ip-allowlist/UpdateIPAllowlist.rb +25 -0
  17. data/examples/v2/logs-metrics/CreateLogsMetric.rb +1 -1
  18. data/examples/v2/restriction-policies/DeleteRestrictionPolicy.rb +5 -0
  19. data/examples/v2/restriction-policies/GetRestrictionPolicy.rb +5 -0
  20. data/examples/v2/restriction-policies/UpdateRestrictionPolicy.rb +25 -0
  21. data/examples/v2/synthetics/GetOnDemandConcurrencyCap.rb +5 -0
  22. data/examples/v2/synthetics/GetOnDemandConcurrencyCap_2633566918.rb +5 -0
  23. data/examples/v2/synthetics/SetOnDemandConcurrencyCap.rb +7 -0
  24. data/examples/v2/synthetics/SetOnDemandConcurrencyCap_2850884405.rb +9 -0
  25. data/lib/datadog_api_client/configuration.rb +5 -0
  26. data/lib/datadog_api_client/inflector.rb +35 -0
  27. data/lib/datadog_api_client/v1/api/snapshots_api.rb +2 -2
  28. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
  29. data/lib/datadog_api_client/v1/model_base.rb +7 -3
  30. data/lib/datadog_api_client/v1/models/application_key.rb +16 -16
  31. data/lib/datadog_api_client/v1/models/cancel_downtimes_by_scope_request.rb +1 -1
  32. data/lib/datadog_api_client/v1/models/downtime.rb +1 -1
  33. data/lib/datadog_api_client/v1/models/downtime_child.rb +1 -1
  34. data/lib/datadog_api_client/v1/models/formula_and_function_events_data_source.rb +1 -0
  35. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +1 -0
  36. data/lib/datadog_api_client/v1/models/list_stream_source.rb +3 -0
  37. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +2 -0
  38. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +21 -1
  39. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +12 -1
  40. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +21 -1
  41. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +21 -1
  42. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +21 -1
  43. data/lib/datadog_api_client/v2/api/incidents_api.rb +384 -0
  44. data/lib/datadog_api_client/v2/api/ip_allowlist_api.rb +153 -0
  45. data/lib/datadog_api_client/v2/api/logs_api.rb +1 -0
  46. data/lib/datadog_api_client/v2/api/restriction_policies_api.rb +236 -0
  47. data/lib/datadog_api_client/v2/api/synthetics_api.rb +153 -0
  48. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
  49. data/lib/datadog_api_client/v2/model_base.rb +7 -3
  50. data/lib/datadog_api_client/v2/models/events_data_source.rb +1 -0
  51. data/lib/datadog_api_client/v2/models/incident_integration_metadata_attributes.rb +161 -0
  52. data/lib/datadog_api_client/v2/models/incident_integration_metadata_create_data.rb +123 -0
  53. data/lib/datadog_api_client/v2/models/incident_integration_metadata_create_request.rb +102 -0
  54. data/lib/datadog_api_client/v2/models/incident_integration_metadata_list_response.rb +126 -0
  55. data/lib/datadog_api_client/v2/models/incident_integration_metadata_metadata.rb +63 -0
  56. data/lib/datadog_api_client/v2/models/incident_integration_metadata_patch_data.rb +123 -0
  57. data/lib/datadog_api_client/v2/models/incident_integration_metadata_patch_request.rb +102 -0
  58. data/lib/datadog_api_client/v2/models/incident_integration_metadata_response.rb +114 -0
  59. data/lib/datadog_api_client/v2/models/incident_integration_metadata_response_data.rb +133 -0
  60. data/lib/datadog_api_client/v2/models/incident_integration_metadata_response_included_item.rb +62 -0
  61. data/lib/datadog_api_client/v2/models/incident_update_data.rb +1 -1
  62. data/lib/datadog_api_client/v2/models/ip_allowlist_attributes.rb +103 -0
  63. data/lib/datadog_api_client/v2/models/ip_allowlist_data.rb +122 -0
  64. data/lib/datadog_api_client/v2/models/ip_allowlist_entry.rb +102 -0
  65. data/lib/datadog_api_client/v2/models/ip_allowlist_entry_attributes.rb +121 -0
  66. data/lib/datadog_api_client/v2/models/ip_allowlist_entry_data.rb +122 -0
  67. data/lib/datadog_api_client/v2/models/ip_allowlist_entry_type.rb +26 -0
  68. data/lib/datadog_api_client/v2/models/ip_allowlist_response.rb +91 -0
  69. data/lib/datadog_api_client/v2/models/ip_allowlist_type.rb +26 -0
  70. data/lib/datadog_api_client/v2/models/ip_allowlist_update_request.rb +102 -0
  71. data/lib/datadog_api_client/v2/models/jira_integration_metadata.rb +104 -0
  72. data/lib/datadog_api_client/v2/models/jira_integration_metadata_issues_item.rb +153 -0
  73. data/lib/datadog_api_client/v2/models/metrics_aggregator.rb +4 -0
  74. data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb +91 -0
  75. data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_attributes.rb +91 -0
  76. data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_response.rb +91 -0
  77. data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadatas.rb +1 -1
  78. data/lib/datadog_api_client/v2/models/restriction_policy.rb +144 -0
  79. data/lib/datadog_api_client/v2/models/restriction_policy_attributes.rb +104 -0
  80. data/lib/datadog_api_client/v2/models/restriction_policy_binding.rb +127 -0
  81. data/lib/datadog_api_client/v2/models/restriction_policy_response.rb +102 -0
  82. data/lib/datadog_api_client/v2/models/restriction_policy_type.rb +26 -0
  83. data/lib/datadog_api_client/v2/models/restriction_policy_update_request.rb +102 -0
  84. data/lib/datadog_api_client/v2/models/rum_application_attributes.rb +7 -7
  85. data/lib/datadog_api_client/v2/models/rum_application_list_attributes.rb +7 -7
  86. data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_read.rb +1 -0
  87. data/lib/datadog_api_client/v2/models/slack_integration_metadata.rb +104 -0
  88. data/lib/datadog_api_client/v2/models/slack_integration_metadata_channel_item.rb +154 -0
  89. data/lib/datadog_api_client/version.rb +1 -1
  90. metadata +53 -2
@@ -26,7 +26,7 @@ module DatadogAPIClient::V1
26
26
  attr_accessor :_unparsed
27
27
 
28
28
  # Hash of an application key.
29
- attr_reader :hash
29
+ attr_reader :_hash
30
30
 
31
31
  # Name of an application key.
32
32
  attr_accessor :name
@@ -38,7 +38,7 @@ module DatadogAPIClient::V1
38
38
  # @!visibility private
39
39
  def self.attribute_map
40
40
  {
41
- :'hash' => :'hash',
41
+ :'_hash' => :'hash',
42
42
  :'name' => :'name',
43
43
  :'owner' => :'owner'
44
44
  }
@@ -48,7 +48,7 @@ module DatadogAPIClient::V1
48
48
  # @!visibility private
49
49
  def self.openapi_types
50
50
  {
51
- :'hash' => :'String',
51
+ :'_hash' => :'String',
52
52
  :'name' => :'String',
53
53
  :'owner' => :'String'
54
54
  }
@@ -70,8 +70,8 @@ module DatadogAPIClient::V1
70
70
  h[k.to_sym] = v
71
71
  }
72
72
 
73
- if attributes.key?(:'hash')
74
- self.hash = attributes[:'hash']
73
+ if attributes.key?(:'_hash')
74
+ self._hash = attributes[:'_hash']
75
75
  end
76
76
 
77
77
  if attributes.key?(:'name')
@@ -87,22 +87,22 @@ module DatadogAPIClient::V1
87
87
  # @return true if the model is valid
88
88
  # @!visibility private
89
89
  def valid?
90
- return false if !@hash.nil? && @hash.to_s.length > 40
91
- return false if !@hash.nil? && @hash.to_s.length < 40
90
+ return false if !@_hash.nil? && @_hash.to_s.length > 40
91
+ return false if !@_hash.nil? && @_hash.to_s.length < 40
92
92
  true
93
93
  end
94
94
 
95
95
  # Custom attribute writer method with validation
96
- # @param hash [Object] Object to be assigned
96
+ # @param _hash [Object] Object to be assigned
97
97
  # @!visibility private
98
- def hash=(hash)
99
- if !hash.nil? && hash.to_s.length > 40
100
- fail ArgumentError, 'invalid value for "hash", the character length must be smaller than or equal to 40.'
98
+ def _hash=(_hash)
99
+ if !_hash.nil? && _hash.to_s.length > 40
100
+ fail ArgumentError, 'invalid value for "_hash", the character length must be smaller than or equal to 40.'
101
101
  end
102
- if !hash.nil? && hash.to_s.length < 40
103
- fail ArgumentError, 'invalid value for "hash", the character length must be great than or equal to 40.'
102
+ if !_hash.nil? && _hash.to_s.length < 40
103
+ fail ArgumentError, 'invalid value for "_hash", the character length must be great than or equal to 40.'
104
104
  end
105
- @hash = hash
105
+ @_hash = _hash
106
106
  end
107
107
 
108
108
  # Checks equality by comparing each attribute.
@@ -111,7 +111,7 @@ module DatadogAPIClient::V1
111
111
  def ==(o)
112
112
  return true if self.equal?(o)
113
113
  self.class == o.class &&
114
- hash == o.hash &&
114
+ _hash == o._hash &&
115
115
  name == o.name &&
116
116
  owner == o.owner
117
117
  end
@@ -120,7 +120,7 @@ module DatadogAPIClient::V1
120
120
  # @return [Integer] Hash code
121
121
  # @!visibility private
122
122
  def hash
123
- [hash, name, owner].hash
123
+ [_hash, name, owner].hash
124
124
  end
125
125
  end
126
126
  end
@@ -25,7 +25,7 @@ module DatadogAPIClient::V1
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
- # The scope(s) to which the downtime applies. For example, `host:app2`.
28
+ # The scope(s) to which the downtime applies and must be in `key:value` format. For example, `host:app2`.
29
29
  # Provide multiple scopes as a comma-separated list like `env:dev,env:prod`.
30
30
  # The resulting downtime applies to sources that matches ALL provided scopes (`env:dev` **AND** `env:prod`).
31
31
  attr_reader :scope
@@ -79,7 +79,7 @@ module DatadogAPIClient::V1
79
79
  # An object defining the recurrence of the downtime.
80
80
  attr_accessor :recurrence
81
81
 
82
- # The scope(s) to which the downtime applies. For example, `host:app2`.
82
+ # The scope(s) to which the downtime applies and must be in `key:value` format. For example, `host:app2`.
83
83
  # Provide multiple scopes as a comma-separated list like `env:dev,env:prod`.
84
84
  # The resulting downtime applies to sources that matches ALL provided scopes (`env:dev` **AND** `env:prod`).
85
85
  attr_accessor :scope
@@ -73,7 +73,7 @@ module DatadogAPIClient::V1
73
73
  # An object defining the recurrence of the downtime.
74
74
  attr_accessor :recurrence
75
75
 
76
- # The scope(s) to which the downtime applies. For example, `host:app2`.
76
+ # The scope(s) to which the downtime applies and must be in `key:value` format. For example, `host:app2`.
77
77
  # Provide multiple scopes as a comma-separated list like `env:dev,env:prod`.
78
78
  # The resulting downtime applies to sources that matches ALL provided scopes (`env:dev` **AND** `env:prod`).
79
79
  attr_accessor :scope
@@ -30,5 +30,6 @@ module DatadogAPIClient::V1
30
30
  AUDIT = "audit".freeze
31
31
  EVENTS = "events".freeze
32
32
  CI_TESTS = "ci_tests".freeze
33
+ CI_PIPELINES = "ci_pipelines".freeze
33
34
  end
34
35
  end
@@ -46,6 +46,7 @@ module DatadogAPIClient::V1
46
46
  INVOCATIONS_USAGE = "invocations_usage".freeze
47
47
  NPM_HOST_USAGE = "npm_host_usage".freeze
48
48
  PROFILED_CONTAINER_USAGE = "profiled_container_usage".freeze
49
+ PROFILED_FARGATE_USAGE = "profiled_fargate_usage".freeze
49
50
  PROFILED_HOST_USAGE = "profiled_host_usage".freeze
50
51
  SNMP_USAGE = "snmp_usage".freeze
51
52
  ESTIMATED_RUM_SESSIONS_USAGE = "estimated_rum_sessions_usage".freeze
@@ -23,8 +23,11 @@ module DatadogAPIClient::V1
23
23
 
24
24
  LOGS_STREAM = "logs_stream".freeze
25
25
  AUDIT_STREAM = "audit_stream".freeze
26
+ CI_PIPELINE_STREAM = "ci_pipeline_stream".freeze
27
+ CI_TEST_STREAM = "ci_test_stream".freeze
26
28
  RUM_ISSUE_STREAM = "rum_issue_stream".freeze
27
29
  APM_ISSUE_STREAM = "apm_issue_stream".freeze
30
+ LOGS_ISSUE_STREAM = "logs_issue_stream".freeze
28
31
  LOGS_PATTERN_STREAM = "logs_pattern_stream".freeze
29
32
  LOGS_TRANSACTION_STREAM = "logs_transaction_stream".freeze
30
33
  EVENT_STREAM = "event_stream".freeze
@@ -71,6 +71,8 @@ module DatadogAPIClient::V1
71
71
  NPM_HOST_PERCENTAGE = "npm_host_percentage".freeze
72
72
  PROFILED_CONTAINER_USAGE = "profiled_container_usage".freeze
73
73
  PROFILED_CONTAINER_PERCENTAGE = "profiled_container_percentage".freeze
74
+ PROFILED_FARGATE_USAGE = "profiled_fargate_usage".freeze
75
+ PROFILED_FARGATE_PERCENTAGE = "profiled_fargate_percentage".freeze
74
76
  PROFILED_HOST_USAGE = "profiled_host_usage".freeze
75
77
  PROFILED_HOST_PERCENTAGE = "profiled_host_percentage".freeze
76
78
  SNMP_USAGE = "snmp_usage".freeze
@@ -181,6 +181,12 @@ module DatadogAPIClient::V1
181
181
  # The profiled container usage by tag(s).
182
182
  attr_accessor :profiled_container_usage
183
183
 
184
+ # The percentage of profiled Fargate task usage by tag(s).
185
+ attr_accessor :profiled_fargate_percentage
186
+
187
+ # The profiled Fargate task usage by tag(s).
188
+ attr_accessor :profiled_fargate_usage
189
+
184
190
  # The percentage of profiled hosts usage by tag(s).
185
191
  attr_accessor :profiled_host_percentage
186
192
 
@@ -249,6 +255,8 @@ module DatadogAPIClient::V1
249
255
  :'npm_host_usage' => :'npm_host_usage',
250
256
  :'profiled_container_percentage' => :'profiled_container_percentage',
251
257
  :'profiled_container_usage' => :'profiled_container_usage',
258
+ :'profiled_fargate_percentage' => :'profiled_fargate_percentage',
259
+ :'profiled_fargate_usage' => :'profiled_fargate_usage',
252
260
  :'profiled_host_percentage' => :'profiled_host_percentage',
253
261
  :'profiled_host_usage' => :'profiled_host_usage',
254
262
  :'snmp_percentage' => :'snmp_percentage',
@@ -312,6 +320,8 @@ module DatadogAPIClient::V1
312
320
  :'npm_host_usage' => :'Float',
313
321
  :'profiled_container_percentage' => :'Float',
314
322
  :'profiled_container_usage' => :'Float',
323
+ :'profiled_fargate_percentage' => :'Float',
324
+ :'profiled_fargate_usage' => :'Float',
315
325
  :'profiled_host_percentage' => :'Float',
316
326
  :'profiled_host_usage' => :'Float',
317
327
  :'snmp_percentage' => :'Float',
@@ -543,6 +553,14 @@ module DatadogAPIClient::V1
543
553
  self.profiled_container_usage = attributes[:'profiled_container_usage']
544
554
  end
545
555
 
556
+ if attributes.key?(:'profiled_fargate_percentage')
557
+ self.profiled_fargate_percentage = attributes[:'profiled_fargate_percentage']
558
+ end
559
+
560
+ if attributes.key?(:'profiled_fargate_usage')
561
+ self.profiled_fargate_usage = attributes[:'profiled_fargate_usage']
562
+ end
563
+
546
564
  if attributes.key?(:'profiled_host_percentage')
547
565
  self.profiled_host_percentage = attributes[:'profiled_host_percentage']
548
566
  end
@@ -625,6 +643,8 @@ module DatadogAPIClient::V1
625
643
  npm_host_usage == o.npm_host_usage &&
626
644
  profiled_container_percentage == o.profiled_container_percentage &&
627
645
  profiled_container_usage == o.profiled_container_usage &&
646
+ profiled_fargate_percentage == o.profiled_fargate_percentage &&
647
+ profiled_fargate_usage == o.profiled_fargate_usage &&
628
648
  profiled_host_percentage == o.profiled_host_percentage &&
629
649
  profiled_host_usage == o.profiled_host_usage &&
630
650
  snmp_percentage == o.snmp_percentage &&
@@ -635,7 +655,7 @@ module DatadogAPIClient::V1
635
655
  # @return [Integer] Hash code
636
656
  # @!visibility private
637
657
  def hash
638
- [api_percentage, api_usage, apm_fargate_percentage, apm_fargate_usage, apm_host_percentage, apm_host_usage, appsec_fargate_percentage, appsec_fargate_usage, appsec_percentage, appsec_usage, browser_percentage, browser_usage, container_excl_agent_percentage, container_excl_agent_usage, container_percentage, container_usage, cspm_containers_percentage, cspm_containers_usage, cspm_hosts_percentage, cspm_hosts_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_hosts_percentage, cws_hosts_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_usage, functions_percentage, functions_usage, infra_host_percentage, infra_host_usage, invocations_percentage, invocations_usage, npm_host_percentage, npm_host_usage, profiled_container_percentage, profiled_container_usage, profiled_host_percentage, profiled_host_usage, snmp_percentage, snmp_usage].hash
658
+ [api_percentage, api_usage, apm_fargate_percentage, apm_fargate_usage, apm_host_percentage, apm_host_usage, appsec_fargate_percentage, appsec_fargate_usage, appsec_percentage, appsec_usage, browser_percentage, browser_usage, container_excl_agent_percentage, container_excl_agent_usage, container_percentage, container_usage, cspm_containers_percentage, cspm_containers_usage, cspm_hosts_percentage, cspm_hosts_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_hosts_percentage, cws_hosts_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_usage, functions_percentage, functions_usage, infra_host_percentage, infra_host_usage, invocations_percentage, invocations_usage, npm_host_percentage, npm_host_usage, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, snmp_percentage, snmp_usage].hash
639
659
  end
640
660
  end
641
661
  end
@@ -43,6 +43,9 @@ module DatadogAPIClient::V1
43
43
  # Contains the number of mobile RUM Sessions on Android (data available beginning December 1, 2020).
44
44
  attr_accessor :session_count_android
45
45
 
46
+ # Contains the number of mobile RUM Sessions on Flutter (data available beginning March 1, 2023).
47
+ attr_accessor :session_count_flutter
48
+
46
49
  # Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020).
47
50
  attr_accessor :session_count_ios
48
51
 
@@ -59,6 +62,7 @@ module DatadogAPIClient::V1
59
62
  :'replay_session_count' => :'replay_session_count',
60
63
  :'session_count' => :'session_count',
61
64
  :'session_count_android' => :'session_count_android',
65
+ :'session_count_flutter' => :'session_count_flutter',
62
66
  :'session_count_ios' => :'session_count_ios',
63
67
  :'session_count_reactnative' => :'session_count_reactnative'
64
68
  }
@@ -74,6 +78,7 @@ module DatadogAPIClient::V1
74
78
  :'replay_session_count' => :'Integer',
75
79
  :'session_count' => :'Integer',
76
80
  :'session_count_android' => :'Integer',
81
+ :'session_count_flutter' => :'Integer',
77
82
  :'session_count_ios' => :'Integer',
78
83
  :'session_count_reactnative' => :'Integer'
79
84
  }
@@ -85,6 +90,7 @@ module DatadogAPIClient::V1
85
90
  Set.new([
86
91
  :'session_count',
87
92
  :'session_count_android',
93
+ :'session_count_flutter',
88
94
  :'session_count_ios',
89
95
  :'session_count_reactnative',
90
96
  ])
@@ -130,6 +136,10 @@ module DatadogAPIClient::V1
130
136
  self.session_count_android = attributes[:'session_count_android']
131
137
  end
132
138
 
139
+ if attributes.key?(:'session_count_flutter')
140
+ self.session_count_flutter = attributes[:'session_count_flutter']
141
+ end
142
+
133
143
  if attributes.key?(:'session_count_ios')
134
144
  self.session_count_ios = attributes[:'session_count_ios']
135
145
  end
@@ -158,6 +168,7 @@ module DatadogAPIClient::V1
158
168
  replay_session_count == o.replay_session_count &&
159
169
  session_count == o.session_count &&
160
170
  session_count_android == o.session_count_android &&
171
+ session_count_flutter == o.session_count_flutter &&
161
172
  session_count_ios == o.session_count_ios &&
162
173
  session_count_reactnative == o.session_count_reactnative
163
174
  end
@@ -166,7 +177,7 @@ module DatadogAPIClient::V1
166
177
  # @return [Integer] Hash code
167
178
  # @!visibility private
168
179
  def hash
169
- [hour, org_name, public_id, replay_session_count, session_count, session_count_android, session_count_ios, session_count_reactnative].hash
180
+ [hour, org_name, public_id, replay_session_count, session_count, session_count_android, session_count_flutter, session_count_ios, session_count_reactnative].hash
170
181
  end
171
182
  end
172
183
  end
@@ -43,6 +43,9 @@ module DatadogAPIClient::V1
43
43
  # Shows the sum of audit logs lines indexed over all hours in the current date for all organizations.
44
44
  attr_accessor :audit_logs_lines_indexed_sum
45
45
 
46
+ # Shows the number of organizations that had Audit Trail enabled in the current date.
47
+ attr_accessor :audit_trail_enabled_hwm
48
+
46
49
  # The average profiled task count for Fargate Profiling.
47
50
  attr_accessor :avg_profiled_fargate_tasks
48
51
 
@@ -169,6 +172,9 @@ module DatadogAPIClient::V1
169
172
  # Shows the sum of all mobile RUM Sessions on Android over all hours in the current date for all organizations.
170
173
  attr_accessor :mobile_rum_session_count_android_sum
171
174
 
175
+ # Shows the sum of all mobile RUM Sessions on Flutter over all hours in the current date for all organizations.
176
+ attr_accessor :mobile_rum_session_count_flutter_sum
177
+
172
178
  # Shows the sum of all mobile RUM Sessions on iOS over all hours in the current date for all organizations.
173
179
  attr_accessor :mobile_rum_session_count_ios_sum
174
180
 
@@ -260,6 +266,7 @@ module DatadogAPIClient::V1
260
266
  :'apm_host_top99p' => :'apm_host_top99p',
261
267
  :'appsec_fargate_count_avg' => :'appsec_fargate_count_avg',
262
268
  :'audit_logs_lines_indexed_sum' => :'audit_logs_lines_indexed_sum',
269
+ :'audit_trail_enabled_hwm' => :'audit_trail_enabled_hwm',
263
270
  :'avg_profiled_fargate_tasks' => :'avg_profiled_fargate_tasks',
264
271
  :'aws_host_top99p' => :'aws_host_top99p',
265
272
  :'aws_lambda_func_count' => :'aws_lambda_func_count',
@@ -302,6 +309,7 @@ module DatadogAPIClient::V1
302
309
  :'iot_device_top99p' => :'iot_device_top99p',
303
310
  :'mobile_rum_lite_session_count_sum' => :'mobile_rum_lite_session_count_sum',
304
311
  :'mobile_rum_session_count_android_sum' => :'mobile_rum_session_count_android_sum',
312
+ :'mobile_rum_session_count_flutter_sum' => :'mobile_rum_session_count_flutter_sum',
305
313
  :'mobile_rum_session_count_ios_sum' => :'mobile_rum_session_count_ios_sum',
306
314
  :'mobile_rum_session_count_reactnative_sum' => :'mobile_rum_session_count_reactnative_sum',
307
315
  :'mobile_rum_session_count_sum' => :'mobile_rum_session_count_sum',
@@ -342,6 +350,7 @@ module DatadogAPIClient::V1
342
350
  :'apm_host_top99p' => :'Integer',
343
351
  :'appsec_fargate_count_avg' => :'Integer',
344
352
  :'audit_logs_lines_indexed_sum' => :'Integer',
353
+ :'audit_trail_enabled_hwm' => :'Integer',
345
354
  :'avg_profiled_fargate_tasks' => :'Integer',
346
355
  :'aws_host_top99p' => :'Integer',
347
356
  :'aws_lambda_func_count' => :'Integer',
@@ -384,6 +393,7 @@ module DatadogAPIClient::V1
384
393
  :'iot_device_top99p' => :'Integer',
385
394
  :'mobile_rum_lite_session_count_sum' => :'Integer',
386
395
  :'mobile_rum_session_count_android_sum' => :'Integer',
396
+ :'mobile_rum_session_count_flutter_sum' => :'Integer',
387
397
  :'mobile_rum_session_count_ios_sum' => :'Integer',
388
398
  :'mobile_rum_session_count_reactnative_sum' => :'Integer',
389
399
  :'mobile_rum_session_count_sum' => :'Integer',
@@ -454,6 +464,10 @@ module DatadogAPIClient::V1
454
464
  self.audit_logs_lines_indexed_sum = attributes[:'audit_logs_lines_indexed_sum']
455
465
  end
456
466
 
467
+ if attributes.key?(:'audit_trail_enabled_hwm')
468
+ self.audit_trail_enabled_hwm = attributes[:'audit_trail_enabled_hwm']
469
+ end
470
+
457
471
  if attributes.key?(:'avg_profiled_fargate_tasks')
458
472
  self.avg_profiled_fargate_tasks = attributes[:'avg_profiled_fargate_tasks']
459
473
  end
@@ -622,6 +636,10 @@ module DatadogAPIClient::V1
622
636
  self.mobile_rum_session_count_android_sum = attributes[:'mobile_rum_session_count_android_sum']
623
637
  end
624
638
 
639
+ if attributes.key?(:'mobile_rum_session_count_flutter_sum')
640
+ self.mobile_rum_session_count_flutter_sum = attributes[:'mobile_rum_session_count_flutter_sum']
641
+ end
642
+
625
643
  if attributes.key?(:'mobile_rum_session_count_ios_sum')
626
644
  self.mobile_rum_session_count_ios_sum = attributes[:'mobile_rum_session_count_ios_sum']
627
645
  end
@@ -752,6 +770,7 @@ module DatadogAPIClient::V1
752
770
  apm_host_top99p == o.apm_host_top99p &&
753
771
  appsec_fargate_count_avg == o.appsec_fargate_count_avg &&
754
772
  audit_logs_lines_indexed_sum == o.audit_logs_lines_indexed_sum &&
773
+ audit_trail_enabled_hwm == o.audit_trail_enabled_hwm &&
755
774
  avg_profiled_fargate_tasks == o.avg_profiled_fargate_tasks &&
756
775
  aws_host_top99p == o.aws_host_top99p &&
757
776
  aws_lambda_func_count == o.aws_lambda_func_count &&
@@ -794,6 +813,7 @@ module DatadogAPIClient::V1
794
813
  iot_device_top99p == o.iot_device_top99p &&
795
814
  mobile_rum_lite_session_count_sum == o.mobile_rum_lite_session_count_sum &&
796
815
  mobile_rum_session_count_android_sum == o.mobile_rum_session_count_android_sum &&
816
+ mobile_rum_session_count_flutter_sum == o.mobile_rum_session_count_flutter_sum &&
797
817
  mobile_rum_session_count_ios_sum == o.mobile_rum_session_count_ios_sum &&
798
818
  mobile_rum_session_count_reactnative_sum == o.mobile_rum_session_count_reactnative_sum &&
799
819
  mobile_rum_session_count_sum == o.mobile_rum_session_count_sum &&
@@ -827,7 +847,7 @@ module DatadogAPIClient::V1
827
847
  # @return [Integer] Hash code
828
848
  # @!visibility private
829
849
  def hash
830
- [agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, 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, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, 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_apm_host_top99p, 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_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
850
+ [agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, 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, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, 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_flutter_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_apm_host_top99p, 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_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
831
851
  end
832
852
  end
833
853
  end
@@ -43,6 +43,9 @@ module DatadogAPIClient::V1
43
43
  # Shows the sum of all audit logs lines indexed over all hours in the current date for the given org.
44
44
  attr_accessor :audit_logs_lines_indexed_sum
45
45
 
46
+ # Shows whether Audit Trail is enabled for the current date for the given org.
47
+ attr_accessor :audit_trail_enabled_hwm
48
+
46
49
  # The average profiled task count for Fargate Profiling.
47
50
  attr_accessor :avg_profiled_fargate_tasks
48
51
 
@@ -169,6 +172,9 @@ module DatadogAPIClient::V1
169
172
  # Shows the sum of all mobile RUM Sessions on Android over all hours in the current date for the given org.
170
173
  attr_accessor :mobile_rum_session_count_android_sum
171
174
 
175
+ # Shows the sum of all mobile RUM Sessions on Flutter over all hours in the current date for the given org.
176
+ attr_accessor :mobile_rum_session_count_flutter_sum
177
+
172
178
  # Shows the sum of all mobile RUM Sessions on iOS over all hours in the current date for the given org.
173
179
  attr_accessor :mobile_rum_session_count_ios_sum
174
180
 
@@ -266,6 +272,7 @@ module DatadogAPIClient::V1
266
272
  :'apm_host_top99p' => :'apm_host_top99p',
267
273
  :'appsec_fargate_count_avg' => :'appsec_fargate_count_avg',
268
274
  :'audit_logs_lines_indexed_sum' => :'audit_logs_lines_indexed_sum',
275
+ :'audit_trail_enabled_hwm' => :'audit_trail_enabled_hwm',
269
276
  :'avg_profiled_fargate_tasks' => :'avg_profiled_fargate_tasks',
270
277
  :'aws_host_top99p' => :'aws_host_top99p',
271
278
  :'aws_lambda_func_count' => :'aws_lambda_func_count',
@@ -308,6 +315,7 @@ module DatadogAPIClient::V1
308
315
  :'iot_device_top99p_sum' => :'iot_device_top99p_sum',
309
316
  :'mobile_rum_lite_session_count_sum' => :'mobile_rum_lite_session_count_sum',
310
317
  :'mobile_rum_session_count_android_sum' => :'mobile_rum_session_count_android_sum',
318
+ :'mobile_rum_session_count_flutter_sum' => :'mobile_rum_session_count_flutter_sum',
311
319
  :'mobile_rum_session_count_ios_sum' => :'mobile_rum_session_count_ios_sum',
312
320
  :'mobile_rum_session_count_reactnative_sum' => :'mobile_rum_session_count_reactnative_sum',
313
321
  :'mobile_rum_session_count_sum' => :'mobile_rum_session_count_sum',
@@ -350,6 +358,7 @@ module DatadogAPIClient::V1
350
358
  :'apm_host_top99p' => :'Integer',
351
359
  :'appsec_fargate_count_avg' => :'Integer',
352
360
  :'audit_logs_lines_indexed_sum' => :'Integer',
361
+ :'audit_trail_enabled_hwm' => :'Integer',
353
362
  :'avg_profiled_fargate_tasks' => :'Integer',
354
363
  :'aws_host_top99p' => :'Integer',
355
364
  :'aws_lambda_func_count' => :'Integer',
@@ -392,6 +401,7 @@ module DatadogAPIClient::V1
392
401
  :'iot_device_top99p_sum' => :'Integer',
393
402
  :'mobile_rum_lite_session_count_sum' => :'Integer',
394
403
  :'mobile_rum_session_count_android_sum' => :'Integer',
404
+ :'mobile_rum_session_count_flutter_sum' => :'Integer',
395
405
  :'mobile_rum_session_count_ios_sum' => :'Integer',
396
406
  :'mobile_rum_session_count_reactnative_sum' => :'Integer',
397
407
  :'mobile_rum_session_count_sum' => :'Integer',
@@ -464,6 +474,10 @@ module DatadogAPIClient::V1
464
474
  self.audit_logs_lines_indexed_sum = attributes[:'audit_logs_lines_indexed_sum']
465
475
  end
466
476
 
477
+ if attributes.key?(:'audit_trail_enabled_hwm')
478
+ self.audit_trail_enabled_hwm = attributes[:'audit_trail_enabled_hwm']
479
+ end
480
+
467
481
  if attributes.key?(:'avg_profiled_fargate_tasks')
468
482
  self.avg_profiled_fargate_tasks = attributes[:'avg_profiled_fargate_tasks']
469
483
  end
@@ -632,6 +646,10 @@ module DatadogAPIClient::V1
632
646
  self.mobile_rum_session_count_android_sum = attributes[:'mobile_rum_session_count_android_sum']
633
647
  end
634
648
 
649
+ if attributes.key?(:'mobile_rum_session_count_flutter_sum')
650
+ self.mobile_rum_session_count_flutter_sum = attributes[:'mobile_rum_session_count_flutter_sum']
651
+ end
652
+
635
653
  if attributes.key?(:'mobile_rum_session_count_ios_sum')
636
654
  self.mobile_rum_session_count_ios_sum = attributes[:'mobile_rum_session_count_ios_sum']
637
655
  end
@@ -768,6 +786,7 @@ module DatadogAPIClient::V1
768
786
  apm_host_top99p == o.apm_host_top99p &&
769
787
  appsec_fargate_count_avg == o.appsec_fargate_count_avg &&
770
788
  audit_logs_lines_indexed_sum == o.audit_logs_lines_indexed_sum &&
789
+ audit_trail_enabled_hwm == o.audit_trail_enabled_hwm &&
771
790
  avg_profiled_fargate_tasks == o.avg_profiled_fargate_tasks &&
772
791
  aws_host_top99p == o.aws_host_top99p &&
773
792
  aws_lambda_func_count == o.aws_lambda_func_count &&
@@ -810,6 +829,7 @@ module DatadogAPIClient::V1
810
829
  iot_device_top99p_sum == o.iot_device_top99p_sum &&
811
830
  mobile_rum_lite_session_count_sum == o.mobile_rum_lite_session_count_sum &&
812
831
  mobile_rum_session_count_android_sum == o.mobile_rum_session_count_android_sum &&
832
+ mobile_rum_session_count_flutter_sum == o.mobile_rum_session_count_flutter_sum &&
813
833
  mobile_rum_session_count_ios_sum == o.mobile_rum_session_count_ios_sum &&
814
834
  mobile_rum_session_count_reactnative_sum == o.mobile_rum_session_count_reactnative_sum &&
815
835
  mobile_rum_session_count_sum == o.mobile_rum_session_count_sum &&
@@ -845,7 +865,7 @@ module DatadogAPIClient::V1
845
865
  # @return [Integer] Hash code
846
866
  # @!visibility private
847
867
  def hash
848
- [agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, 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, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, 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_apm_host_top99p, opentelemetry_host_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
868
+ [agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, 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, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, 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_flutter_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_apm_host_top99p, opentelemetry_host_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
849
869
  end
850
870
  end
851
871
  end
@@ -43,6 +43,9 @@ module DatadogAPIClient::V1
43
43
  # Shows the sum of all audit logs lines indexed over all hours in the current months for all organizations.
44
44
  attr_accessor :audit_logs_lines_indexed_agg_sum
45
45
 
46
+ # Shows the total number of organizations that had Audit Trail enabled over a specific number of months.
47
+ attr_accessor :audit_trail_enabled_hwm_sum
48
+
46
49
  # Shows the average of all profiled Fargate tasks over all hours in the current months for all organizations.
47
50
  attr_accessor :avg_profiled_fargate_tasks_sum
48
51
 
@@ -187,6 +190,9 @@ module DatadogAPIClient::V1
187
190
  # Shows the sum of all mobile RUM Sessions on Android over all hours in the current months for all organizations.
188
191
  attr_accessor :mobile_rum_session_count_android_agg_sum
189
192
 
193
+ # Shows the sum of all mobile RUM Sessions on Flutter over all hours in the current months for all organizations.
194
+ attr_accessor :mobile_rum_session_count_flutter_agg_sum
195
+
190
196
  # Shows the sum of all mobile RUM Sessions on iOS over all hours in the current months for all organizations.
191
197
  attr_accessor :mobile_rum_session_count_ios_agg_sum
192
198
 
@@ -287,6 +293,7 @@ module DatadogAPIClient::V1
287
293
  :'apm_host_top99p_sum' => :'apm_host_top99p_sum',
288
294
  :'appsec_fargate_count_avg_sum' => :'appsec_fargate_count_avg_sum',
289
295
  :'audit_logs_lines_indexed_agg_sum' => :'audit_logs_lines_indexed_agg_sum',
296
+ :'audit_trail_enabled_hwm_sum' => :'audit_trail_enabled_hwm_sum',
290
297
  :'avg_profiled_fargate_tasks_sum' => :'avg_profiled_fargate_tasks_sum',
291
298
  :'aws_host_top99p_sum' => :'aws_host_top99p_sum',
292
299
  :'aws_lambda_func_count' => :'aws_lambda_func_count',
@@ -335,6 +342,7 @@ module DatadogAPIClient::V1
335
342
  :'mobile_rum_lite_session_count_agg_sum' => :'mobile_rum_lite_session_count_agg_sum',
336
343
  :'mobile_rum_session_count_agg_sum' => :'mobile_rum_session_count_agg_sum',
337
344
  :'mobile_rum_session_count_android_agg_sum' => :'mobile_rum_session_count_android_agg_sum',
345
+ :'mobile_rum_session_count_flutter_agg_sum' => :'mobile_rum_session_count_flutter_agg_sum',
338
346
  :'mobile_rum_session_count_ios_agg_sum' => :'mobile_rum_session_count_ios_agg_sum',
339
347
  :'mobile_rum_session_count_reactnative_agg_sum' => :'mobile_rum_session_count_reactnative_agg_sum',
340
348
  :'mobile_rum_units_agg_sum' => :'mobile_rum_units_agg_sum',
@@ -378,6 +386,7 @@ module DatadogAPIClient::V1
378
386
  :'apm_host_top99p_sum' => :'Integer',
379
387
  :'appsec_fargate_count_avg_sum' => :'Integer',
380
388
  :'audit_logs_lines_indexed_agg_sum' => :'Integer',
389
+ :'audit_trail_enabled_hwm_sum' => :'Integer',
381
390
  :'avg_profiled_fargate_tasks_sum' => :'Integer',
382
391
  :'aws_host_top99p_sum' => :'Integer',
383
392
  :'aws_lambda_func_count' => :'Integer',
@@ -426,6 +435,7 @@ module DatadogAPIClient::V1
426
435
  :'mobile_rum_lite_session_count_agg_sum' => :'Integer',
427
436
  :'mobile_rum_session_count_agg_sum' => :'Integer',
428
437
  :'mobile_rum_session_count_android_agg_sum' => :'Integer',
438
+ :'mobile_rum_session_count_flutter_agg_sum' => :'Integer',
429
439
  :'mobile_rum_session_count_ios_agg_sum' => :'Integer',
430
440
  :'mobile_rum_session_count_reactnative_agg_sum' => :'Integer',
431
441
  :'mobile_rum_units_agg_sum' => :'Integer',
@@ -499,6 +509,10 @@ module DatadogAPIClient::V1
499
509
  self.audit_logs_lines_indexed_agg_sum = attributes[:'audit_logs_lines_indexed_agg_sum']
500
510
  end
501
511
 
512
+ if attributes.key?(:'audit_trail_enabled_hwm_sum')
513
+ self.audit_trail_enabled_hwm_sum = attributes[:'audit_trail_enabled_hwm_sum']
514
+ end
515
+
502
516
  if attributes.key?(:'avg_profiled_fargate_tasks_sum')
503
517
  self.avg_profiled_fargate_tasks_sum = attributes[:'avg_profiled_fargate_tasks_sum']
504
518
  end
@@ -691,6 +705,10 @@ module DatadogAPIClient::V1
691
705
  self.mobile_rum_session_count_android_agg_sum = attributes[:'mobile_rum_session_count_android_agg_sum']
692
706
  end
693
707
 
708
+ if attributes.key?(:'mobile_rum_session_count_flutter_agg_sum')
709
+ self.mobile_rum_session_count_flutter_agg_sum = attributes[:'mobile_rum_session_count_flutter_agg_sum']
710
+ end
711
+
694
712
  if attributes.key?(:'mobile_rum_session_count_ios_agg_sum')
695
713
  self.mobile_rum_session_count_ios_agg_sum = attributes[:'mobile_rum_session_count_ios_agg_sum']
696
714
  end
@@ -833,6 +851,7 @@ module DatadogAPIClient::V1
833
851
  apm_host_top99p_sum == o.apm_host_top99p_sum &&
834
852
  appsec_fargate_count_avg_sum == o.appsec_fargate_count_avg_sum &&
835
853
  audit_logs_lines_indexed_agg_sum == o.audit_logs_lines_indexed_agg_sum &&
854
+ audit_trail_enabled_hwm_sum == o.audit_trail_enabled_hwm_sum &&
836
855
  avg_profiled_fargate_tasks_sum == o.avg_profiled_fargate_tasks_sum &&
837
856
  aws_host_top99p_sum == o.aws_host_top99p_sum &&
838
857
  aws_lambda_func_count == o.aws_lambda_func_count &&
@@ -881,6 +900,7 @@ module DatadogAPIClient::V1
881
900
  mobile_rum_lite_session_count_agg_sum == o.mobile_rum_lite_session_count_agg_sum &&
882
901
  mobile_rum_session_count_agg_sum == o.mobile_rum_session_count_agg_sum &&
883
902
  mobile_rum_session_count_android_agg_sum == o.mobile_rum_session_count_android_agg_sum &&
903
+ mobile_rum_session_count_flutter_agg_sum == o.mobile_rum_session_count_flutter_agg_sum &&
884
904
  mobile_rum_session_count_ios_agg_sum == o.mobile_rum_session_count_ios_agg_sum &&
885
905
  mobile_rum_session_count_reactnative_agg_sum == o.mobile_rum_session_count_reactnative_agg_sum &&
886
906
  mobile_rum_units_agg_sum == o.mobile_rum_units_agg_sum &&
@@ -917,7 +937,7 @@ module DatadogAPIClient::V1
917
937
  # @return [Integer] Hash code
918
938
  # @!visibility private
919
939
  def hash
920
- [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, audit_logs_lines_indexed_agg_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_host_count_avg_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_ts_sum, cws_containers_avg_sum, cws_host_top99p_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_units_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, usage, vsphere_host_top99p_sum].hash
940
+ [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, audit_logs_lines_indexed_agg_sum, audit_trail_enabled_hwm_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_host_count_avg_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_ts_sum, cws_containers_avg_sum, cws_host_top99p_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_flutter_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_units_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, usage, vsphere_host_top99p_sum].hash
921
941
  end
922
942
  end
923
943
  end