datadog_api_client 2.15.0 → 2.16.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 (165) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +6 -6
  3. data/.generator/schemas/v1/openapi.yaml +643 -123
  4. data/.generator/schemas/v2/openapi.yaml +1815 -195
  5. data/.generator/src/generator/templates/api_client.j2 +19 -1
  6. data/.generator/src/generator/templates/model_base.j2 +1 -0
  7. data/CHANGELOG.md +30 -0
  8. data/examples/v1/dashboards/CreateDashboard_1754992756.rb +44 -0
  9. data/examples/v1/dashboards/CreateDashboard_2278756614.rb +91 -0
  10. data/examples/v1/monitors/CreateMonitor_1539578087.rb +36 -0
  11. data/examples/v1/synthetics/CreateSyntheticsBrowserTest.rb +1 -1
  12. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +1 -1
  13. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_397420811.rb +1 -1
  14. data/examples/v1/usage-metering/GetUsageCIApp.rb +4 -1
  15. data/examples/v1/usage-metering/GetUsageCWS.rb +4 -1
  16. data/examples/v1/usage-metering/GetUsageCloudSecurityPostureManagement.rb +1 -1
  17. data/examples/v2/apm-retention-filters/CreateApmRetentionFilter.rb +20 -0
  18. data/examples/v2/apm-retention-filters/DeleteApmRetentionFilter.rb +8 -0
  19. data/examples/v2/apm-retention-filters/GetApmRetentionFilter.rb +8 -0
  20. data/examples/v2/apm-retention-filters/ListApmRetentionFilters.rb +5 -0
  21. data/examples/v2/apm-retention-filters/ReorderApmRetentionFilters.rb +18 -0
  22. data/examples/v2/apm-retention-filters/UpdateApmRetentionFilter.rb +24 -0
  23. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +0 -3
  24. data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +0 -8
  25. data/examples/v2/container-images/ListContainerImages.rb +8 -0
  26. data/examples/v2/container-images/ListContainerImages_3088586393.rb +11 -0
  27. data/examples/v2/container-images/ListContainerImages_3974828736.rb +11 -0
  28. data/examples/v2/gcp-integration/CreateGCPSTSAccount_109518525.rb +19 -0
  29. data/examples/v2/powerpack/CreatePowerpack.rb +47 -0
  30. data/examples/v2/powerpack/DeletePowerpack.rb +8 -0
  31. data/examples/v2/powerpack/GetPowerpack.rb +8 -0
  32. data/examples/v2/powerpack/ListPowerpacks.rb +8 -0
  33. data/examples/v2/powerpack/ListPowerpacks_1173755071.rb +8 -0
  34. data/examples/v2/powerpack/UpdatePowerpack.rb +50 -0
  35. data/examples/v2/rum/CreateRUMApplication.rb +1 -1
  36. data/examples/v2/service-accounts/CreateServiceAccountApplicationKey.rb +5 -7
  37. data/examples/v2/service-accounts/DeleteServiceAccountApplicationKey.rb +7 -1
  38. data/examples/v2/service-accounts/GetServiceAccountApplicationKey.rb +7 -1
  39. data/examples/v2/service-accounts/ListServiceAccountApplicationKeys.rb +4 -1
  40. data/examples/v2/service-accounts/UpdateServiceAccountApplicationKey.rb +11 -9
  41. data/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb +23 -12
  42. data/examples/v2/service-definition/CreateOrUpdateServiceDefinitions_2621709423.rb +53 -0
  43. data/lib/datadog_api_client/api_client.rb +19 -1
  44. data/lib/datadog_api_client/configuration.rb +1 -1
  45. data/lib/datadog_api_client/inflector.rb +80 -0
  46. data/lib/datadog_api_client/v1/api/monitors_api.rb +1 -20
  47. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -6
  48. data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +1 -1
  49. data/lib/datadog_api_client/v1/model_base.rb +1 -0
  50. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +6 -4
  51. data/lib/datadog_api_client/v1/models/ip_prefixes_global.rb +94 -0
  52. data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
  53. data/lib/datadog_api_client/v1/models/monitor_options_custom_schedule.rb +82 -0
  54. data/lib/datadog_api_client/v1/models/monitor_options_custom_schedule_recurrence.rb +100 -0
  55. data/lib/datadog_api_client/v1/models/monitor_options_scheduling_options.rb +11 -1
  56. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
  57. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +45 -5
  58. data/lib/datadog_api_client/v1/models/powerpack_template_variable_contents.rb +131 -0
  59. data/lib/datadog_api_client/v1/models/powerpack_template_variables.rb +94 -0
  60. data/lib/datadog_api_client/v1/models/powerpack_widget_definition.rb +169 -0
  61. data/lib/datadog_api_client/v1/models/powerpack_widget_definition_type.rb +26 -0
  62. data/lib/datadog_api_client/v1/models/split_config.rb +181 -0
  63. data/lib/datadog_api_client/v1/models/split_config_sort_compute.rb +119 -0
  64. data/lib/datadog_api_client/v1/models/split_dimension.rb +98 -0
  65. data/lib/datadog_api_client/v1/models/split_graph_source_widget_definition.rb +70 -0
  66. data/lib/datadog_api_client/v1/models/split_graph_viz_size.rb +29 -0
  67. data/lib/datadog_api_client/v1/models/split_graph_widget_definition.rb +191 -0
  68. data/lib/datadog_api_client/v1/models/split_graph_widget_definition_type.rb +26 -0
  69. data/lib/datadog_api_client/v1/models/split_sort.rb +108 -0
  70. data/lib/datadog_api_client/v1/models/split_vector_entry_item.rb +125 -0
  71. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +4 -4
  72. data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_hour.rb +8 -8
  73. data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +2 -2
  74. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +148 -8
  75. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +148 -8
  76. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +148 -8
  77. data/lib/datadog_api_client/v1/models/widget_definition.rb +8 -6
  78. data/lib/datadog_api_client/v2/api/apm_retention_filters_api.rb +423 -0
  79. data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +4 -10
  80. data/lib/datadog_api_client/v2/api/ci_visibility_tests_api.rb +3 -3
  81. data/lib/datadog_api_client/v2/api/container_images_api.rb +129 -0
  82. data/lib/datadog_api_client/v2/api/incidents_api.rb +1 -1
  83. data/lib/datadog_api_client/v2/api/powerpack_api.rb +383 -0
  84. data/lib/datadog_api_client/v2/api/service_definition_api.rb +2 -2
  85. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
  86. data/lib/datadog_api_client/v2/model_base.rb +1 -0
  87. data/lib/datadog_api_client/v2/models/apm_retention_filter_type.rb +26 -0
  88. data/lib/datadog_api_client/v2/models/container_image.rb +100 -0
  89. data/lib/datadog_api_client/v2/models/container_image_attributes.rb +261 -0
  90. data/lib/datadog_api_client/v2/models/container_image_flavor.rb +120 -0
  91. data/lib/datadog_api_client/v2/models/container_image_group.rb +110 -0
  92. data/lib/datadog_api_client/v2/models/container_image_group_attributes.rb +100 -0
  93. data/lib/datadog_api_client/v2/models/container_image_group_images_relationships_link.rb +92 -0
  94. data/lib/datadog_api_client/v2/models/container_image_group_relationships.rb +80 -0
  95. data/lib/datadog_api_client/v2/models/container_image_group_relationships_links.rb +80 -0
  96. data/lib/datadog_api_client/v2/models/container_image_group_type.rb +26 -0
  97. data/lib/datadog_api_client/v2/models/container_image_item.rb +63 -0
  98. data/lib/datadog_api_client/v2/models/container_image_meta.rb +80 -0
  99. data/lib/datadog_api_client/v2/models/container_image_meta_page.rb +160 -0
  100. data/lib/datadog_api_client/v2/models/container_image_meta_page_type.rb +26 -0
  101. data/lib/datadog_api_client/v2/models/container_image_type.rb +26 -0
  102. data/lib/datadog_api_client/v2/models/container_image_vulnerabilities.rb +140 -0
  103. data/lib/datadog_api_client/v2/models/container_images_response.rb +102 -0
  104. data/lib/datadog_api_client/v2/models/container_images_response_links.rb +130 -0
  105. data/lib/datadog_api_client/v2/models/data_scalar_column.rb +2 -2
  106. data/lib/datadog_api_client/v2/models/gcpsts_service_account_attributes.rb +13 -1
  107. data/lib/datadog_api_client/v2/models/group_scalar_column.rb +2 -2
  108. data/lib/datadog_api_client/v2/models/list_powerpacks_response.rb +114 -0
  109. data/lib/datadog_api_client/v2/models/powerpack.rb +80 -0
  110. data/lib/datadog_api_client/v2/models/powerpack_attributes.rb +164 -0
  111. data/lib/datadog_api_client/v2/models/powerpack_data.rb +110 -0
  112. data/lib/datadog_api_client/v2/models/powerpack_group_widget.rb +108 -0
  113. data/lib/datadog_api_client/v2/models/powerpack_group_widget_definition.rb +162 -0
  114. data/lib/datadog_api_client/v2/models/powerpack_group_widget_layout.rb +177 -0
  115. data/lib/datadog_api_client/v2/models/powerpack_inner_widget_layout.rb +177 -0
  116. data/lib/datadog_api_client/v2/models/powerpack_inner_widgets.rb +108 -0
  117. data/lib/datadog_api_client/v2/models/powerpack_relationships.rb +80 -0
  118. data/lib/datadog_api_client/v2/models/powerpack_response.rb +92 -0
  119. data/lib/datadog_api_client/v2/models/powerpack_response_links.rb +129 -0
  120. data/lib/datadog_api_client/v2/models/powerpack_template_variable.rb +110 -0
  121. data/lib/datadog_api_client/v2/models/powerpacks_response_meta.rb +80 -0
  122. data/lib/datadog_api_client/v2/models/powerpacks_response_meta_pagination.rb +150 -0
  123. data/lib/datadog_api_client/v2/models/reorder_retention_filters_request.rb +100 -0
  124. data/lib/datadog_api_client/v2/models/restriction_policy_binding.rb +1 -1
  125. data/lib/datadog_api_client/v2/models/retention_filter.rb +140 -0
  126. data/lib/datadog_api_client/v2/models/retention_filter_all.rb +140 -0
  127. data/lib/datadog_api_client/v2/models/retention_filter_all_attributes.rb +181 -0
  128. data/lib/datadog_api_client/v2/models/retention_filter_all_type.rb +28 -0
  129. data/lib/datadog_api_client/v2/models/retention_filter_attributes.rb +181 -0
  130. data/lib/datadog_api_client/v2/models/retention_filter_create_attributes.rb +183 -0
  131. data/lib/datadog_api_client/v2/models/retention_filter_create_data.rb +119 -0
  132. data/lib/datadog_api_client/v2/models/retention_filter_create_request.rb +98 -0
  133. data/lib/datadog_api_client/v2/models/retention_filter_response.rb +80 -0
  134. data/lib/datadog_api_client/v2/models/retention_filter_type.rb +26 -0
  135. data/lib/datadog_api_client/v2/models/retention_filter_update_data.rb +140 -0
  136. data/lib/datadog_api_client/v2/models/retention_filter_update_request.rb +98 -0
  137. data/lib/datadog_api_client/v2/models/retention_filter_without_attributes.rb +119 -0
  138. data/lib/datadog_api_client/v2/models/retention_filters_response.rb +100 -0
  139. data/lib/datadog_api_client/v2/models/scalar_column_type_group.rb +26 -0
  140. data/lib/datadog_api_client/v2/models/scalar_column_type_number.rb +26 -0
  141. data/lib/datadog_api_client/v2/models/scalar_meta.rb +8 -0
  142. data/lib/datadog_api_client/v2/models/service_definition_schema.rb +2 -1
  143. data/lib/datadog_api_client/v2/models/service_definition_schema_versions.rb +1 -0
  144. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb +247 -0
  145. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_contact.rb +129 -0
  146. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_integrations.rb +90 -0
  147. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_link.rb +150 -0
  148. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_opsgenie.rb +108 -0
  149. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_opsgenie_region.rb +27 -0
  150. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_pagerduty.rb +80 -0
  151. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_type.rb +32 -0
  152. data/lib/datadog_api_client/v2/models/service_definition_v2_dot2_version.rb +26 -0
  153. data/lib/datadog_api_client/v2/models/service_definitions_create_request.rb +1 -0
  154. data/lib/datadog_api_client/v2/models/spans_filter.rb +80 -0
  155. data/lib/datadog_api_client/v2/models/spans_filter_create.rb +98 -0
  156. data/lib/datadog_api_client/version.rb +1 -1
  157. data/run-tests.sh +6 -5
  158. metadata +102 -9
  159. data/examples/v1/usage-metering/GetUsageCIApp_1064440884.rb +0 -8
  160. data/examples/v1/usage-metering/GetUsageCWS_736958514.rb +0 -8
  161. data/examples/v2/service-accounts/CreateServiceAccountApplicationKey_1761876297.rb +0 -17
  162. data/examples/v2/service-accounts/DeleteServiceAccountApplicationKey_992091161.rb +0 -11
  163. data/examples/v2/service-accounts/GetServiceAccountApplicationKey_819075131.rb +0 -11
  164. data/examples/v2/service-accounts/ListServiceAccountApplicationKeys_1268914341.rb +0 -8
  165. data/examples/v2/service-accounts/UpdateServiceAccountApplicationKey_768415790.rb +0 -22
