class Azure::EventGrid::V2018_01_01::Models::AppConfigurationKeyValueModifiedEventData

Schema of the Data property of an EventGridEvent for an Microsoft.AppConfiguration.KeyValueModified event.

Attributes

etag[RW]

@return [String] The etag representing the new state of the key-value.

key[RW]

@return [String] The key used to identify the key-value that was modified.

label[RW]

@return [String] The label, if any, used to identify the key-value that was modified.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-01-01/generated/azure_event_grid/models/app_configuration_key_value_modified_event_data.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AppConfigurationKeyValueModifiedEventData',
    type: {
      name: 'Composite',
      class_name: 'AppConfigurationKeyValueModifiedEventData',
      model_properties: {
        key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'key',
          type: {
            name: 'String'
          }
        },
        label: {
          client_side_validation: true,
          required: false,
          serialized_name: 'label',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end