Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114455,6 +114455,11 @@ paths:
schema:
default: 50
type: integer
- description: Filter status pages by exact domain prefix match. Returns at most one result.
in: query
name: filter[domain_prefix]
schema:
type: string
- description: "Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user."
in: query
name: include
Expand Down
1 change: 1 addition & 0 deletions features/scenarios_model_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4042,6 +4042,7 @@
"v2.ListStatusPages" => {
"page_offset" => "Integer",
"page_limit" => "Integer",
"filter_domain_prefix" => "String",
"include" => "String",
},
"v2.CreateStatusPage" => {
Expand Down
2 changes: 2 additions & 0 deletions lib/datadog_api_client/v2/api/status_pages_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,7 @@ def list_status_pages(opts = {})
# @param opts [Hash] the optional parameters
# @option opts [Integer] :page_offset Offset to use as the start of the page.
# @option opts [Integer] :page_limit The number of status pages to return per page.
# @option opts [String] :filter_domain_prefix Filter status pages by exact domain prefix match. Returns at most one result.
# @option opts [String] :include Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user.
# @return [Array<(StatusPageArray, Integer, Hash)>] StatusPageArray data, response status code and response headers
def list_status_pages_with_http_info(opts = {})
Expand All @@ -1046,6 +1047,7 @@ def list_status_pages_with_http_info(opts = {})
query_params = opts[:query_params] || {}
query_params[:'page[offset]'] = opts[:'page_offset'] if !opts[:'page_offset'].nil?
query_params[:'page[limit]'] = opts[:'page_limit'] if !opts[:'page_limit'].nil?
query_params[:'filter[domain_prefix]'] = opts[:'filter_domain_prefix'] if !opts[:'filter_domain_prefix'].nil?
query_params[:'include'] = opts[:'include'] if !opts[:'include'].nil?

# header parameters
Expand Down
Loading