@@ -0,0 +1,125 @@
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 split graph list contains a graph for each value of the split dimension.
21
+ class SplitVectorEntryItem
22
+ include BaseGenericModel
23
+
24
+ # The tag key.
25
+ attr_reader :tag_key
26
+
27
+ # The tag values.
28
+ attr_reader :tag_values
29
+
30
+ # Attribute mapping from ruby-style variable name to JSON key.
31
+ # @!visibility private
32
+ def self.attribute_map
33
+ {
34
+ :'tag_key' => :'tag_key',
35
+ :'tag_values' => :'tag_values'
36
+ }
37
+ end
38
+
39
+ # Attribute type mapping.
40
+ # @!visibility private
41
+ def self.openapi_types
42
+ {
43
+ :'tag_key' => :'String',
44
+ :'tag_values' => :'Array<String>'
45
+ }
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param attributes [Hash] Model attributes in the form of hash
50
+ # @!visibility private
51
+ def initialize(attributes = {})
52
+ if (!attributes.is_a?(Hash))
53
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SplitVectorEntryItem` initialize method"
54
+ end
55
+
56
+ # check to see if the attribute exists and convert string to symbol for hash key
57
+ attributes = attributes.each_with_object({}) { |(k, v), h|
58
+ if (!self.class.attribute_map.key?(k.to_sym))
59
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SplitVectorEntryItem`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
60
+ end
61
+ h[k.to_sym] = v
62
+ }
63
+
64
+ if attributes.key?(:'tag_key')
65
+ self.tag_key = attributes[:'tag_key']
66
+ end
67
+
68
+ if attributes.key?(:'tag_values')
69
+ if (value = attributes[:'tag_values']).is_a?(Array)
70
+ self.tag_values = value
71
+ end
72
+ end
73
+ end
74
+
75
+ # Check to see if the all the properties in the model are valid
76
+ # @return true if the model is valid
77
+ # @!visibility private
78
+ def valid?
79
+ return false if @tag_key.nil?
80
+ return false if @tag_key.to_s.length < 1
81
+ return false if @tag_values.nil?
82
+ true
83
+ end
84
+
85
+ # Custom attribute writer method with validation
86
+ # @param tag_key [Object] Object to be assigned
87
+ # @!visibility private
88
+ def tag_key=(tag_key)
89
+ if tag_key.nil?
90
+ fail ArgumentError, 'invalid value for "tag_key", tag_key cannot be nil.'
91
+ end
92
+ if tag_key.to_s.length < 1
93
+ fail ArgumentError, 'invalid value for "tag_key", the character length must be great than or equal to 1.'
94
+ end
95
+ @tag_key = tag_key
96
+ end
97
+
98
+ # Custom attribute writer method with validation
99
+ # @param tag_values [Object] Object to be assigned
100
+ # @!visibility private
101
+ def tag_values=(tag_values)
102
+ if tag_values.nil?
103
+ fail ArgumentError, 'invalid value for "tag_values", tag_values cannot be nil.'
104
+ end
105
+ @tag_values = tag_values
106
+ end
107
+
108
+ # Checks equality by comparing each attribute.
109
+ # @param o [Object] Object to be compared
110
+ # @!visibility private
111
+ def ==(o)
112
+ return true if self.equal?(o)
113
+ self.class == o.class &&
114
+ tag_key == o.tag_key &&
115
+ tag_values == o.tag_values
116
+ end
117
+
118
+ # Calculates hash code according to all attributes.
119
+ # @return [Integer] Hash code
120
+ # @!visibility private
121
+ def hash
122
+ [tag_key, tag_values].hash
123
+ end
124
+ end
125
+ end
@@ -63,16 +63,16 @@ module DatadogAPIClient::V1
63
63
  # The container usage by tag(s).
