Class: Azure::Security::Mgmt::V2015_06_01_preview::Models::OperationDisplay

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb

Overview

Security operation display

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#descriptionString

Returns The description of the operation.

Returns:

  • (String)

    The description of the operation.



26
27
28
# File 'lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb', line 26

def description
  @description
end

#operationString

Returns The display name of the security operation.

Returns:

  • (String)

    The display name of the security operation.



23
24
25
# File 'lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb', line 23

def operation
  @operation
end

#providerString

Returns The resource provider for the operation.

Returns:

  • (String)

    The resource provider for the operation.



16
17
18
# File 'lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb', line 16

def provider
  @provider
end

#resourceString

to.

Returns:

  • (String)

    The display name of the resource the operation applies



20
21
22
# File 'lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb', line 20

def resource
  @resource
end

Class Method Details

.mapperObject

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



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
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/2015-06-01-preview/generated/azure_mgmt_security/models/operation_display.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OperationDisplay',
    type: {
      name: 'Composite',
      class_name: 'OperationDisplay',
      model_properties: {
        provider: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'provider',
          type: {
            name: 'String'
          }
        },
        resource: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'resource',
          type: {
            name: 'String'
          }
        },
        operation: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'operation',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end