class Azure::ServiceFabric::V6_3_0_9::Models::PropertyBatchDescriptionList

Describes a list of property batch operations to be executed. Either all or none of the operations will be committed.

Attributes

operations[RW]

@return [Array<PropertyBatchOperation>] A list of the property batch operations to be executed.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.3.0.9/generated/azure_service_fabric/models/property_batch_description_list.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PropertyBatchDescriptionList',
    type: {
      name: 'Composite',
      class_name: 'PropertyBatchDescriptionList',
      model_properties: {
        operations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Operations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'PropertyBatchOperationElementType',
                type: {
                  name: 'Composite',
                  polymorphic_discriminator: 'Kind',
                  uber_parent: 'PropertyBatchOperation',
                  class_name: 'PropertyBatchOperation'
                }
            }
          }
        }
      }
    }
  }
end