64
64
  attr_accessor :container_usage
65
65
 
66
- # The percentage of Cloud Security Posture Management container usage by tag(s)
66
+ # The percentage of Cloud Security Management Pro container usage by tag(s)
67
67
  attr_accessor :cspm_container_percentage
68
68
 
69
- # The Cloud Security Posture Management container usage by tag(s)
69
+ # The Cloud Security Management Pro container usage by tag(s)
70
70
  attr_accessor :cspm_container_usage
71
71
 
72
- # The percentage of Cloud Security Posture Management host usage by tag(s)
72
+ # The percentage of Cloud Security Management Pro host usage by tag(s)
73
73
  attr_accessor :cspm_host_percentage
74
74
 
75
- # The Cloud Security Posture Management host usage by tag(s)
75
+ # The Cloud Security Management Pro host usage by tag(s)
76
76
  attr_accessor :cspm_host_usage
77
77
 
78
78
  # The percentage of custom metrics usage by tag(s).
@@ -17,29 +17,29 @@ require 'date'
17
17
  require 'time'
18
18
 
19
19
  module DatadogAPIClient::V1
20
- # Cloud Security Posture Management usage for a given organization for a given hour.
20
+ # Cloud Security Management Pro usage for a given organization for a given hour.
21
21
  class UsageCloudSecurityPostureManagementHour
