Class: Azure::CostManagement::Mgmt::V2018_05_31::Models::ReportConfigDeliveryDestination
- Inherits:
-
Object
- Object
- Azure::CostManagement::Mgmt::V2018_05_31::Models::ReportConfigDeliveryDestination
- 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
-
#container ⇒ String
uploaded.
-
#resource_id ⇒ String
will be delivered.
-
#root_folder_path ⇒ String
uploaded.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ReportConfigDeliveryDestination class as Ruby Hash.
Instance Attribute Details
#container ⇒ String
uploaded.
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_id ⇒ String
will be delivered.
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_path ⇒ String
uploaded.
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
.mapper ⇒ Object
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 |