Class: Azure::Portal::Mgmt::V2015_08_01_preview::Models::ResourceProviderOperation

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#displayResourceProviderOperationDisplay

with the operation.

Returns:



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_actionString

Returns Indicates whether the operation applies to data-plane.

Returns:

  • (String)

    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

#nameString

provider/resource/operation

Returns:

  • (String)

    Operation name, in format of



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

.mapperObject

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