class Azure::ServiceFabric::Mgmt::V2018_02_01::Models::AvailableOperationDisplay
Operation supported by Service Fabric resource provider
Attributes
description[RW]
@return [String] Operation description
operation[RW]
@return [String] The operation that can be performed.
provider[RW]
@return [String] The name of the provider.
resource[RW]
@return [String] The resource on which the operation is performed
Private Class Methods
mapper()
click to toggle source
Mapper for AvailableOperationDisplay
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-02-01/generated/azure_mgmt_service_fabric/models/available_operation_display.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AvailableOperationDisplay', type: { name: 'Composite', class_name: 'AvailableOperationDisplay', model_properties: { provider: { client_side_validation: true, required: false, serialized_name: 'provider', type: { name: 'String' } }, resource: { client_side_validation: true, required: false, serialized_name: 'resource', type: { name: 'String' } }, operation: { client_side_validation: true, required: false, serialized_name: 'operation', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end