Skip to content

Commit 5d989d9

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4391045 of spec repo
1 parent a7fd5a0 commit 5d989d9

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70025,6 +70025,13 @@ paths:
7002570025
get:
7002670026
description: Get the list of all suppression rules.
7002770027
operationId: ListSecurityMonitoringSuppressions
70028+
parameters:
70029+
- description: Query string.
70030+
in: query
70031+
name: query
70032+
required: false
70033+
schema:
70034+
type: string
7002870035
responses:
7002970036
'200':
7003070037
content:

features/scenarios_model_mapping.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,9 @@
13841384
"security_filter_id" => "String",
13851385
"body" => "SecurityFilterUpdateRequest",
13861386
},
1387+
"v2.ListSecurityMonitoringSuppressions" => {
1388+
"query" => "String",
1389+
},
13871390
"v2.CreateSecurityMonitoringSuppression" => {
13881391
"body" => "SecurityMonitoringSuppressionCreateRequest",
13891392
},

lib/datadog_api_client/v2/api/security_monitoring_api.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3319,6 +3319,7 @@ def list_security_monitoring_suppressions(opts = {})
33193319
# Get the list of all suppression rules.
33203320
#
33213321
# @param opts [Hash] the optional parameters
3322+
# @option opts [String] :query Query string.
33223323
# @return [Array<(SecurityMonitoringSuppressionsResponse, Integer, Hash)>] SecurityMonitoringSuppressionsResponse data, response status code and response headers
33233324
def list_security_monitoring_suppressions_with_http_info(opts = {})
33243325

@@ -3330,6 +3331,7 @@ def list_security_monitoring_suppressions_with_http_info(opts = {})
33303331

33313332
# query parameters
33323333
query_params = opts[:query_params] || {}
3334+
query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
33333335

33343336
# header parameters
33353337
header_params = opts[:header_params] || {}

0 commit comments

Comments
 (0)