Class: Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::RegistryKeyEntity

Inherits:
Entity
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb

Overview

Represents a registry key entity.

Instance Attribute Summary collapse

Attributes inherited from Entity

#id, #name, #type

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRegistryKeyEntity

Returns a new instance of RegistryKeyEntity.



16
17
18
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 16

def initialize
  @kind = "RegistryKey"
end

Instance Attribute Details

#additional_dataObject

will be presented to the user.

Returns:

  • A bag of custom fields that should be part of the entity and



24
25
26
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 24

def additional_data
  @additional_data
end

#friendly_nameString

readable description of the graph item instance. This property is optional and might be system generated.

Returns:

  • (String)

    The graph item display name which is a short humanly



29
30
31
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 29

def friendly_name
  @friendly_name
end

#hiveRegistryHive

values include: ‘HKEY_LOCAL_MACHINE’, ‘HKEY_CLASSES_ROOT’, ‘HKEY_CURRENT_CONFIG’, ‘HKEY_USERS’, ‘HKEY_CURRENT_USER_LOCAL_SETTINGS’, ‘HKEY_PERFORMANCE_DATA’, ‘HKEY_PERFORMANCE_NLSTEXT’, ‘HKEY_PERFORMANCE_TEXT’, ‘HKEY_A’, ‘HKEY_CURRENT_USER’

Returns:

  • (RegistryHive)

    the hive that holds the registry key. Possible



37
38
39
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 37

def hive
  @hive
end

#keyString

Returns The registry key path.

Returns:

  • (String)

    The registry key path.



40
41
42
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 40

def key
  @key
end

#kindObject

Returns the value of attribute kind.



20
21
22
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 20

def kind
  @kind
end

Class Method Details

.mapperObject

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



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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_key_entity.rb', line 47

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RegistryKey',
    type: {
      name: 'Composite',
      class_name: 'RegistryKeyEntity',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'kind',
          type: {
            name: 'String'
          }
        },
        additional_data: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.additionalData',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        friendly_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.friendlyName',
          type: {
            name: 'String'
          }
        },
        hive: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.hive',
          type: {
            name: 'String'
          }
        },
        key: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.key',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end