class Azure::Storage::Mgmt::V2018_11_01::Models::Endpoints
The URIs that are used to perform a retrieval of a public blob, queue, table, web or dfs object.
Attributes
blob[RW]
@return [String] Gets the blob endpoint.
dfs[RW]
@return [String] Gets the dfs endpoint.
file[RW]
@return [String] Gets the file endpoint.
queue[RW]
@return [String] Gets the queue endpoint.
table[RW]
@return [String] Gets the table endpoint.
web[RW]
@return [String] Gets the web endpoint.
Public Class Methods
mapper()
click to toggle source
Mapper for Endpoints class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-11-01/generated/azure_mgmt_storage/models/endpoints.rb, line 38 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, read_only: true, serialized_name: 'blob', type: { name: 'String' } }, queue: { client_side_validation: true, required: false, read_only: true, serialized_name: 'queue', type: { name: 'String' } }, table: { client_side_validation: true, required: false, read_only: true, serialized_name: 'table', type: { name: 'String' } }, file: { client_side_validation: true, required: false, read_only: true, serialized_name: 'file', type: { name: 'String' } }, web: { client_side_validation: true, required: false, read_only: true, serialized_name: 'web', type: { name: 'String' } }, dfs: { client_side_validation: true, required: false, read_only: true, serialized_name: 'dfs', type: { name: 'String' } } } } } end