class Azure::Network::Mgmt::V2015_05_01_preview::Models::ExpressRouteServiceProvider

ExpressRouteResourceProvider object

Attributes

id[RW]

@return [String] Gets or sets the ID of the resource.

name[RW]

@return [String] Gets or sets the name of the resource.

properties[RW]

@return [ExpressRouteServiceProviderPropertiesFormat]

type[RW]

@return [String] Gets or sets the type of the resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01-preview/generated/azure_mgmt_network/models/express_route_service_provider.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpressRouteServiceProvider',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteServiceProvider',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'ExpressRouteServiceProviderPropertiesFormat'
          }
        }
      }
    }
  }
end