Class: Azure::ARM::Storage::Models::Endpoints

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_storage/models/endpoints.rb

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#blobString

Returns Gets the blob endpoint.

Returns:

  • (String)

    Gets the blob endpoint.



18
19
20
# File 'lib/generated/azure_mgmt_storage/models/endpoints.rb', line 18

def blob
  @blob
end

#fileString

Returns Gets the file endpoint.

Returns:

  • (String)

    Gets the file endpoint.



27
28
29
# File 'lib/generated/azure_mgmt_storage/models/endpoints.rb', line 27

def file
  @file
end

#queueString

Returns Gets the queue endpoint.

Returns:

  • (String)

    Gets the queue endpoint.



21
22
23
# File 'lib/generated/azure_mgmt_storage/models/endpoints.rb', line 21

def queue
  @queue
end

#tableString

Returns Gets the table endpoint.

Returns:

  • (String)

    Gets the table endpoint.



24
25
26
# File 'lib/generated/azure_mgmt_storage/models/endpoints.rb', line 24

def table
  @table
end

Class Method Details

.mapperObject

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



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
# File 'lib/generated/azure_mgmt_storage/models/endpoints.rb', line 34

def self.mapper()
  {
    required: false,
    serialized_name: 'Endpoints',
    type: {
      name: 'Composite',
      class_name: 'Endpoints',
      model_properties: {
        blob: {
          required: false,
          read_only: true,
          serialized_name: 'blob',
          type: {
            name: 'String'
          }
        },
        queue: {
          required: false,
          read_only: true,
          serialized_name: 'queue',
          type: {
            name: 'String'
          }
        },
        table: {
          required: false,
          read_only: true,
          serialized_name: 'table',
          type: {
            name: 'String'
          }
        },
        file: {
          required: false,
          read_only: true,
          serialized_name: 'file',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end