Class: Azure::Portal::Mgmt::V2015_08_01_preview::Models::ResourceProviderOperation
- Inherits:
-
Object
- Object
- Azure::Portal::Mgmt::V2015_08_01_preview::Models::ResourceProviderOperation
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-08-01-preview/generated/azure_mgmt_portal/models/resource_provider_operation.rb
Overview
Supported operations of this resource provider.
Instance Attribute Summary collapse
-
#display ⇒ ResourceProviderOperationDisplay
with the operation.
-
#is_data_action ⇒ String
Indicates whether the operation applies to data-plane.
-
#name ⇒ String
provider/resource/operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceProviderOperation class as Ruby Hash.
Instance Attribute Details
#display ⇒ ResourceProviderOperationDisplay
with the operation.
24 25 26 |
# File 'lib/2015-08-01-preview/generated/azure_mgmt_portal/models/resource_provider_operation.rb', line 24 def display @display end |
#is_data_action ⇒ String
Returns Indicates whether the operation applies to data-plane.
20 21 22 |
# File 'lib/2015-08-01-preview/generated/azure_mgmt_portal/models/resource_provider_operation.rb', line 20 def is_data_action @is_data_action end |
#name ⇒ String
provider/resource/operation
17 18 19 |
# File 'lib/2015-08-01-preview/generated/azure_mgmt_portal/models/resource_provider_operation.rb', line 17 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceProviderOperation class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 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 |
# File 'lib/2015-08-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 |