Class: DatadogAPIClient::V2::UsageMeteringAPI
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::UsageMeteringAPI
- Defined in:
- lib/datadog_api_client/v2/api/usage_metering_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_active_billing_dimensions(opts = {}) ⇒ Object
Get active billing dimensions for cost attribution.
-
#get_active_billing_dimensions_with_http_info(opts = {}) ⇒ Array<(ActiveBillingDimensionsResponse, Integer, Hash)>
Get active billing dimensions for cost attribution.
-
#get_billing_dimension_mapping(opts = {}) ⇒ Object
Get billing dimension mapping for usage endpoints.
-
#get_billing_dimension_mapping_with_http_info(opts = {}) ⇒ Array<(BillingDimensionsMappingResponse, Integer, Hash)>
Get billing dimension mapping for usage endpoints.
-
#get_cost_by_org(start_month, opts = {}) ⇒ Object
Get cost across multi-org account.
-
#get_cost_by_org_with_http_info(start_month, opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
deprecated
Deprecated.
This API is deprecated.
-
#get_estimated_cost_by_org(opts = {}) ⇒ Object
Get estimated cost across your account.
-
#get_estimated_cost_by_org_with_http_info(opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
Get estimated cost across your account.
-
#get_historical_cost_by_org(start_month, opts = {}) ⇒ Object
Get historical cost across your account.
-
#get_historical_cost_by_org_with_http_info(start_month, opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
Get historical cost across your account.
-
#get_hourly_usage(filter_timestamp_start, filter_product_families, opts = {}) ⇒ Object
Get hourly usage by product family.
-
#get_hourly_usage_with_http_info(filter_timestamp_start, filter_product_families, opts = {}) ⇒ Array<(HourlyUsageResponse, Integer, Hash)>
Get hourly usage by product family.
-
#get_monthly_cost_attribution(start_month, fields, opts = {}) ⇒ Object
Get Monthly Cost Attribution.
-
#get_monthly_cost_attribution_with_http_info(start_month, fields, opts = {}) ⇒ Array<(MonthlyCostAttributionResponse, Integer, Hash)>
Get Monthly Cost Attribution.
-
#get_projected_cost(opts = {}) ⇒ Object
Get projected cost across your account.
-
#get_projected_cost_with_http_info(opts = {}) ⇒ Array<(ProjectedCostResponse, Integer, Hash)>
Get projected cost across your account.
-
#get_usage_application_security_monitoring(start_hr, opts = {}) ⇒ Object
Get hourly usage for application security.
-
#get_usage_application_security_monitoring_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageApplicationSecurityMonitoringResponse, Integer, Hash)>
deprecated
Deprecated.
This API is deprecated.
-
#get_usage_lambda_traced_invocations(start_hr, opts = {}) ⇒ Object
Get hourly usage for Lambda traced invocations.
-
#get_usage_lambda_traced_invocations_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageLambdaTracedInvocationsResponse, Integer, Hash)>
deprecated
Deprecated.
This API is deprecated.
-
#get_usage_observability_pipelines(start_hr, opts = {}) ⇒ Object
Get hourly usage for observability pipelines.
-
#get_usage_observability_pipelines_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageObservabilityPipelinesResponse, Integer, Hash)>
deprecated
Deprecated.
This API is deprecated.
-
#initialize(api_client = DatadogAPIClient::APIClient.default) ⇒ UsageMeteringAPI
constructor
A new instance of UsageMeteringAPI.
Constructor Details
#initialize(api_client = DatadogAPIClient::APIClient.default) ⇒ UsageMeteringAPI
Returns a new instance of UsageMeteringAPI.
22 23 24 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 22 def initialize(api_client = DatadogAPIClient::APIClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
20 21 22 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 20 def api_client @api_client end |
Instance Method Details
#get_active_billing_dimensions(opts = {}) ⇒ Object
Get active billing dimensions for cost attribution.
29 30 31 32 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 29 def get_active_billing_dimensions(opts = {}) data, _status_code, _headers = get_active_billing_dimensions_with_http_info(opts) data end |
#get_active_billing_dimensions_with_http_info(opts = {}) ⇒ Array<(ActiveBillingDimensionsResponse, Integer, Hash)>
Get active billing dimensions for cost attribution.
Get active billing dimensions for cost attribution. Cost data for a given month becomes available no later than the 19th of the following month.
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 40 def get_active_billing_dimensions_with_http_info(opts = {}) unstable_enabled = @api_client.config.unstable_operations["v2.get_active_billing_dimensions".to_sym] if unstable_enabled @api_client.config.logger.warn format("Using unstable operation '%s'", "v2.get_active_billing_dimensions") else raise DatadogAPIClient::APIError.new(message: format("Unstable operation '%s' is disabled", "v2.get_active_billing_dimensions")) end if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_active_billing_dimensions ...' end # resource path local_var_path = '/api/v2/cost_by_tag/active_billing_dimensions' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'ActiveBillingDimensionsResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_active_billing_dimensions, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_active_billing_dimensions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_billing_dimension_mapping(opts = {}) ⇒ Object
Get billing dimension mapping for usage endpoints.
95 96 97 98 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 95 def get_billing_dimension_mapping(opts = {}) data, _status_code, _headers = get_billing_dimension_mapping_with_http_info(opts) data end |
#get_billing_dimension_mapping_with_http_info(opts = {}) ⇒ Array<(BillingDimensionsMappingResponse, Integer, Hash)>
Get billing dimension mapping for usage endpoints.
Get a mapping of billing dimensions to the corresponding keys for the supported usage metering public API endpoints. Mapping data is updated on a monthly cadence.
This endpoint is only accessible to [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 111 def get_billing_dimension_mapping_with_http_info(opts = {}) unstable_enabled = @api_client.config.unstable_operations["v2.get_billing_dimension_mapping".to_sym] if unstable_enabled @api_client.config.logger.warn format("Using unstable operation '%s'", "v2.get_billing_dimension_mapping") else raise DatadogAPIClient::APIError.new(message: format("Unstable operation '%s' is disabled", "v2.get_billing_dimension_mapping")) end if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_billing_dimension_mapping ...' end # resource path local_var_path = '/api/v2/usage/billing_dimension_mapping' # query parameters query_params = opts[:query_params] || {} query_params[:'filter[month]'] = opts[:'filter_month'] if !opts[:'filter_month'].nil? query_params[:'filter[view]'] = opts[:'filter_view'] if !opts[:'filter_view'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'BillingDimensionsMappingResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_billing_dimension_mapping, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_billing_dimension_mapping\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_cost_by_org(start_month, opts = {}) ⇒ Object
Get cost across multi-org account.
168 169 170 171 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 168 def get_cost_by_org(start_month, opts = {}) data, _status_code, _headers = get_cost_by_org_with_http_info(start_month, opts) data end |
#get_cost_by_org_with_http_info(start_month, opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
This API is deprecated.
Get cost across multi-org account.
Get cost across multi-org account. Cost by org data for a given month becomes available no later than the 16th of the following month. Note: This endpoint has been deprecated. Please use the new endpoint [‘/historical_cost`](docs.datadoghq.com/api/latest/usage-metering/#get-historical-cost-across-your-account) instead.
This endpoint is only accessible for [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 189 def get_cost_by_org_with_http_info(start_month, opts = {}) warn "[DEPRECATION] `GetCostByOrg` is deprecated." if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_cost_by_org ...' end # verify the required parameter 'start_month' is set if @api_client.config.client_side_validation && start_month.nil? fail ArgumentError, "Missing the required parameter 'start_month' when calling UsageMeteringAPI.get_cost_by_org" end # resource path local_var_path = '/api/v2/usage/cost_by_org' # query parameters query_params = opts[:query_params] || {} query_params[:'start_month'] = start_month query_params[:'end_month'] = opts[:'end_month'] if !opts[:'end_month'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'CostByOrgResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_cost_by_org, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_cost_by_org\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_estimated_cost_by_org(opts = {}) ⇒ Object
Get estimated cost across your account.
245 246 247 248 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 245 def get_estimated_cost_by_org(opts = {}) data, _status_code, _headers = get_estimated_cost_by_org_with_http_info(opts) data end |
#get_estimated_cost_by_org_with_http_info(opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
Get estimated cost across your account.
Get estimated cost across multi-org and single root-org accounts. Estimated cost data is only available for the current month and previous month and is delayed by up to 72 hours from when it was incurred. To access historical costs prior to this, use the ‘/historical_cost` endpoint.
This endpoint is only accessible for [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 267 def get_estimated_cost_by_org_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_estimated_cost_by_org ...' end # resource path local_var_path = '/api/v2/usage/estimated_cost' # query parameters query_params = opts[:query_params] || {} query_params[:'view'] = opts[:'view'] if !opts[:'view'].nil? query_params[:'start_month'] = opts[:'start_month'] if !opts[:'start_month'].nil? query_params[:'end_month'] = opts[:'end_month'] if !opts[:'end_month'].nil? query_params[:'start_date'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'end_date'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'include_connected_accounts'] = opts[:'include_connected_accounts'] if !opts[:'include_connected_accounts'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'CostByOrgResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_estimated_cost_by_org, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_estimated_cost_by_org\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_historical_cost_by_org(start_month, opts = {}) ⇒ Object
Get historical cost across your account.
322 323 324 325 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 322 def get_historical_cost_by_org(start_month, opts = {}) data, _status_code, _headers = get_historical_cost_by_org_with_http_info(start_month, opts) data end |
#get_historical_cost_by_org_with_http_info(start_month, opts = {}) ⇒ Array<(CostByOrgResponse, Integer, Hash)>
Get historical cost across your account.
Get historical cost across multi-org and single root-org accounts. Cost data for a given month becomes available no later than the 16th of the following month.
This endpoint is only accessible for [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 340 def get_historical_cost_by_org_with_http_info(start_month, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_historical_cost_by_org ...' end # verify the required parameter 'start_month' is set if @api_client.config.client_side_validation && start_month.nil? fail ArgumentError, "Missing the required parameter 'start_month' when calling UsageMeteringAPI.get_historical_cost_by_org" end # resource path local_var_path = '/api/v2/usage/historical_cost' # query parameters query_params = opts[:query_params] || {} query_params[:'start_month'] = start_month query_params[:'view'] = opts[:'view'] if !opts[:'view'].nil? query_params[:'end_month'] = opts[:'end_month'] if !opts[:'end_month'].nil? query_params[:'include_connected_accounts'] = opts[:'include_connected_accounts'] if !opts[:'include_connected_accounts'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'CostByOrgResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_historical_cost_by_org, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_historical_cost_by_org\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_hourly_usage(filter_timestamp_start, filter_product_families, opts = {}) ⇒ Object
Get hourly usage by product family.
397 398 399 400 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 397 def get_hourly_usage(, filter_product_families, opts = {}) data, _status_code, _headers = get_hourly_usage_with_http_info(, filter_product_families, opts) data end |
#get_hourly_usage_with_http_info(filter_timestamp_start, filter_product_families, opts = {}) ⇒ Array<(HourlyUsageResponse, Integer, Hash)>
Get hourly usage by product family.
Get hourly usage by product family.
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 417 def get_hourly_usage_with_http_info(, filter_product_families, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_hourly_usage ...' end # verify the required parameter 'filter_timestamp_start' is set if @api_client.config.client_side_validation && .nil? fail ArgumentError, "Missing the required parameter 'filter_timestamp_start' when calling UsageMeteringAPI.get_hourly_usage" end # verify the required parameter 'filter_product_families' is set if @api_client.config.client_side_validation && filter_product_families.nil? fail ArgumentError, "Missing the required parameter 'filter_product_families' when calling UsageMeteringAPI.get_hourly_usage" end if @api_client.config.client_side_validation && !opts[:'page_limit'].nil? && opts[:'page_limit'] > 500 fail ArgumentError, 'invalid value for "opts[:"page_limit"]" when calling UsageMeteringAPI.get_hourly_usage, must be smaller than or equal to 500.' end if @api_client.config.client_side_validation && !opts[:'page_limit'].nil? && opts[:'page_limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"page_limit"]" when calling UsageMeteringAPI.get_hourly_usage, must be greater than or equal to 1.' end # resource path local_var_path = '/api/v2/usage/hourly_usage' # query parameters query_params = opts[:query_params] || {} query_params[:'filter[timestamp][start]'] = query_params[:'filter[product_families]'] = filter_product_families query_params[:'filter[timestamp][end]'] = opts[:'filter_timestamp_end'] if !opts[:'filter_timestamp_end'].nil? query_params[:'filter[include_descendants]'] = opts[:'filter_include_descendants'] if !opts[:'filter_include_descendants'].nil? query_params[:'filter[include_connected_accounts]'] = opts[:'filter_include_connected_accounts'] if !opts[:'filter_include_connected_accounts'].nil? query_params[:'filter[include_breakdown]'] = opts[:'filter_include_breakdown'] if !opts[:'filter_include_breakdown'].nil? query_params[:'filter[versions]'] = opts[:'filter_versions'] if !opts[:'filter_versions'].nil? query_params[:'page[limit]'] = opts[:'page_limit'] if !opts[:'page_limit'].nil? query_params[:'page[next_record_id]'] = opts[:'page_next_record_id'] if !opts[:'page_next_record_id'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'HourlyUsageResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_hourly_usage, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_hourly_usage\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_monthly_cost_attribution(start_month, fields, opts = {}) ⇒ Object
Get Monthly Cost Attribution.
489 490 491 492 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 489 def get_monthly_cost_attribution(start_month, fields, opts = {}) data, _status_code, _headers = get_monthly_cost_attribution_with_http_info(start_month, fields, opts) data end |
#get_monthly_cost_attribution_with_http_info(start_month, fields, opts = {}) ⇒ Array<(MonthlyCostAttributionResponse, Integer, Hash)>
Get Monthly Cost Attribution.
Get monthly cost attribution by tag across multi-org and single root-org accounts. Cost Attribution data for a given month becomes available no later than the 19th of the following month. This API endpoint is paginated. To make sure you receive all records, check if the value of ‘next_record_id` is set in the response. If it is, make another request and pass `next_record_id` as a parameter. Pseudo code example: “` response := GetMonthlyCostAttribution(start_month, end_month) cursor := response.metadata.pagination.next_record_id WHILE cursor != null BEGIN
sleep(5 seconds) # Avoid running into rate limit
response := GetMonthlyCostAttribution(start_month, end_month, next_record_id=cursor)
cursor := response.metadata.pagination.next_record_id
END “‘
This endpoint is only accessible for [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 523 def get_monthly_cost_attribution_with_http_info(start_month, fields, opts = {}) unstable_enabled = @api_client.config.unstable_operations["v2.get_monthly_cost_attribution".to_sym] if unstable_enabled @api_client.config.logger.warn format("Using unstable operation '%s'", "v2.get_monthly_cost_attribution") else raise DatadogAPIClient::APIError.new(message: format("Unstable operation '%s' is disabled", "v2.get_monthly_cost_attribution")) end if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_monthly_cost_attribution ...' end # verify the required parameter 'start_month' is set if @api_client.config.client_side_validation && start_month.nil? fail ArgumentError, "Missing the required parameter 'start_month' when calling UsageMeteringAPI.get_monthly_cost_attribution" end # verify the required parameter 'fields' is set if @api_client.config.client_side_validation && fields.nil? fail ArgumentError, "Missing the required parameter 'fields' when calling UsageMeteringAPI.get_monthly_cost_attribution" end allowable_values = ['desc', 'asc'] if @api_client.config.client_side_validation && opts[:'sort_direction'] && !allowable_values.include?(opts[:'sort_direction']) fail ArgumentError, "invalid value for \"sort_direction\", must be one of #{allowable_values}" end # resource path local_var_path = '/api/v2/cost_by_tag/monthly_cost_attribution' # query parameters query_params = opts[:query_params] || {} query_params[:'start_month'] = start_month query_params[:'fields'] = fields query_params[:'end_month'] = opts[:'end_month'] if !opts[:'end_month'].nil? query_params[:'sort_direction'] = opts[:'sort_direction'] if !opts[:'sort_direction'].nil? query_params[:'sort_name'] = opts[:'sort_name'] if !opts[:'sort_name'].nil? query_params[:'tag_breakdown_keys'] = opts[:'tag_breakdown_keys'] if !opts[:'tag_breakdown_keys'].nil? query_params[:'next_record_id'] = opts[:'next_record_id'] if !opts[:'next_record_id'].nil? query_params[:'include_descendants'] = opts[:'include_descendants'] if !opts[:'include_descendants'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'MonthlyCostAttributionResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_monthly_cost_attribution, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_monthly_cost_attribution\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_projected_cost(opts = {}) ⇒ Object
Get projected cost across your account.
598 599 600 601 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 598 def get_projected_cost(opts = {}) data, _status_code, _headers = get_projected_cost_with_http_info(opts) data end |
#get_projected_cost_with_http_info(opts = {}) ⇒ Array<(ProjectedCostResponse, Integer, Hash)>
Get projected cost across your account.
Get projected cost across multi-org and single root-org accounts. Projected cost data is only available for the current month and becomes available around the 12th of the month.
This endpoint is only accessible for [parent-level organizations](docs.datadoghq.com/account_management/multi_organization/).
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 614 def get_projected_cost_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_projected_cost ...' end # resource path local_var_path = '/api/v2/usage/projected_cost' # query parameters query_params = opts[:query_params] || {} query_params[:'view'] = opts[:'view'] if !opts[:'view'].nil? query_params[:'include_connected_accounts'] = opts[:'include_connected_accounts'] if !opts[:'include_connected_accounts'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'ProjectedCostResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_projected_cost, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_projected_cost\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_usage_application_security_monitoring(start_hr, opts = {}) ⇒ Object
Get hourly usage for application security.
665 666 667 668 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 665 def get_usage_application_security_monitoring(start_hr, opts = {}) data, _status_code, _headers = get_usage_application_security_monitoring_with_http_info(start_hr, opts) data end |
#get_usage_application_security_monitoring_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageApplicationSecurityMonitoringResponse, Integer, Hash)>
This API is deprecated.
Get hourly usage for application security.
Get hourly usage for application security . Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the [Get hourly usage by product family API](docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 681 def get_usage_application_security_monitoring_with_http_info(start_hr, opts = {}) warn "[DEPRECATION] `GetUsageApplicationSecurityMonitoring` is deprecated." if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_usage_application_security_monitoring ...' end # verify the required parameter 'start_hr' is set if @api_client.config.client_side_validation && start_hr.nil? fail ArgumentError, "Missing the required parameter 'start_hr' when calling UsageMeteringAPI.get_usage_application_security_monitoring" end # resource path local_var_path = '/api/v2/usage/application_security' # query parameters query_params = opts[:query_params] || {} query_params[:'start_hr'] = start_hr query_params[:'end_hr'] = opts[:'end_hr'] if !opts[:'end_hr'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'UsageApplicationSecurityMonitoringResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_usage_application_security_monitoring, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_usage_application_security_monitoring\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_usage_lambda_traced_invocations(start_hr, opts = {}) ⇒ Object
Get hourly usage for Lambda traced invocations.
737 738 739 740 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 737 def get_usage_lambda_traced_invocations(start_hr, opts = {}) data, _status_code, _headers = get_usage_lambda_traced_invocations_with_http_info(start_hr, opts) data end |
#get_usage_lambda_traced_invocations_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageLambdaTracedInvocationsResponse, Integer, Hash)>
This API is deprecated.
Get hourly usage for Lambda traced invocations.
Get hourly usage for Lambda traced invocations. Note: This endpoint has been deprecated.. Hourly usage data for all products is now available in the [Get hourly usage by product family API](docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 753 def get_usage_lambda_traced_invocations_with_http_info(start_hr, opts = {}) warn "[DEPRECATION] `GetUsageLambdaTracedInvocations` is deprecated." if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_usage_lambda_traced_invocations ...' end # verify the required parameter 'start_hr' is set if @api_client.config.client_side_validation && start_hr.nil? fail ArgumentError, "Missing the required parameter 'start_hr' when calling UsageMeteringAPI.get_usage_lambda_traced_invocations" end # resource path local_var_path = '/api/v2/usage/lambda_traced_invocations' # query parameters query_params = opts[:query_params] || {} query_params[:'start_hr'] = start_hr query_params[:'end_hr'] = opts[:'end_hr'] if !opts[:'end_hr'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'UsageLambdaTracedInvocationsResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_usage_lambda_traced_invocations, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_usage_lambda_traced_invocations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_usage_observability_pipelines(start_hr, opts = {}) ⇒ Object
Get hourly usage for observability pipelines.
809 810 811 812 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 809 def get_usage_observability_pipelines(start_hr, opts = {}) data, _status_code, _headers = get_usage_observability_pipelines_with_http_info(start_hr, opts) data end |
#get_usage_observability_pipelines_with_http_info(start_hr, opts = {}) ⇒ Array<(UsageObservabilityPipelinesResponse, Integer, Hash)>
This API is deprecated.
Get hourly usage for observability pipelines.
Get hourly usage for observability pipelines. Note: This endpoint has been deprecated. Hourly usage data for all products is now available in the [Get hourly usage by product family API](docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 |
# File 'lib/datadog_api_client/v2/api/usage_metering_api.rb', line 825 def get_usage_observability_pipelines_with_http_info(start_hr, opts = {}) warn "[DEPRECATION] `GetUsageObservabilityPipelines` is deprecated." if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsageMeteringAPI.get_usage_observability_pipelines ...' end # verify the required parameter 'start_hr' is set if @api_client.config.client_side_validation && start_hr.nil? fail ArgumentError, "Missing the required parameter 'start_hr' when calling UsageMeteringAPI.get_usage_observability_pipelines" end # resource path local_var_path = '/api/v2/usage/observability_pipelines' # query parameters query_params = opts[:query_params] || {} query_params[:'start_hr'] = start_hr query_params[:'end_hr'] = opts[:'end_hr'] if !opts[:'end_hr'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;datetime-format=rfc3339']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'UsageObservabilityPipelinesResponse' # auth_names auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] = opts.merge( :operation => :get_usage_observability_pipelines, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type, :api_version => "V2" ) data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsageMeteringAPI#get_usage_observability_pipelines\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |