class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::RegistryValueEntity

Represents a registry value entity.

Attributes

additional_data[RW]

@return A bag of custom fields that should be part of the entity and will be presented to the user.

friendly_name[RW]

@return [String] The graph item display name which is a short humanly readable description of the graph item instance. This property is optional and might be system generated.

key_entity_id[RW]

@return [String] The registry key entity id.

kind[RW]
value_data[RW]

@return [String] String formatted representation of the value data.

value_name[RW]

@return [String] The registry value name.

value_type[RW]

@return [RegistryValueKind] Specifies the data types to use when storing values in the registry, or identifies the data type of a value in the registry. Possible values include: 'None', 'Unknown', 'String', 'ExpandString', 'Binary', 'DWord', 'MultiString', 'QWord'

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_value_entity.rb, line 51
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RegistryValue',
    type: {
      name: 'Composite',
      class_name: 'RegistryValueEntity',
      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'
          }
        },
        key_entity_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.keyEntityId',
          type: {
            name: 'String'
          }
        },
        value_data: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.valueData',
          type: {
            name: 'String'
          }
        },
        value_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.valueName',
          type: {
            name: 'String'
          }
        },
        value_type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.valueType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end
new() click to toggle source
# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/registry_value_entity.rb, line 16
def initialize
  @kind = "RegistryValue"
end