datadog_api_client 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +715 -44
  4. data/.generator/schemas/v2/openapi.yaml +458 -44
  5. data/.generator/src/generator/formatter.py +14 -0
  6. data/.github/workflows/test_integration.yml +0 -7
  7. data/CHANGELOG.md +34 -0
  8. data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
  9. data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
  10. data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
  11. data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
  12. data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
  13. data/examples/v1/organizations/DowngradeOrg.rb +5 -0
  14. data/examples/v1/organizations/UpdateOrg.rb +1 -0
  15. data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
  16. data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
  17. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +3 -0
  18. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +3 -0
  19. data/examples/v1/synthetics/UpdateBrowserTest.rb +3 -0
  20. data/examples/v2/metrics/CreateTagConfiguration.rb +0 -3
  21. data/examples/v2/metrics/DeleteTagConfiguration.rb +0 -3
  22. data/examples/v2/metrics/ListTagConfigurationByName.rb +0 -3
  23. data/examples/v2/metrics/ListTagConfigurations.rb +0 -3
  24. data/examples/v2/metrics/ListTagConfigurations_103226315.rb +0 -3
  25. data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
  26. data/examples/v2/metrics/UpdateTagConfiguration.rb +0 -3
  27. data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
  28. data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
  29. data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
  30. data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
  31. data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
  32. data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -3
  33. data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -3
  34. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +3 -0
  35. data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
  36. data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
  37. data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
  38. data/lib/datadog_api_client/v1/api/metrics_api.rb +81 -0
  39. data/lib/datadog_api_client/v1/api/organizations_api.rb +74 -1
  40. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +2 -2
  41. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +78 -4
  42. data/lib/datadog_api_client/v1/api/snapshots_api.rb +4 -0
  43. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +9 -5
  44. data/lib/datadog_api_client/v1/configuration.rb +51 -0
  45. data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
  46. data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
  47. data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
  48. data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
  49. data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
  50. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
  51. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
  52. data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -1
  53. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
  54. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
  55. data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics_private_locations.rb +125 -0
  56. data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
  57. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
  58. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -1
  59. data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
  60. data/lib/datadog_api_client/v1/models/organization.rb +14 -4
  61. data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
  62. data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
  63. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
  64. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
  65. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_int.rb +121 -0
  66. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_string.rb +121 -0
  67. data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
  68. data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
  69. data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
  70. data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -3
  71. data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -1
  72. data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -3
  73. data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -1
  74. data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -1
  75. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +11 -0
  76. data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -0
  77. data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -2
  78. data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
  79. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +11 -1
  80. data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -0
  81. data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -0
  82. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -1
  83. data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +474 -4
  84. data/lib/datadog_api_client/v1.rb +19 -0
  85. data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +1 -1
  86. data/lib/datadog_api_client/v2/api/metrics_api.rb +0 -2
  87. data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
  88. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +76 -0
  89. data/lib/datadog_api_client/v2/configuration.rb +0 -7
  90. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +10 -8
  91. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -2
  92. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -2
  93. data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
  94. data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
  95. data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
  96. data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
  97. data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
  98. data/lib/datadog_api_client/v2/models/opsgenie_service_response_attributes.rb +132 -0
  99. data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
  100. data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
  101. data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
  102. data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
  103. data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
  104. data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
  105. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +30 -4
  106. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
  107. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
  108. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +13 -1
  109. data/lib/datadog_api_client/v2.rb +15 -0
  110. data/lib/datadog_api_client/version.rb +1 -1
  111. metadata +51 -2
