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
12 changes: 12 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137240,6 +137240,12 @@ paths:
name: tags
schema:
type: string
- description: Free-form search query using AND/OR/NOT operators, wildcards, and parentheses. When provided, takes precedence over the `tags` parameter.
example: "(client_team:networks OR client_team:platform) AND server_service:hucklebuck"
in: query
name: query
schema:
type: string
- description: The number of connections to be returned. The maximum value is 7500. The default is 100.
in: query
name: limit
Expand Down Expand Up @@ -137301,6 +137307,12 @@ paths:
name: tags
schema:
type: string
- description: Free-form search query using AND/OR/NOT operators, wildcards, and parentheses. When provided, takes precedence over the `tags` parameter.
example: "(client_team:networks OR client_team:platform) AND server_service:hucklebuck"
in: query
name: query
schema:
type: string
- description: The number of aggregated DNS entries to be returned. The maximum value is 7500. The default is 100.
in: query
name: limit
Expand Down
2 changes: 2 additions & 0 deletions features/scenarios_model_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3941,13 +3941,15 @@
"to" => "Integer",
"group_by" => "String",
"tags" => "String",
"query" => "String",
"limit" => "Integer",
},
"v2.GetAggregatedDns" => {
"from" => "Integer",
"to" => "Integer",
"group_by" => "String",
"tags" => "String",
"query" => "String",
"limit" => "Integer",
},
"v2.DeleteScopesRestriction" => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def get_aggregated_connections(opts = {})
# @option opts [Integer] :to Unix timestamp (number of seconds since epoch) of the end of the query window. If not provided, the end of the query window is the current time. If neither `from` nor `to` are provided, the query window is `[now - 15m, now]`.
# @option opts [String] :group_by Comma-separated list of fields to group connections by. The maximum number of group_by(s) is 10.
# @option opts [String] :tags Comma-separated list of tags to filter connections by.
# @option opts [String] :query Free-form search query using AND/OR/NOT operators, wildcards, and parentheses. When provided, takes precedence over the `tags` parameter.
# @option opts [Integer] :limit The number of connections to be returned. The maximum value is 7500. The default is 100.
# @return [Array<(SingleAggregatedConnectionResponseArray, Integer, Hash)>] SingleAggregatedConnectionResponseArray data, response status code and response headers
def get_aggregated_connections_with_http_info(opts = {})
Expand All @@ -62,6 +63,7 @@ def get_aggregated_connections_with_http_info(opts = {})
query_params[:'to'] = opts[:'to'] if !opts[:'to'].nil?
query_params[:'group_by'] = opts[:'group_by'] if !opts[:'group_by'].nil?
query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?

# header parameters
Expand Down Expand Up @@ -116,6 +118,7 @@ def get_aggregated_dns(opts = {})
# @option opts [Integer] :to Unix timestamp (number of seconds since epoch) of the end of the query window. If not provided, the end of the query window is the current time. If neither `from` nor `to` are provided, the query window is `[now - 15m, now]`.
# @option opts [String] :group_by Comma-separated list of fields to group DNS traffic by. The server side defaults to `network.dns_query` if unspecified. `server_ungrouped` may be used if groups are not desired. The maximum number of group_by(s) is 10.
# @option opts [String] :tags Comma-separated list of tags to filter DNS traffic by.
# @option opts [String] :query Free-form search query using AND/OR/NOT operators, wildcards, and parentheses. When provided, takes precedence over the `tags` parameter.
# @option opts [Integer] :limit The number of aggregated DNS entries to be returned. The maximum value is 7500. The default is 100.
# @return [Array<(SingleAggregatedDnsResponseArray, Integer, Hash)>] SingleAggregatedDnsResponseArray data, response status code and response headers
def get_aggregated_dns_with_http_info(opts = {})
Expand All @@ -138,6 +141,7 @@ def get_aggregated_dns_with_http_info(opts = {})
query_params[:'to'] = opts[:'to'] if !opts[:'to'].nil?
query_params[:'group_by'] = opts[:'group_by'] if !opts[:'group_by'].nil?
query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?

# header parameters
Expand Down
Loading