class Azure::DataLakeAnalytics::Mgmt::V2015_10_01_preview::Models::BlobContainer
Azure
Storage blob container information.
Attributes
id[RW]
@return [String] the unique identifier of the blob container.
name[RW]
@return [String] the name of the blob container.
properties[RW]
@return [BlobContainerProperties] the properties of the blob container.
type[RW]
@return [String] the type of the blob container.
Public Class Methods
mapper()
click to toggle source
Mapper for BlobContainer
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-10-01-preview/generated/azure_mgmt_datalake_analytics/models/blob_container.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BlobContainer', type: { name: 'Composite', class_name: 'BlobContainer', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties', type: { name: 'Composite', class_name: 'BlobContainerProperties' } } } } } end