Class: Azure::Synapse::Mgmt::V2019_06_01_preview::Models::AvailableRpOperation
- Inherits:
-
Object
- Object
- Azure::Synapse::Mgmt::V2019_06_01_preview::Models::AvailableRpOperation
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb
Overview
An operation that is available in this resource provider
Instance Attribute Summary collapse
-
#display ⇒ AvailableRpOperationDisplayInfo
operation.
-
#is_data_action ⇒ String
Whether this operation is a data action.
-
#name ⇒ String
Operation name.
-
#origin ⇒ String
Operation origin.
-
#service_specification ⇒ OperationMetaServiceSpecification
specification.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AvailableRpOperation class as Ruby Hash.
Instance Attribute Details
#display ⇒ AvailableRpOperationDisplayInfo
operation
17 18 19 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 17 def display @display end |
#is_data_action ⇒ String
Returns Whether this operation is a data action.
20 21 22 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 20 def is_data_action @is_data_action end |
#name ⇒ String
Returns Operation name.
23 24 25 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 23 def name @name end |
#origin ⇒ String
Returns Operation origin.
30 31 32 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 30 def origin @origin end |
#service_specification ⇒ OperationMetaServiceSpecification
specification
27 28 29 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 27 def service_specification @service_specification end |
Class Method Details
.mapper ⇒ Object
Mapper for AvailableRpOperation class as Ruby Hash. This will be used for serialization/deserialization.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AvailableRpOperation', type: { name: 'Composite', class_name: 'AvailableRpOperation', model_properties: { display: { client_side_validation: true, required: false, serialized_name: 'display', type: { name: 'Composite', class_name: 'AvailableRpOperationDisplayInfo' } }, is_data_action: { client_side_validation: true, required: false, serialized_name: 'isDataAction', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, service_specification: { client_side_validation: true, required: false, serialized_name: 'properties.serviceSpecification', type: { name: 'Composite', class_name: 'OperationMetaServiceSpecification' } }, origin: { client_side_validation: true, required: false, serialized_name: 'origin', type: { name: 'String' } } } } } end |