class Azure::Storage::Mgmt::V2020_08_01_preview::Models::StorageAccountInternetEndpoints

The URIs that are used to perform a retrieval of a public blob, file, web or dfs object via a internet routing endpoint.

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.

web[RW]

@return [String] Gets the web endpoint.

Public Class Methods

mapper() click to toggle source

Mapper for StorageAccountInternetEndpoints class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-08-01-preview/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageAccountInternetEndpoints',
    type: {
      name: 'Composite',
      class_name: 'StorageAccountInternetEndpoints',
      model_properties: {
        blob: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'blob',
          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