class Azure::Search::Mgmt::V2015_08_19::Models::OperationListResult
The result of the request to list REST API operations. It contains a list of operations and a URL to get the next set of results.
Attributes
next_link[RW]
@return [String] The URL to get the next set of operation list results, if any.
value[RW]
@return [Array<Operation>] The list of operations supported by the resource provider.
Private Class Methods
mapper()
click to toggle source
Mapper for OperationListResult
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-08-19/generated/azure_mgmt_search/models/operation_list_result.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationListResult', type: { name: 'Composite', class_name: 'OperationListResult', model_properties: { value: { client_side_validation: true, required: false, read_only: true, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OperationElementType', type: { name: 'Composite', class_name: 'Operation' } } } }, next_link: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nextLink', type: { name: 'String' } } } } } end