@@ -0,0 +1,181 @@
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
+ # Pagination metadata returned by the API.
21
+ class SearchSLOResponseMetaPage
22
+ include BaseGenericModel
23
+
24
+ # Whether the object has unparsed attributes
25
+ # @!visibility private
26
+ attr_accessor :_unparsed
27
+
28
+ # The first number.
29
+ attr_accessor :first_number
30
+
31
+ # The last number.
32
+ attr_accessor :last_number
33
+
34
+ # The next number.
35
+ attr_accessor :next_number
36
+
37
+ # The page number.
38
+ attr_accessor :number
39
+
40
+ # The previous page number.
41
+ attr_accessor :prev_number
42
+
43
+ # The size of the response.
44
+ attr_accessor :size
45
+
46
+ # The total number of SLOs in the response.
47
+ attr_accessor :total
48
+
49
+ # Type of pagination.
50
+ attr_accessor :type
51
+
52
+ # Attribute mapping from ruby-style variable name to JSON key.
53
+ # @!visibility private
54
+ def self.attribute_map
55
+ {
56
+ :'first_number' => :'first_number',
57
+ :'last_number' => :'last_number',
58
+ :'next_number' => :'next_number',
59
+ :'number' => :'number',
60
+ :'prev_number' => :'prev_number',
61
+ :'size' => :'size',
62
+ :'total' => :'total',
63
+ :'type' => :'type'
64
+ }
65
+ end
66
+
67
+ # Returns all the JSON keys this model knows about
68
+ # @!visibility private
69
+ def self.acceptable_attributes
70
+ attribute_map.values
71
+ end
72
+
73
+ # Attribute type mapping.
74
+ # @!visibility private
75
+ def self.openapi_types
76
+ {
77
+ :'first_number' => :'Integer',
78
+ :'last_number' => :'Integer',
79
+ :'next_number' => :'Integer',
80
+ :'number' => :'Integer',
81
+ :'prev_number' => :'Integer',
82
+ :'size' => :'Integer',
83
+ :'total' => :'Integer',
84
+ :'type' => :'String'
85
+ }
86
+ end
87
+
88
+ # List of attributes with nullable: true
89
+ # @!visibility private
90
+ def self.openapi_nullable
91
+ Set.new([
92
+ ])
93
+ end
94
+
95
+ # Initializes the object
96
+ # @param attributes [Hash] Model attributes in the form of hash
97
+ # @!visibility private
98
+ def initialize(attributes = {})
99
+ if (!attributes.is_a?(Hash))
100
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SearchSLOResponseMetaPage` initialize method"
101
+ end
102
+
103
+ # check to see if the attribute exists and convert string to symbol for hash key
104
+ attributes = attributes.each_with_object({}) { |(k, v), h|
105
+ if (!self.class.attribute_map.key?(k.to_sym))
106
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SearchSLOResponseMetaPage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
107
+ end
108
+ h[k.to_sym] = v
109
+ }
110
+
111
+ if attributes.key?(:'first_number')
112
+ self.first_number = attributes[:'first_number']
113
+ end
114
+
115
+ if attributes.key?(:'last_number')
116
+ self.last_number = attributes[:'last_number']
117
+ end
118
+
119
+ if attributes.key?(:'next_number')
120
+ self.next_number = attributes[:'next_number']
121
+ end
122
+
123
+ if attributes.key?(:'number')
124
+ self.number = attributes[:'number']
125
+ end
126
+
127
+ if attributes.key?(:'prev_number')
128
+ self.prev_number = attributes[:'prev_number']
129
+ end
130
+
131
+ if attributes.key?(:'size')
132
+ self.size = attributes[:'size']
133
+ end
134
+
135
+ if attributes.key?(:'total')
136
+ self.total = attributes[:'total']
137
+ end
138
+
139
+ if attributes.key?(:'type')
140
+ self.type = attributes[:'type']
141
+ end
142
+ end
143
+
144
+ # Check to see if the all the properties in the model are valid
145
+ # @return true if the model is valid
146
+ # @!visibility private
147
+ def valid?
148
+ true
149
+ end
150
+
151
+ # Checks equality by comparing each attribute.
152
+ # @param o [Object] Object to be compared
153
+ # @!visibility private
154
+ def ==(o)
155
+ return true if self.equal?(o)
156
+ self.class == o.class &&
157
+ first_number == o.first_number &&
158
+ last_number == o.last_number &&
159
+ next_number == o.next_number &&
160
+ number == o.number &&
161
+ prev_number == o.prev_number &&
162
+ size == o.size &&
163
+ total == o.total &&
164
+ type == o.type
165
+ end
166
+
167
+ # @see the `==` method
168
+ # @param o [Object] Object to be compared
169
+ # @!visibility private
170
+ def eql?(o)
171
+ self == o
172
+ end
173
+
174
+ # Calculates hash code according to all attributes.
175
+ # @return [Integer] Hash code
176
+ # @!visibility private
177
+ def hash
178
+ [first_number, last_number, next_number, number, prev_number, size, total, type].hash
179
+ end
180
+ end
181
+ end
@@ -40,7 +40,7 @@ module DatadogAPIClient::V1
40
40
  # Optional in create/update requests.
41
41
  attr_accessor :description
42
42
 
43
- # A list of (up to 20) monitor groups that narrow the scope of a monitor service level objective.
43
+ # A list of (up to 100) monitor groups that narrow the scope of a monitor service level objective.
44
44
  #
45
45
  # Included in service level objective responses if it is not empty. Optional in
46
46
  # create/update requests for monitor service level objectives, but may only be
@@ -63,7 +63,7 @@ module DatadogAPIClient::V1
63
63
 
64
64
  # The union of monitor tags for all monitors referenced by the `monitor_ids`
65
65
  # field.
66
- # Always included in service level objective responses for monitor service level
66
+ # Always included in service level objective responses for monitor-based service level
67
67
  # objectives (but may be empty). Ignored in create/update requests. Does not
68
68
  # affect which monitors are included in the service level objective (that is
69
69
  # determined entirely by the `monitor_ids` field).
@@ -72,7 +72,7 @@ module DatadogAPIClient::V1
72
72
  # The name of the service level objective object.
73
73
  attr_accessor :name
74
74
 
75
- # A metric SLI query. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
75
+ # A metric-based SLO. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
76
76
  # to be used because this will sum up all request counts instead of averaging them, or taking the max or
77
77
  # min of all of those requests.
78
78
  attr_accessor :query
@@ -17,7 +17,7 @@ require 'date'
17
17
  require 'time'
18
18
 
19
19
  module DatadogAPIClient::V1
20
- # A metric SLI query. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
20
+ # A metric-based SLO. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
21
21
  # to be used because this will sum up all request counts instead of averaging them, or taking the max or
22
22
  # min of all of those requests.
23
23
  class ServiceLevelObjectiveQuery
@@ -32,21 +32,21 @@ module DatadogAPIClient::V1
32
32
  # Optional in create/update requests.
33
33
  attr_accessor :description
34
34
 
35
- # A list of (up to 20) monitor groups that narrow the scope of a monitor service level objective.
35
+ # A list of (up to 100) monitor groups that narrow the scope of a monitor service level objective.
36
36
  #
37
37
  # Included in service level objective responses if it is not empty. Optional in
38
38
  # create/update requests for monitor service level objectives, but may only be
39
39
  # used when then length of the `monitor_ids` field is one.
40
40
  attr_accessor :groups
41
41
 
42
- # A list of monitor ids that defines the scope of a monitor service level
42
+ # A list of monitor IDs that defines the scope of a monitor service level
43
43
  # objective. **Required if type is `monitor`**.
44
44
  attr_accessor :monitor_ids
45
45
 
46
46
  # The name of the service level objective object.
47
47
  attr_accessor :name
48
48
 
49
- # A metric SLI query. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
49
+ # A metric-based SLO. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
50
50
  # to be used because this will sum up all request counts instead of averaging them, or taking the max or
51
51
  # min of all of those requests.
52
52
  attr_accessor :query
@@ -50,7 +50,7 @@ module DatadogAPIClient::V1
50
50
  # The series response version type. This mimics `batch_query` response type.
51
51
  attr_accessor :resp_version
52
52
 
53
- # An array of query timestamps in EPOCH milliseconds
53
+ # An array of query timestamps in EPOCH milliseconds.
54
54
  attr_accessor :times
55
55
 
56
56
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -75,7 +75,7 @@ module DatadogAPIClient::V1
75
75
  # The name of the service level objective object.
76
76
  attr_accessor :name
77
77
 
78
- # A metric SLI query. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
78
+ # A metric-based SLO. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
79
79
  # to be used because this will sum up all request counts instead of averaging them, or taking the max or
80
80
  # min of all of those requests.
81
81
  attr_accessor :query
@@ -182,6 +182,7 @@ module DatadogAPIClient::V1
182
182
  def valid?
183
183
  return false if @config.nil?
184
184
  return false if @locations.nil?
185
+ return false if @message.nil?
185
186
  return false if @name.nil?
186
187
  return false if @options.nil?
187
188
  return false if @type.nil?
@@ -208,6 +209,16 @@ module DatadogAPIClient::V1
208
209
  @locations = locations
209
210
  end
210
211
 
212
+ # Custom attribute writer method with validation
213
+ # @param message [Object] Object to be assigned
214
+ # @!visibility private
215
+ def message=(message)
216
+ if message.nil?
217
+ fail ArgumentError, 'invalid value for "message", message cannot be nil.'
218
+ end
219
+ @message = message
220
+ end
221
+
211
222
  # Custom attribute writer method with validation
212
223
  # @param name [Object] Object to be assigned
213
224
  # @!visibility private
@@ -183,6 +183,7 @@ module DatadogAPIClient::V1
183
183
  def valid?
184
184
  return false if @config.nil?
185
185
  return false if @locations.nil?
186
+ return false if @message.nil?
186
187
  return false if @name.nil?
187
188
  return false if @options.nil?
188
189
  return false if @type.nil?
@@ -209,6 +210,16 @@ module DatadogAPIClient::V1
209
210
  @locations = locations
210
211
  end
211
212
 
213
+ # Custom attribute writer method with validation
214
+ # @param message [Object] Object to be assigned
215
+ # @!visibility private
216
+ def message=(message)
217
+ if message.nil?
218
+ fail ArgumentError, 'invalid value for "message", message cannot be nil.'
219
+ end
220
+ @message = message
221
+ end
222
+
212
223
  # Custom attribute writer method with validation
213
224
  # @param name [Object] Object to be assigned
214
225
  # @!visibility private
@@ -54,8 +54,8 @@ module DatadogAPIClient::V1
54
54
  # @!visibility private
55
55
  def self.openapi_types
56
56
  {
57
- :'cls' => :'Integer',
58
- :'lcp' => :'Integer',
57
+ :'cls' => :'Float',
58
+ :'lcp' => :'Float',
59
59
  :'url' => :'String'
60
60
  }
61
61
  end
@@ -0,0 +1,111 @@
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
+ # CI/CD options for a Synthetic test.
21
+ class SyntheticsTestCiOptions
22
+ include BaseGenericModel
23
+
24
+ # Whether the object has unparsed attributes
25
+ # @!visibility private
26
+ attr_accessor :_unparsed
27
+
28
+ # Execution rule for a Synthetics test.
29
+ attr_accessor :execution_rule
30
+
31
+ # Attribute mapping from ruby-style variable name to JSON key.
32
+ # @!visibility private
33
+ def self.attribute_map
34
+ {
35
+ :'execution_rule' => :'executionRule'
36
+ }
37
+ end
38
+
39
+ # Returns all the JSON keys this model knows about
40
+ # @!visibility private
41
+ def self.acceptable_attributes
42
+ attribute_map.values
43
+ end
44
+
45
+ # Attribute type mapping.
46
+ # @!visibility private
47
+ def self.openapi_types
48
+ {
49
+ :'execution_rule' => :'SyntheticsTestExecutionRule'
50
+ }
51
+ end
52
+
53
+ # List of attributes with nullable: true
54
+ # @!visibility private
55
+ def self.openapi_nullable
56
+ Set.new([
57
+ ])
58
+ end
59
+
60
+ # Initializes the object
61
+ # @param attributes [Hash] Model attributes in the form of hash
62
+ # @!visibility private
63
+ def initialize(attributes = {})
64
+ if (!attributes.is_a?(Hash))
65
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::SyntheticsTestCiOptions` initialize method"
66
+ end
67
+
68
+ # check to see if the attribute exists and convert string to symbol for hash key
69
+ attributes = attributes.each_with_object({}) { |(k, v), h|
70
+ if (!self.class.attribute_map.key?(k.to_sym))
71
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::SyntheticsTestCiOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
72
+ end
73
+ h[k.to_sym] = v
74
+ }
75
+
76
+ if attributes.key?(:'execution_rule')
77
+ self.execution_rule = attributes[:'execution_rule']
78
+ end
79
+ end
80
+
81
+ # Check to see if the all the properties in the model are valid
82
+ # @return true if the model is valid
83
+ # @!visibility private
84
+ def valid?
85
+ true
86
+ end
87
+
88
+ # Checks equality by comparing each attribute.
89
+ # @param o [Object] Object to be compared
90
+ # @!visibility private
91
+ def ==(o)
92
+ return true if self.equal?(o)
93
+ self.class == o.class &&
94
+ execution_rule == o.execution_rule
95
+ end
96
+
97
+ # @see the `==` method
98
+ # @param o [Object] Object to be compared
99
+ # @!visibility private
100
+ def eql?(o)
101
+ self == o
102
+ end
103
+
104
+ # Calculates hash code according to all attributes.
105
+ # @return [Integer] Hash code
106
+ # @!visibility private
107
+ def hash
108
+ [execution_rule].hash
109
+ end
110
+ end
111
+ end
@@ -35,6 +35,9 @@ module DatadogAPIClient::V1
35
35
  # For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.
