Class: Azure::MobileEngagement::Mgmt::V2014_12_01::Models::ExportTaskParameter

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#container_urlString

Returns:

  • (String)


17
18
19
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb', line 17

def container_url
  @container_url
end

#descriptionString

Returns A description of the export task.

Returns:

  • (String)

    A description of the export task.



20
21
22
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb', line 20

def description
  @description
end

#export_formatExportFormat

include: ‘JsonBlob’, ‘CsvBlob’

Returns:

  • (ExportFormat)

    The format of the exported data. Possible values



24
25
26
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb', line 24

def export_format
  @export_format
end

Class Method Details

.mapperObject

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



31
32
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
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb', line 31

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'exportTaskParameter',
    type: {
      name: 'Composite',
      class_name: 'ExportTaskParameter',
      model_properties: {
        container_url: {
          client_side_validation: true,
          required: true,
          serialized_name: 'containerUrl',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        export_format: {
          client_side_validation: true,
          required: true,
          serialized_name: 'exportFormat',
          type: {
            name: 'Enum',
            module: 'ExportFormat'
          }
        }
      }
    }
  }
end