class Azure::Storage::Mgmt::V2020_08_01_preview::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.
internet_endpoints[RW]
@return [StorageAccountInternetEndpoints] Gets the internet routing storage endpoints
microsoft_endpoints[RW]
@return [StorageAccountMicrosoftEndpoints] Gets the microsoft routing storage endpoints.
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/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb, line 47 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' } }, microsoft_endpoints: { client_side_validation: true, required: false, serialized_name: 'microsoftEndpoints', type: { name: 'Composite', class_name: 'StorageAccountMicrosoftEndpoints' } }, internet_endpoints: { client_side_validation: true, required: false, serialized_name: 'internetEndpoints', type: { name: 'Composite', class_name: 'StorageAccountInternetEndpoints' } } } } } end