36
36
  attr_accessor :check_certificate_revocation
37
37
 
38
+ # CI/CD options for a Synthetic test.
39
+ attr_accessor :ci
40
+
38
41
  # For browser test, array with the different device IDs used to run the test.
39
42
  attr_accessor :device_ids
40
43
 
@@ -93,6 +96,7 @@ module DatadogAPIClient::V1
93
96
  :'accept_self_signed' => :'accept_self_signed',
94
97
  :'allow_insecure' => :'allow_insecure',
95
98
  :'check_certificate_revocation' => :'checkCertificateRevocation',
99
+ :'ci' => :'ci',
96
100
  :'device_ids' => :'device_ids',
97
101
  :'disable_cors' => :'disableCors',
98
102
  :'follow_redirects' => :'follow_redirects',
@@ -122,6 +126,7 @@ module DatadogAPIClient::V1
122
126
  :'accept_self_signed' => :'Boolean',
123
127
  :'allow_insecure' => :'Boolean',
124
128
  :'check_certificate_revocation' => :'Boolean',
129
+ :'ci' => :'SyntheticsTestCiOptions',
125
130
  :'device_ids' => :'Array<SyntheticsDeviceID>',
126
131
  :'disable_cors' => :'Boolean',
127
132
  :'follow_redirects' => :'Boolean',
