Class: Azure::Storage::Mgmt::V2021_01_01::Models::StorageAccountInternetEndpoints

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2021-01-01/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#blobString

Returns Gets the blob endpoint.

Returns:

  • (String)

    Gets the blob endpoint.



17
18
19
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb', line 17

def blob
  @blob
end

#dfsString

Returns Gets the dfs endpoint.

Returns:

  • (String)

    Gets the dfs endpoint.



26
27
28
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb', line 26

def dfs
  @dfs
end

#fileString

Returns Gets the file endpoint.

Returns:

  • (String)

    Gets the file endpoint.



20
21
22
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb', line 20

def file
  @file
end

#webString

Returns Gets the web endpoint.

Returns:

  • (String)

    Gets the web endpoint.



23
24
25
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/storage_account_internet_endpoints.rb', line 23

def web
  @web
end

Class Method Details

.mapperObject

Mapper for StorageAccountInternetEndpoints 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
78
79
80
81
# File 'lib/2021-01-01/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