Class: Azure::CostManagement::Mgmt::V2019_03_01_preview::Models::ExternalBillingAccountDefinitionListResult
- Inherits:
-
Object
- Object
- Azure::CostManagement::Mgmt::V2019_03_01_preview::Models::ExternalBillingAccountDefinitionListResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01-preview/generated/azure_mgmt_cost_management/models/external_billing_account_definition_list_result.rb
Overview
Result of listing ExternalBillingAccount definitions. It contains a list of available ExternalBillingAccount definitions in the scope provided.
Instance Attribute Summary collapse
-
#value ⇒ Array<ExternalBillingAccountDefinition>
ExternalBillingAccount definitions.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExternalBillingAccountDefinitionListResult class as Ruby Hash.
Instance Attribute Details
#value ⇒ Array<ExternalBillingAccountDefinition>
ExternalBillingAccount definitions.
18 19 20 |
# File 'lib/2019-03-01-preview/generated/azure_mgmt_cost_management/models/external_billing_account_definition_list_result.rb', line 18 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for ExternalBillingAccountDefinitionListResult class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 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 |
# File 'lib/2019-03-01-preview/generated/azure_mgmt_cost_management/models/external_billing_account_definition_list_result.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExternalBillingAccountDefinitionListResult', type: { name: 'Composite', class_name: 'ExternalBillingAccountDefinitionListResult', model_properties: { value: { client_side_validation: true, required: false, read_only: true, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ExternalBillingAccountDefinitionElementType', type: { name: 'Composite', class_name: 'ExternalBillingAccountDefinition' } } } } } } } end |