@@ -173,6 +178,10 @@ module DatadogAPIClient::V1
173
178
  self.check_certificate_revocation = attributes[:'check_certificate_revocation']
174
179
  end
175
180
 
181
+ if attributes.key?(:'ci')
182
+ self.ci = attributes[:'ci']
183
+ end
184
+
176
185
  if attributes.key?(:'device_ids')
177
186
  if (value = attributes[:'device_ids']).is_a?(Array)
178
187
  self.device_ids = value
@@ -276,6 +285,7 @@ module DatadogAPIClient::V1
276
285
  accept_self_signed == o.accept_self_signed &&
277
286
  allow_insecure == o.allow_insecure &&
278
287
  check_certificate_revocation == o.check_certificate_revocation &&
288
+ ci == o.ci &&
279
289
  device_ids == o.device_ids &&
280
290
  disable_cors == o.disable_cors &&
281
291
  follow_redirects == o.follow_redirects &&
@@ -302,7 +312,7 @@ module DatadogAPIClient::V1
302
312
  # @return [Integer] Hash code
303
313
  # @!visibility private
304
314
  def hash
305
- [accept_self_signed, allow_insecure, check_certificate_revocation, device_ids, disable_cors, follow_redirects, min_failure_duration, min_location_failed, monitor_name, monitor_options, monitor_priority, no_screenshot, restricted_roles, _retry, rum_settings, tick_every].hash
315
+ [accept_self_signed, allow_insecure, check_certificate_revocation, ci, device_ids, disable_cors, follow_redirects, min_failure_duration, min_location_failed, monitor_name, monitor_options, monitor_priority, no_screenshot, restricted_roles, _retry, rum_settings, tick_every].hash
306
316
  end
