Sha256: 05d02ed6e903a1bbbfaf160d963764f57f4f82c280abfbaeb8bf8d16dd7e767b
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Monitor module Models # # 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. # class OperationListResult include MsRestAzure include MsRest::JSONable # @return [Array<Operation>] List of operations supported by the # Microsoft.Insights provider. attr_accessor :value # @return [String] URL to get the next set of operation list results if # there are any. attr_accessor :next_link # # Mapper for OperationListResult class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'OperationListResult', type: { name: 'Composite', class_name: 'OperationListResult', model_properties: { value: { required: false, serialized_name: 'value', type: { name: 'Sequence', element: { required: false, serialized_name: 'OperationElementType', type: { name: 'Composite', class_name: 'Operation' } } } }, next_link: { required: false, serialized_name: 'nextLink', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_monitor-0.13.0 | lib/generated/azure_mgmt_monitor/models/operation_list_result.rb |