class Azure::PolicyInsights::Mgmt::V2018_07_01_preview::Models::QueryOptions
Additional parameters for a set of operations.
Attributes
@return [String] OData apply expression for aggregations.
@return [String] The $expand query parameter. For example, to expand policyEvaluationDetails, use $expand=policyEvaluationDetails
@return [String] OData filter expression.
@return [DateTime] ISO 8601 formatted timestamp specifying the start time of the interval to query. When not specified, the service uses ($to - 1-day).
@return [String] Ordering expression using OData notation. One or more comma-separated column names with an optional “desc” (the default) or “asc”, e.g. “$orderby=PolicyAssignmentId, ResourceId asc”.
@return [String] Select expression using OData notation. Limits the columns on each record to just those requested, e.g. “$select=PolicyAssignmentId, ResourceId”.
@return [String] Skiptoken is only provided if a previous response returned a partial result as a part of nextLink element.
@return [DateTime] ISO 8601 formatted timestamp specifying the end time of the interval to query. When not specified, the service uses request time.
@return [Integer] Maximum number of records to return.
Private Class Methods
Mapper for QueryOptions
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/query_options.rb, line 57 def self.mapper() { client_side_validation: true, required: false, type: { name: 'Composite', class_name: 'QueryOptions', model_properties: { top: { client_side_validation: true, required: false, type: { name: 'Number' } }, filter: { client_side_validation: true, required: false, type: { name: 'String' } }, order_by: { client_side_validation: true, required: false, type: { name: 'String' } }, select: { client_side_validation: true, required: false, type: { name: 'String' } }, from: { client_side_validation: true, required: false, type: { name: 'DateTime' } }, to: { client_side_validation: true, required: false, type: { name: 'DateTime' } }, apply: { client_side_validation: true, required: false, type: { name: 'String' } }, skip_token: { client_side_validation: true, required: false, type: { name: 'String' } }, expand: { client_side_validation: true, required: false, type: { name: 'String' } } } } } end