307
317
  end
308
318
  end
@@ -25,6 +25,8 @@ module DatadogAPIClient::V1
25
25
  SNMP_USAGE = "snmp_usage".freeze
26
26
  APM_HOST_USAGE = "apm_host_usage".freeze
27
27
  API_USAGE = "api_usage".freeze
28
+ APPSEC_USAGE = "appsec_usage".freeze
29
+ APPSEC_PERCENTAGE = "appsec_percentage".freeze
28
30
  CONTAINER_USAGE = "container_usage".freeze
29
31
  CUSTOM_TIMESERIES_PERCENTAGE = "custom_timeseries_percentage".freeze
30
32
  CONTAINER_PERCENTAGE = "container_percentage".freeze
@@ -43,5 +45,7 @@ module DatadogAPIClient::V1
43
45
  LAMBDA_INVOCATIONS_PERCENTAGE = "lambda_invocations_percentage".freeze
44
46
  ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage".freeze
45
47
  ESTIMATED_INDEXED_LOGS_PERCENTAGE = "estimated_indexed_logs_percentage".freeze
48
+ ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
49
+ ESTIMATED_INDEXED_SPANS_PERCENTAGE = "estimated_indexed_spans_percentage".freeze
46
50
  end
47
51
  end
@@ -53,6 +53,10 @@ module DatadogAPIClient::V1
53
53
  DBM_QUERIES_PERCENTAGE = "dbm_queries_percentage".freeze
