Class: Azure::Storage::Mgmt::V2015_06_15::Models::Endpoints
- Inherits:
-
Object
- Object
- Azure::Storage::Mgmt::V2015_06_15::Models::Endpoints
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb
Overview
The URIs that are used to perform a retrieval of a public blob, queue or table object.
Instance Attribute Summary collapse
-
#blob ⇒ String
The blob endpoint.
-
#file ⇒ String
The file endpoint.
-
#queue ⇒ String
The queue endpoint.
-
#table ⇒ String
The table endpoint.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Endpoints class as Ruby Hash.
Instance Attribute Details
#blob ⇒ String
Returns The blob endpoint.
17 18 19 |
# File 'lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb', line 17 def blob @blob end |
#file ⇒ String
Returns The file endpoint.
26 27 28 |
# File 'lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb', line 26 def file @file end |
#queue ⇒ String
Returns The queue endpoint.
20 21 22 |
# File 'lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb', line 20 def queue @queue end |
#table ⇒ String
Returns The table endpoint.
23 24 25 |
# File 'lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb', line 23 def table @table end |
Class Method Details
.mapper ⇒ Object
Mapper for Endpoints class as Ruby Hash. This will be used for serialization/deserialization.
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 69 70 71 72 73 74 75 76 77 |
# File 'lib/2015-06-15/generated/azure_mgmt_storage/models/endpoints.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Endpoints', type: { name: 'Composite', class_name: 'Endpoints', model_properties: { blob: { client_side_validation: true, required: false, serialized_name: 'blob', type: { name: 'String' } }, queue: { client_side_validation: true, required: false, serialized_name: 'queue', type: { name: 'String' } }, table: { client_side_validation: true, required: false, serialized_name: 'table', type: { name: 'String' } }, file: { client_side_validation: true, required: false, serialized_name: 'file', type: { name: 'String' } } } } } end |