Class: Azure::CostManagement::Mgmt::V2018_05_31::Models::ReportConfigDeliveryDestination

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_delivery_destination.rb

Overview

The destination information for the delivery of the report.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#containerString

uploaded.

Returns:

  • (String)

    The name of the container where reports will be



21
22
23
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_delivery_destination.rb', line 21

def container
  @container
end

#resource_idString

will be delivered.

Returns:

  • (String)

    The resource id of the storage account where reports



17
18
19
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_delivery_destination.rb', line 17

def resource_id
  @resource_id
end

#root_folder_pathString

uploaded.

Returns:

  • (String)

    The name of the directory where reports will be



25
26
27
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_delivery_destination.rb', line 25

def root_folder_path
  @root_folder_path
end

Class Method Details

.mapperObject

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



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/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_delivery_destination.rb', line 32

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ReportConfigDeliveryDestination',
    type: {
      name: 'Composite',
      class_name: 'ReportConfigDeliveryDestination',
      model_properties: {
        resource_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'resourceId',
          type: {
            name: 'String'
          }
        },
        container: {
          client_side_validation: true,
          required: true,
          serialized_name: 'container',
          type: {
            name: 'String'
          }
        },
        root_folder_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'rootFolderPath',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end