22
22
  include BaseGenericModel
23
23
 
24
- # The number of Cloud Security Posture Management Azure app services hosts during a given hour.
24
+ # The number of Cloud Security Management Pro Azure app services hosts during a given hour.
25
25
  attr_accessor :aas_host_count
26
26
 
27
- # The number of Cloud Security Posture Management AWS hosts during a given hour.
27
+ # The number of Cloud Security Management Pro AWS hosts during a given hour.
28
28
  attr_accessor :aws_host_count
29
29
 
30
- # The number of Cloud Security Posture Management Azure hosts during a given hour.
30
+ # The number of Cloud Security Management Pro Azure hosts during a given hour.
31
31
  attr_accessor :azure_host_count
32
32
 
33
- # The number of Cloud Security Posture Management hosts during a given hour.
33
+ # The number of Cloud Security Management Pro hosts during a given hour.
34
34
  attr_accessor :compliance_host_count
35
35
 
36
- # The total number of Cloud Security Posture Management containers during a given hour.
36
+ # The total number of Cloud Security Management Pro containers during a given hour.
37
37
  attr_accessor :container_count
38
38
 
39
- # The number of Cloud Security Posture Management GCP hosts during a given hour.
39
+ # The number of Cloud Security Management Pro GCP hosts during a given hour.
40
40
  attr_accessor :gcp_host_count
41
41
 
42
- # The total number of Cloud Security Posture Management hosts during a given hour.
42
+ # The total number of Cloud Security Management Pro hosts during a given hour.
43
43
  attr_accessor :host_count
44
44
 
45
45
  # The hour for the usage.
@@ -17,11 +17,11 @@ require 'date'
17
17
  require 'time'
18
18
 
19
19
  module DatadogAPIClient::V1
20
- # The response containing the Cloud Security Posture Management usage for each hour for a given organization.
20
+ # The response containing the Cloud Security Management Pro usage for each hour for a given organization.
21
21
  class UsageCloudSecurityPostureManagementResponse
