Skip to content

Commit 37fb227

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c55f53a of spec repo
1 parent 86b3627 commit 37fb227

6 files changed

Lines changed: 46 additions & 17 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23207,6 +23207,10 @@ components:
2320723207
description: Shows the average number of Serverless Apps for Azure Web App instances for the current date for all organizations.
2320823208
format: int64
2320923209
type: integer
23210+
serverless_apps_dsm_fargate_tasks_avg:
23211+
description: Shows the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM for the current date for all organizations.
23212+
format: int64
23213+
type: integer
2321023214
serverless_apps_ecs_avg:
2321123215
description: Shows the average number of Serverless Apps for Elastic Container Service for the current date for all organizations.
2321223216
format: int64
@@ -24244,6 +24248,10 @@ components:
2424424248
description: Shows the average number of Serverless Apps for Azure Web App instances for the given date and given org.
2424524249
format: int64
2424624250
type: integer
24251+
serverless_apps_dsm_fargate_tasks_avg:
24252+
description: Shows the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM for the given date and given org.
24253+
format: int64
24254+
type: integer
2424724255
serverless_apps_ecs_avg:
2424824256
description: Shows the average number of Serverless Apps for Elastic Container Service for the given date and given org.
2424924257
format: int64
@@ -25299,6 +25307,10 @@ components:
2529925307
description: Sum of the average number of Serverless Apps for Azure Web App instances in the current month for all organizations.
2530025308
format: int64
2530125309
type: integer
25310+
serverless_apps_dsm_fargate_tasks_avg_sum:
25311+
description: Sum of the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM in the current month for all organizations.
25312+
format: int64
25313+
type: integer
2530225314
serverless_apps_ecs_avg_sum:
2530325315
description: Sum of the average number of Serverless Apps for Elastic Container Service in the current month for all organizations.
2530425316
format: int64

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66681,9 +66681,6 @@ components:
6668166681
filter:
6668266682
description: Filter expression applied to the recommendations.
6668366683
type: string
66684-
scope:
66685-
description: Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both.
66686-
type: string
6668766684
sort:
6668866685
description: Ordered list of sort clauses applied to the result set.
6668966686
items:

lib/datadog_api_client/v1/models/usage_summary_date.rb

Lines changed: 11 additions & 1 deletion
Large diffs are not rendered by default.

lib/datadog_api_client/v1/models/usage_summary_date_org.rb

Lines changed: 11 additions & 1 deletion
Large diffs are not rendered by default.

lib/datadog_api_client/v1/models/usage_summary_response.rb

Lines changed: 11 additions & 1 deletion
Large diffs are not rendered by default.

lib/datadog_api_client/v2/models/recommendations_filter_request.rb

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ class RecommendationsFilterRequest
2424
# Filter expression applied to the recommendations.
2525
attr_accessor :filter
2626

27-
# Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both.
28-
attr_accessor :scope
29-
3027
# Ordered list of sort clauses applied to the result set.
3128
attr_accessor :sort
3229

@@ -40,7 +37,6 @@ class RecommendationsFilterRequest
4037
def self.attribute_map
4138
{
4239
:'filter' => :'filter',
43-
:'scope' => :'scope',
4440
:'sort' => :'sort',
4541
:'view' => :'view'
4642
}
@@ -51,7 +47,6 @@ def self.attribute_map
5147
def self.openapi_types
5248
{
5349
:'filter' => :'String',
54-
:'scope' => :'String',
5550
:'sort' => :'Array<RecommendationsFilterRequestSortItems>',
5651
:'view' => :'String'
5752
}
@@ -79,10 +74,6 @@ def initialize(attributes = {})
7974
self.filter = attributes[:'filter']
8075
end
8176

82-
if attributes.key?(:'scope')
83-
self.scope = attributes[:'scope']
84-
end
85-
8677
if attributes.key?(:'sort')
8778
if (value = attributes[:'sort']).is_a?(Array)
8879
self.sort = value
@@ -121,7 +112,6 @@ def ==(o)
121112
return true if self.equal?(o)
122113
self.class == o.class &&
123114
filter == o.filter &&
124-
scope == o.scope &&
125115
sort == o.sort &&
126116
view == o.view &&
127117
additional_properties == o.additional_properties
@@ -131,7 +121,7 @@ def ==(o)
131121
# @return [Integer] Hash code
132122
# @!visibility private
133123
def hash
134-
[filter, scope, sort, view, additional_properties].hash
124+
[filter, sort, view, additional_properties].hash
135125
end
136126
end
137127
end

0 commit comments

Comments
 (0)