class Azure::Monitor::Mgmt::V2015_04_01::Models::OperationListResult
Result of the request to list Microsoft.Insights operations. It contains a list of operations and a URL link to get the next set of results.
Attributes
next_link[RW]
@return [String] URL to get the next set of operation list results if there are any.
value[RW]
@return [Array<Operation>] List of operations supported by the Microsoft.Insights 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-04-01/generated/azure_mgmt_monitor/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, 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, serialized_name: 'nextLink', type: { name: 'String' } } } } } end