22
22
  include BaseGenericModel
23
23
 
24
- # Get hourly usage for Cloud Security Posture Management.
24
+ # Get hourly usage for Cloud Security Management Pro.
25
25
  attr_accessor :usage
26
26
 
27
27
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -102,25 +102,55 @@ module DatadogAPIClient::V1
102
102
  # Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
103
103
  attr_accessor :container_hwm
104
104
 
105
- # Shows the 99th percentile of all Cloud Security Posture Management Azure app services hosts over all hours in the current date for all organizations.
105
+ # Shows the sum of all Cloud Security Management Enterprise compliance containers over all hours in the current date for the given org.
106
+ attr_accessor :csm_container_enterprise_compliance_count_sum
107
+
108
+ # Shows the sum of all Cloud Security Management Enterprise Cloud Workload Security containers over all hours in the current date for the given org.
109
+ attr_accessor :csm_container_enterprise_cws_count_sum
110
+
111
+ # Shows the sum of all Cloud Security Management Enterprise containers over all hours in the current date for the given org.
112
+ attr_accessor :csm_container_enterprise_total_count_sum
113
+
114
+ # Shows the 99th percentile of all Cloud Security Management Enterprise Azure app services hosts over all hours in the current date for the given org.
115
+ attr_accessor :csm_host_enterprise_aas_host_count_top99p
116
+
117
+ # Shows the 99th percentile of all Cloud Security Management Enterprise AWS hosts over all hours in the current date for the given org.
118
+ attr_accessor :csm_host_enterprise_aws_host_count_top99p
119
+
120
+ # Shows the 99th percentile of all Cloud Security Management Enterprise Azure hosts over all hours in the current date for the given org.
121
+ attr_accessor :csm_host_enterprise_azure_host_count_top99p
122
+
123
+ # Shows the 99th percentile of all Cloud Security Management Enterprise compliance hosts over all hours in the current date for the given org.
124
+ attr_accessor :csm_host_enterprise_compliance_host_count_top99p
125
+
126
+ # Shows the 99th percentile of all Cloud Security Management Enterprise Cloud Workload Security hosts over all hours in the current date for the given org.
127
+ attr_accessor :csm_host_enterprise_cws_host_count_top99p
128
+
129
+ # Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
130
+ attr_accessor :csm_host_enterprise_gcp_host_count_top99p
131
+
132
+ # Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
133
+ attr_accessor :csm_host_enterprise_total_host_count_top99p
134
+
135
+ # Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for all organizations.
106
136
  attr_accessor :cspm_aas_host_top99p
107
137
 
108
- # Shows the 99th percentile of all Cloud Security Posture Management AWS hosts over all hours in the current date for all organizations.
138
+ # Shows the 99th percentile of all Cloud Security Management Pro AWS hosts over all hours in the current date for all organizations.
109
139
  attr_accessor :cspm_aws_host_top99p
110
140
 
111
- # Shows the 99th percentile of all Cloud Security Posture Management Azure hosts over all hours in the current date for all organizations.
141
+ # Shows the 99th percentile of all Cloud Security Management Pro Azure hosts over all hours in the current date for all organizations.
112
142
  attr_accessor :cspm_azure_host_top99p
113
143
 
114
- # Shows the average number of Cloud Security Posture Management containers over all hours in the current date for all organizations.
144
+ # Shows the average number of Cloud Security Management Pro containers over all hours in the current date for all organizations.
115
145
  attr_accessor :cspm_container_avg
116
146
 
117
- # Shows the high-water mark of Cloud Security Posture Management containers over all hours in the current date for all organizations.
147
+ # Shows the high-water mark of Cloud Security Management Pro containers over all hours in the current date for all organizations.
118
148
  attr_accessor :cspm_container_hwm
119
149
 
120
- # Shows the 99th percentile of all Cloud Security Posture Management GCP hosts over all hours in the current date for all organizations.
150
+ # Shows the 99th percentile of all Cloud Security Management Pro GCP hosts over all hours in the current date for all organizations.
121
151
  attr_accessor :cspm_gcp_host_top99p
122
152
 
123
- # Shows the 99th percentile of all Cloud Security Posture Management hosts over all hours in the current date for all organizations.
153
+ # Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for all organizations.
124
154
  attr_accessor :cspm_host_top99p
125
155
 
126
156
  # Shows the average number of distinct custom metrics over all hours in the current date for all organizations.
@@ -198,6 +228,9 @@ module DatadogAPIClient::V1
198
228
  # Shows the sum of all mobile RUM units over all hours in the current date for all organizations.
199
229
  attr_accessor :mobile_rum_units_sum
200
230
 
231
+ # Shows the sum of all Network Device Monitoring NetFlow events over all hours in the current date for the given org.
232
+ attr_accessor :ndm_netflow_events_sum
233
+
201
234
  # Shows the sum of all Network flows indexed over all hours in the current date for all organizations.
202
235
  attr_accessor :netflow_indexed_events_count_sum
203
236
 
@@ -252,6 +285,15 @@ module DatadogAPIClient::V1
252
285
  # Shows the sum of all bytes scanned across all usage types by the Sensitive Data Scanner over all hours in the current month for all organizations.
