Class: Azure::ARM::Authorization::Models::ProviderOperation

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_authorization/models/provider_operation.rb

Overview

Operation

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#descriptionString

Returns The operation description.

Returns:

  • (String)

    The operation description.



22
23
24
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 22

def description
  @description
end

#display_nameString

Returns The operation display name.

Returns:

  • (String)

    The operation display name.



19
20
21
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 19

def display_name
  @display_name
end

#nameString

Returns The operation name.

Returns:

  • (String)

    The operation name.



16
17
18
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 16

def name
  @name
end

#originString

Returns The operation origin.

Returns:

  • (String)

    The operation origin.



25
26
27
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 25

def origin
  @origin
end

#propertiesObject

Returns The operation properties.

Returns:

  • The operation properties.



28
29
30
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 28

def properties
  @properties
end

Class Method Details

.mapperObject

Mapper for ProviderOperation class as Ruby Hash. This will be used for serialization/deserialization.



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
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/generated/azure_mgmt_authorization/models/provider_operation.rb', line 35

def self.mapper()
  {
    required: false,
    serialized_name: 'ProviderOperation',
    type: {
      name: 'Composite',
      class_name: 'ProviderOperation',
      model_properties: {
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        display_name: {
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        description: {
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        origin: {
          required: false,
          serialized_name: 'origin',
          type: {
            name: 'String'
          }
        },
        properties: {
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Object'
          }
        }
      }
    }
  }
end