54
54
  ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage".freeze
55
55
  ESTIMATED_INDEXED_LOGS_PERCENTAGE = "estimated_indexed_logs_percentage".freeze
56
+ APPSEC_USAGE = "appsec_usage".freeze
57
+ APPSEC_PERCENTAGE = "appsec_percentage".freeze
58
+ ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
59
+ ESTIMATED_INDEXED_SPANS_PERCENTAGE = "estimated_indexed_spans_percentage".freeze
56
60
  ALL = "*".freeze
57
61
  end
58
62
  end
@@ -37,6 +37,12 @@ module DatadogAPIClient::V1
37
37
  # The APM host usage by tag(s).
38
38
  attr_accessor :apm_host_usage
39
39
 
40
+ # The percentage of Application Security Monitoring host usage by tag(s).
41
+ attr_accessor :appsec_percentage
42
+
43
+ # The Application Security Monitoring host usage by tag(s).
44
+ attr_accessor :appsec_usage
45
+
40
46
  # The percentage of synthetic browser test usage by tag(s).
41
47
  attr_accessor :browser_percentage
42
48
 
@@ -97,6 +103,12 @@ module DatadogAPIClient::V1
97
103
  # The estimated live indexed logs usage by tag(s). Note this field is in private beta.
98
104
  attr_accessor :estimated_indexed_logs_usage
99
105
 
106
+ # The percentage of estimated indexed spans usage by tag(s). Note this field is in private beta.
107
+ attr_accessor :estimated_indexed_spans_percentage
108
+
109
+ # The estimated indexed spans usage by tag(s). Note this field is in private beta.
110
+ attr_accessor :estimated_indexed_spans_usage
111
+
100
112
  # The percentage of infrastructure host usage by tag(s).
101
113
  attr_accessor :infra_host_percentage
102
114
 
@@ -147,6 +159,8 @@ module DatadogAPIClient::V1
147
159
  :'api_usage' => :'api_usage',
148
160
  :'apm_host_percentage' => :'apm_host_percentage',
149
161
  :'apm_host_usage' => :'apm_host_usage',
162
+ :'appsec_percentage' => :'appsec_percentage',
163
+ :'appsec_usage' => :'appsec_usage',
150
164
  :'browser_percentage' => :'browser_percentage',
151
165
  :'browser_usage' => :'browser_usage',
152
166
  :'container_percentage' => :'container_percentage',
@@ -167,6 +181,8 @@ module DatadogAPIClient::V1
167
181
  :'dbm_queries_usage' => :'dbm_queries_usage',
168
182
  :'estimated_indexed_logs_percentage' => :'estimated_indexed_logs_percentage',
169
183
  :'estimated_indexed_logs_usage' => :'estimated_indexed_logs_usage',
184
+ :'estimated_indexed_spans_percentage' => :'estimated_indexed_spans_percentage',
185
+ :'estimated_indexed_spans_usage' => :'estimated_indexed_spans_usage',
170
186
  :'infra_host_percentage' => :'infra_host_percentage',
171
187
  :'infra_host_usage' => :'infra_host_usage',
172
188
  :'lambda_functions_percentage' => :'lambda_functions_percentage',
@@ -198,6 +214,8 @@ module DatadogAPIClient::V1
198
214
  :'api_usage' => :'Float',
199
215
  :'apm_host_percentage' => :'Float',
200
216
  :'apm_host_usage' => :'Float',
217
+ :'appsec_percentage' => :'Object',
218
+ :'appsec_usage' => :'Float',
201
219
  :'browser_percentage' => :'Float',
202
220
  :'browser_usage' => :'Float',
203
221
  :'container_percentage' => :'Float',
@@ -218,6 +236,8 @@ module DatadogAPIClient::V1
218
236
  :'dbm_queries_usage' => :'Float',
219
237
  :'estimated_indexed_logs_percentage' => :'Float',
220
238
  :'estimated_indexed_logs_usage' => :'Float',
239
+ :'estimated_indexed_spans_percentage' => :'Float',
240
+ :'estimated_indexed_spans_usage' => :'Float',
221
241
  :'infra_host_percentage' => :'Float',
