class Azure::Portal::Mgmt::V2018_10_01_preview::Models::ResourceProviderOperation
Supported operations of this resource provider.
Attributes
display[RW]
@return [ResourceProviderOperationDisplay] Display metadata associated with the operation.
is_data_action[RW]
@return [String] Indicates whether the operation applies to data-plane.
name[RW]
@return [String] Operation name, in format of {provider}/{resource}/{operation}
Public Class Methods
mapper()
click to toggle source
Mapper for ResourceProviderOperation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-10-01-preview/generated/azure_mgmt_portal/models/resource_provider_operation.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceProviderOperation', type: { name: 'Composite', class_name: 'ResourceProviderOperation', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, is_data_action: { client_side_validation: true, required: false, serialized_name: 'isDataAction', type: { name: 'String' } }, display: { client_side_validation: true, required: false, serialized_name: 'display', type: { name: 'Composite', class_name: 'ResourceProviderOperationDisplay' } } } } } end