253
286
  attr_accessor :sds_total_scanned_bytes_sum
254
287
 
288
+ # Shows the average of the number of Serverless Apps for Azure for the given date and given org.
289
+ attr_accessor :serverless_apps_azure_count_avg
290
+
291
+ # Shows the average of the number of Serverless Apps for Google Cloud for the given date and given org.
292
+ attr_accessor :serverless_apps_google_count_avg
293
+
294
+ # Shows the average of the number of Serverless Apps for Azure and Google Cloud for the given date and given org.
295
+ attr_accessor :serverless_apps_total_count_avg
296
+
255
297
  # Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations.
256
298
  attr_accessor :synthetics_browser_check_calls_count_sum
257
299
 
@@ -313,6 +355,16 @@ module DatadogAPIClient::V1
313
355
  :'container_avg' => :'container_avg',
314
356
  :'container_excl_agent_avg' => :'container_excl_agent_avg',
315
357
  :'container_hwm' => :'container_hwm',
358
+ :'csm_container_enterprise_compliance_count_sum' => :'csm_container_enterprise_compliance_count_sum',
359
+ :'csm_container_enterprise_cws_count_sum' => :'csm_container_enterprise_cws_count_sum',
360
+ :'csm_container_enterprise_total_count_sum' => :'csm_container_enterprise_total_count_sum',
361
+ :'csm_host_enterprise_aas_host_count_top99p' => :'csm_host_enterprise_aas_host_count_top99p',
362
+ :'csm_host_enterprise_aws_host_count_top99p' => :'csm_host_enterprise_aws_host_count_top99p',
363
+ :'csm_host_enterprise_azure_host_count_top99p' => :'csm_host_enterprise_azure_host_count_top99p',
364
+ :'csm_host_enterprise_compliance_host_count_top99p' => :'csm_host_enterprise_compliance_host_count_top99p',
365
+ :'csm_host_enterprise_cws_host_count_top99p' => :'csm_host_enterprise_cws_host_count_top99p',
366
+ :'csm_host_enterprise_gcp_host_count_top99p' => :'csm_host_enterprise_gcp_host_count_top99p',
367
+ :'csm_host_enterprise_total_host_count_top99p' => :'csm_host_enterprise_total_host_count_top99p',
316
368
  :'cspm_aas_host_top99p' => :'cspm_aas_host_top99p',
317
369
  :'cspm_aws_host_top99p' => :'cspm_aws_host_top99p',
318
370
  :'cspm_azure_host_top99p' => :'cspm_azure_host_top99p',
@@ -345,6 +397,7 @@ module DatadogAPIClient::V1
345
397
  :'mobile_rum_session_count_roku_sum' => :'mobile_rum_session_count_roku_sum',
346
398
  :'mobile_rum_session_count_sum' => :'mobile_rum_session_count_sum',
347
399
  :'mobile_rum_units_sum' => :'mobile_rum_units_sum',
400
+ :'ndm_netflow_events_sum' => :'ndm_netflow_events_sum',
348
401
  :'netflow_indexed_events_count_sum' => :'netflow_indexed_events_count_sum',
349
402
  :'npm_host_top99p' => :'npm_host_top99p',
350
403
  :'observability_pipelines_bytes_processed_sum' => :'observability_pipelines_bytes_processed_sum',
@@ -363,6 +416,9 @@ module DatadogAPIClient::V1
363
416
  :'sds_logs_scanned_bytes_sum' => :'sds_logs_scanned_bytes_sum',
364
417
  :'sds_rum_scanned_bytes_sum' => :'sds_rum_scanned_bytes_sum',
365
418
  :'sds_total_scanned_bytes_sum' => :'sds_total_scanned_bytes_sum',
419
+ :'serverless_apps_azure_count_avg' => :'serverless_apps_azure_count_avg',
420
+ :'serverless_apps_google_count_avg' => :'serverless_apps_google_count_avg',
421
+ :'serverless_apps_total_count_avg' => :'serverless_apps_total_count_avg',
366
422
  :'synthetics_browser_check_calls_count_sum' => :'synthetics_browser_check_calls_count_sum',
367
423
  :'synthetics_check_calls_count_sum' => :'synthetics_check_calls_count_sum',
368
424
  :'synthetics_mobile_test_runs_sum' => :'synthetics_mobile_test_runs_sum',
@@ -407,6 +463,16 @@ module DatadogAPIClient::V1
407
463
  :'container_avg' => :'Integer',
408
464
  :'container_excl_agent_avg' => :'Integer',
409
465
  :'container_hwm' => :'Integer',
466
+ :'csm_container_enterprise_compliance_count_sum' => :'Integer',
467
+ :'csm_container_enterprise_cws_count_sum' => :'Integer',
468
+ :'csm_container_enterprise_total_count_sum' => :'Integer',
469
+ :'csm_host_enterprise_aas_host_count_top99p' => :'Integer',
470
+ :'csm_host_enterprise_aws_host_count_top99p' => :'Integer',
471
+ :'csm_host_enterprise_azure_host_count_top99p' => :'Integer',
472
+ :'csm_host_enterprise_compliance_host_count_top99p' => :'Integer',
473
+ :'csm_host_enterprise_cws_host_count_top99p' => :'Integer',
474
+ :'csm_host_enterprise_gcp_host_count_top99p' => :'Integer',
475
+ :'csm_host_enterprise_total_host_count_top99p' => :'Integer',
410
476
  :'cspm_aas_host_top99p' => :'Integer',
411
477
  :'cspm_aws_host_top99p' => :'Integer',
412
478
  :'cspm_azure_host_top99p' => :'Integer',
@@ -439,6 +505,7 @@ module DatadogAPIClient::V1
439
505
  :'mobile_rum_session_count_roku_sum' => :'Integer',
440
506
  :'mobile_rum_session_count_sum' => :'Integer',
441
507
  :'mobile_rum_units_sum' => :'Integer',
508
+ :'ndm_netflow_events_sum' => :'Integer',
442
509
  :'netflow_indexed_events_count_sum' => :'Integer',
443
510
  :'npm_host_top99p' => :'Integer',
444
511
  :'observability_pipelines_bytes_processed_sum' => :'Integer',
@@ -457,6 +524,9 @@ module DatadogAPIClient::V1
457
524
  :'sds_logs_scanned_bytes_sum' => :'Integer',
458
525
  :'sds_rum_scanned_bytes_sum' => :'Integer',
459
526
  :'sds_total_scanned_bytes_sum' => :'Integer',
527
+ :'serverless_apps_azure_count_avg' => :'Integer',
528
+ :'serverless_apps_google_count_avg' => :'Integer',
529
+ :'serverless_apps_total_count_avg' => :'Integer',
460
530
  :'synthetics_browser_check_calls_count_sum' => :'Integer',
461
531
  :'synthetics_check_calls_count_sum' => :'Integer',
462
532
  :'synthetics_mobile_test_runs_sum' => :'Integer',
@@ -594,6 +664,46 @@ module DatadogAPIClient::V1
594
664
  self.container_hwm = attributes[:'container_hwm']
595
665
  end
596
666
 
667
+ if attributes.key?(:'csm_container_enterprise_compliance_count_sum')
668
+ self.csm_container_enterprise_compliance_count_sum = attributes[:'csm_container_enterprise_compliance_count_sum']
669
+ end
670
+
671
+ if attributes.key?(:'csm_container_enterprise_cws_count_sum')
672
+ self.csm_container_enterprise_cws_count_sum = attributes[:'csm_container_enterprise_cws_count_sum']
673
+ end
674
+
675
+ if attributes.key?(:'csm_container_enterprise_total_count_sum')
676
+ self.csm_container_enterprise_total_count_sum = attributes[:'csm_container_enterprise_total_count_sum']
677
+ end
678
+
679
+ if attributes.key?(:'csm_host_enterprise_aas_host_count_top99p')
680
+ self.csm_host_enterprise_aas_host_count_top99p = attributes[:'csm_host_enterprise_aas_host_count_top99p']
681
+ end
682
+
683
+ if attributes.key?(:'csm_host_enterprise_aws_host_count_top99p')
684
+ self.csm_host_enterprise_aws_host_count_top99p = attributes[:'csm_host_enterprise_aws_host_count_top99p']
685
+ end
686
+
687
+ if attributes.key?(:'csm_host_enterprise_azure_host_count_top99p')
688
+ self.csm_host_enterprise_azure_host_count_top99p = attributes[:'csm_host_enterprise_azure_host_count_top99p']
689
+ end
690
+
691
+ if attributes.key?(:'csm_host_enterprise_compliance_host_count_top99p')
692
+ self.csm_host_enterprise_compliance_host_count_top99p = attributes[:'csm_host_enterprise_compliance_host_count_top99p']
693
+ end
694
+
695
+ if attributes.key?(:'csm_host_enterprise_cws_host_count_top99p')
696
+ self.csm_host_enterprise_cws_host_count_top99p = attributes[:'csm_host_enterprise_cws_host_count_top99p']
697
+ end
698
+
699
+ if attributes.key?(:'csm_host_enterprise_gcp_host_count_top99p')
700
+ self.csm_host_enterprise_gcp_host_count_top99p = attributes[:'csm_host_enterprise_gcp_host_count_top99p']
701
+ end
702
+
703
+ if attributes.key?(:'csm_host_enterprise_total_host_count_top99p')
704
+ self.csm_host_enterprise_total_host_count_top99p = attributes[:'csm_host_enterprise_total_host_count_top99p']
705
+ end
706
+
597
707
  if attributes.key?(:'cspm_aas_host_top99p')
598
708
  self.cspm_aas_host_top99p = attributes[:'cspm_aas_host_top99p']
599
709
  end
@@ -722,6 +832,10 @@ module DatadogAPIClient::V1
722
832
  self.mobile_rum_units_sum = attributes[:'mobile_rum_units_sum']
723
833
  end
724
834
 
835
+ if attributes.key?(:'ndm_netflow_events_sum')
836
+ self.ndm_netflow_events_sum = attributes[:'ndm_netflow_events_sum']
837
+ end
838
+
725
839
  if attributes.key?(:'netflow_indexed_events_count_sum')