222
242
  :'infra_host_usage' => :'Float',
223
243
  :'lambda_functions_percentage' => :'Float',
@@ -274,6 +294,14 @@ module DatadogAPIClient::V1
274
294
  self.apm_host_usage = attributes[:'apm_host_usage']
275
295
  end
276
296
 
297
+ if attributes.key?(:'appsec_percentage')
298
+ self.appsec_percentage = attributes[:'appsec_percentage']
299
+ end
300
+
301
+ if attributes.key?(:'appsec_usage')
302
+ self.appsec_usage = attributes[:'appsec_usage']
303
+ end
304
+
277
305
  if attributes.key?(:'browser_percentage')
278
306
  self.browser_percentage = attributes[:'browser_percentage']
279
307
  end
@@ -354,6 +382,14 @@ module DatadogAPIClient::V1
354
382
  self.estimated_indexed_logs_usage = attributes[:'estimated_indexed_logs_usage']
355
383
  end
356
384
 
385
+ if attributes.key?(:'estimated_indexed_spans_percentage')
386
+ self.estimated_indexed_spans_percentage = attributes[:'estimated_indexed_spans_percentage']
387
+ end
388
+
389
+ if attributes.key?(:'estimated_indexed_spans_usage')
390
+ self.estimated_indexed_spans_usage = attributes[:'estimated_indexed_spans_usage']
391
+ end
392
+
357
393
  if attributes.key?(:'infra_host_percentage')
358
394
  self.infra_host_percentage = attributes[:'infra_host_percentage']
359
395
  end
@@ -428,6 +464,8 @@ module DatadogAPIClient::V1
428
464
  api_usage == o.api_usage &&
429
465
  apm_host_percentage == o.apm_host_percentage &&
430
466
  apm_host_usage == o.apm_host_usage &&
467
+ appsec_percentage == o.appsec_percentage &&
468
+ appsec_usage == o.appsec_usage &&
431
469
  browser_percentage == o.browser_percentage &&
432
470
  browser_usage == o.browser_usage &&
433
471
  container_percentage == o.container_percentage &&
@@ -448,6 +486,8 @@ module DatadogAPIClient::V1
448
486
  dbm_queries_usage == o.dbm_queries_usage &&
449
487
  estimated_indexed_logs_percentage == o.estimated_indexed_logs_percentage &&
450
488
  estimated_indexed_logs_usage == o.estimated_indexed_logs_usage &&
489
+ estimated_indexed_spans_percentage == o.estimated_indexed_spans_percentage &&
490
+ estimated_indexed_spans_usage == o.estimated_indexed_spans_usage &&
451
491
  infra_host_percentage == o.infra_host_percentage &&
452
492
  infra_host_usage == o.infra_host_usage &&
453
493
  lambda_functions_percentage == o.lambda_functions_percentage &&
@@ -475,7 +515,7 @@ module DatadogAPIClient::V1
475
515
  # @return [Integer] Hash code
476
516
  # @!visibility private
477
517
  def hash
478
- [api_percentage, api_usage, apm_host_percentage, apm_host_usage, browser_percentage, browser_usage, container_percentage, container_usage, cspm_container_percentage, cspm_container_usage, cspm_host_percentage, cspm_host_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_container_percentage, cws_container_usage, cws_host_percentage, cws_host_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, infra_host_percentage, infra_host_usage, lambda_functions_percentage, lambda_functions_usage, lambda_invocations_percentage, lambda_invocations_usage, npm_host_percentage, npm_host_usage, profiled_container_percentage, profiled_container_usage, profiled_hosts_percentage, profiled_hosts_usage, snmp_percentage, snmp_usage].hash
518
+ [api_percentage, api_usage, apm_host_percentage, apm_host_usage, appsec_percentage, appsec_usage, browser_percentage, browser_usage, container_percentage, container_usage, cspm_container_percentage, cspm_container_usage, cspm_host_percentage, cspm_host_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_container_percentage, cws_container_usage, cws_host_percentage, cws_host_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, infra_host_percentage, infra_host_usage, lambda_functions_percentage, lambda_functions_usage, lambda_invocations_percentage, lambda_invocations_usage, npm_host_percentage, npm_host_usage, profiled_container_percentage, profiled_container_usage, profiled_hosts_percentage, profiled_hosts_usage, snmp_percentage, snmp_usage].hash
479
519
  end
480
520
  end
481
521
  end