Sha256: 0a0bb95161b50d6f94f28068408493d1f511527efb6c338005d59331df912c23
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
require 'time' require 'datadog_api_client/v1' # setup authorization DatadogAPIClient::V1.configure do |config| # Configure API key authorization: apiKeyAuth config.api_key['apiKeyAuth'] = ENV["DD_CLIENT_API_KEY"] # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) # config.api_key_prefix['apiKeyAuth'] = 'Bearer' # Configure API key authorization: appKeyAuth config.api_key['appKeyAuth'] = ENV["DD_CLIENT_APP_KEY"] # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil) # config.api_key_prefix['appKeyAuth'] = 'Bearer' end api_instance = DatadogAPIClient::V1::UsageMeteringApi.new opts = { page_size: 789, # Integer | The number of files to return in the response. `[default=60]`. page_number: 789, # Integer | The identifier of the first page to return. This parameter is used for the pagination feature `[default=0]`. sort_dir: DatadogAPIClient::V1::UsageSortDirection::DESC, # UsageSortDirection | The direction to sort by: `[desc, asc]`. sort: DatadogAPIClient::V1::UsageSort::COMPUTED_ON # UsageSort | The field to sort by: `[computed_on, size, start_date, end_date]`. } begin # Get the list of available daily custom reports result = api_instance.get_daily_custom_reports(opts) p result rescue DatadogAPIClient::V1::ApiError => e puts "Error when calling UsageMeteringApi->get_daily_custom_reports: #{e}" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
datadog_api_client-1.0.0.beta.2 | examples/v1/usage-metering/GetDailyCustomReports.rbbeta |