Skip to content

Commit 4a6cfaf

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a46d06f of spec repo
1 parent 0a5362f commit 4a6cfaf

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114460,6 +114460,11 @@ paths:
114460114460
name: include
114461114461
schema:
114462114462
type: string
114463+
- description: Filter status pages by exact domain prefix match. Returns at most one result.
114464+
in: query
114465+
name: filter[domain_prefix]
114466+
schema:
114467+
type: string
114463114468
responses:
114464114469
"200":
114465114470
content:

features/scenarios_model_mapping.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4043,6 +4043,7 @@
40434043
"page_offset" => "Integer",
40444044
"page_limit" => "Integer",
40454045
"include" => "String",
4046+
"filter_domain_prefix" => "String",
40464047
},
40474048
"v2.CreateStatusPage" => {
40484049
"include" => "String",

lib/datadog_api_client/v2/api/status_pages_api.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,7 @@ def list_status_pages(opts = {})
10331033
# @option opts [Integer] :page_offset Offset to use as the start of the page.
10341034
# @option opts [Integer] :page_limit The number of status pages to return per page.
10351035
# @option opts [String] :include Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user.
1036+
# @option opts [String] :filter_domain_prefix Filter status pages by exact domain prefix match. Returns at most one result.
10361037
# @return [Array<(StatusPageArray, Integer, Hash)>] StatusPageArray data, response status code and response headers
10371038
def list_status_pages_with_http_info(opts = {})
10381039

@@ -1047,6 +1048,7 @@ def list_status_pages_with_http_info(opts = {})
10471048
query_params[:'page[offset]'] = opts[:'page_offset'] if !opts[:'page_offset'].nil?
10481049
query_params[:'page[limit]'] = opts[:'page_limit'] if !opts[:'page_limit'].nil?
10491050
query_params[:'include'] = opts[:'include'] if !opts[:'include'].nil?
1051+
query_params[:'filter[domain_prefix]'] = opts[:'filter_domain_prefix'] if !opts[:'filter_domain_prefix'].nil?
10501052

10511053
# header parameters
10521054
header_params = opts[:header_params] || {}

0 commit comments

Comments
 (0)