Class: Azure::Storage::Mgmt::V2020_08_01_preview::Models::Endpoints

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb

Overview

The URIs that are used to perform a retrieval of a public blob, queue, table, web or dfs object.

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/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 17

def blob
  @blob
end

#dfsString

Returns Gets the dfs endpoint.

Returns:

  • (String)

    Gets the dfs endpoint.



32
33
34
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 32

def dfs
  @dfs
end

#fileString

Returns Gets the file endpoint.

Returns:

  • (String)

    Gets the file endpoint.



26
27
28
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 26

def file
  @file
end

#internet_endpointsStorageAccountInternetEndpoints

storage endpoints

Returns:



40
41
42
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 40

def internet_endpoints
  @internet_endpoints
end

#microsoft_endpointsStorageAccountMicrosoftEndpoints

storage endpoints.

Returns:



36
37
38
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 36

def microsoft_endpoints
  @microsoft_endpoints
end

#queueString

Returns Gets the queue endpoint.

Returns:

  • (String)

    Gets the queue endpoint.



20
21
22
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 20

def queue
  @queue
end

#tableString

Returns Gets the table endpoint.

Returns:

  • (String)

    Gets the table endpoint.



23
24
25
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 23

def table
  @table
end

#webString

Returns Gets the web endpoint.

Returns:

  • (String)

    Gets the web endpoint.



29
30
31
# File 'lib/2020-08-01-preview/generated/azure_mgmt_storage/models/endpoints.rb', line 29

def web
  @web
end

Class Method Details

.mapperObject

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



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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# 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