726
840
  self.netflow_indexed_events_count_sum = attributes[:'netflow_indexed_events_count_sum']
727
841
  end
@@ -796,6 +910,18 @@ module DatadogAPIClient::V1
796
910
  self.sds_total_scanned_bytes_sum = attributes[:'sds_total_scanned_bytes_sum']
797
911
  end
798
912
 
913
+ if attributes.key?(:'serverless_apps_azure_count_avg')
914
+ self.serverless_apps_azure_count_avg = attributes[:'serverless_apps_azure_count_avg']
915
+ end
916
+
917
+ if attributes.key?(:'serverless_apps_google_count_avg')
918
+ self.serverless_apps_google_count_avg = attributes[:'serverless_apps_google_count_avg']
919
+ end
920
+
921
+ if attributes.key?(:'serverless_apps_total_count_avg')
922
+ self.serverless_apps_total_count_avg = attributes[:'serverless_apps_total_count_avg']
923
+ end
924
+
799
925
  if attributes.key?(:'synthetics_browser_check_calls_count_sum')
800
926
  self.synthetics_browser_check_calls_count_sum = attributes[:'synthetics_browser_check_calls_count_sum']
801
927
  end
@@ -870,6 +996,16 @@ module DatadogAPIClient::V1
870
996
  container_avg == o.container_avg &&
871
997
  container_excl_agent_avg == o.container_excl_agent_avg &&
872
998
  container_hwm == o.container_hwm &&
999
+ csm_container_enterprise_compliance_count_sum == o.csm_container_enterprise_compliance_count_sum &&
1000
+ csm_container_enterprise_cws_count_sum == o.csm_container_enterprise_cws_count_sum &&
1001
+ csm_container_enterprise_total_count_sum == o.csm_container_enterprise_total_count_sum &&
1002
+ csm_host_enterprise_aas_host_count_top99p == o.csm_host_enterprise_aas_host_count_top99p &&
1003
+ csm_host_enterprise_aws_host_count_top99p == o.csm_host_enterprise_aws_host_count_top99p &&
1004
+ csm_host_enterprise_azure_host_count_top99p == o.csm_host_enterprise_azure_host_count_top99p &&
1005
+ csm_host_enterprise_compliance_host_count_top99p == o.csm_host_enterprise_compliance_host_count_top99p &&
1006
+ csm_host_enterprise_cws_host_count_top99p == o.csm_host_enterprise_cws_host_count_top99p &&
1007
+ csm_host_enterprise_gcp_host_count_top99p == o.csm_host_enterprise_gcp_host_count_top99p &&
1008
+ csm_host_enterprise_total_host_count_top99p == o.csm_host_enterprise_total_host_count_top99p &&
873
1009
  cspm_aas_host_top99p == o.cspm_aas_host_top99p &&
874
1010
  cspm_aws_host_top99p == o.cspm_aws_host_top99p &&
875
1011
  cspm_azure_host_top99p == o.cspm_azure_host_top99p &&
@@ -902,6 +1038,7 @@ module DatadogAPIClient::V1
902
1038
  mobile_rum_session_count_roku_sum == o.mobile_rum_session_count_roku_sum &&
903
1039
  mobile_rum_session_count_sum == o.mobile_rum_session_count_sum &&
904
1040
  mobile_rum_units_sum == o.mobile_rum_units_sum &&
1041
+ ndm_netflow_events_sum == o.ndm_netflow_events_sum &&
905
1042
  netflow_indexed_events_count_sum == o.netflow_indexed_events_count_sum &&
906
1043
  npm_host_top99p == o.npm_host_top99p &&
907
1044
  observability_pipelines_bytes_processed_sum == o.observability_pipelines_bytes_processed_sum &&
@@ -920,6 +1057,9 @@ module DatadogAPIClient::V1
920
1057
  sds_logs_scanned_bytes_sum == o.sds_logs_scanned_bytes_sum &&
921
1058
  sds_rum_scanned_bytes_sum == o.sds_rum_scanned_bytes_sum &&
922
1059
  sds_total_scanned_bytes_sum == o.sds_total_scanned_bytes_sum &&
1060
+ serverless_apps_azure_count_avg == o.serverless_apps_azure_count_avg &&
1061
+ serverless_apps_google_count_avg == o.serverless_apps_google_count_avg &&
1062
+ serverless_apps_total_count_avg == o.serverless_apps_total_count_avg &&
923
1063
  synthetics_browser_check_calls_count_sum == o.synthetics_browser_check_calls_count_sum &&
924
1064
  synthetics_check_calls_count_sum == o.synthetics_check_calls_count_sum &&
925
1065
  synthetics_mobile_test_runs_sum == o.synthetics_mobile_test_runs_sum &&
@@ -936,7 +1076,7 @@ module DatadogAPIClient::V1
936
1076
  # @return [Integer] Hash code
937
1077
  # @!visibility private
938
1078
  def hash
939
- [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_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, 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, forwarding_events_bytes_sum, 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_roku_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_aas_count_top99p, 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_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum].hash
1079
+ [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_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, 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, forwarding_events_bytes_sum, 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_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, ndm_netflow_events_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_aas_count_top99p, 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, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum].hash
940
1080
  end
941
1081
  end
942
1082
  end