# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Network::Mgmt::V2016_12_01 module Models # # Contains bgp community information offered in Service Community # resources. # class BGPCommunity include MsRestAzure # @return [String] The region which the service support. e.g. For O365, # region is Global. attr_accessor :service_supported_region # @return [String] The name of the bgp community. e.g. Skype. attr_accessor :community_name # @return [String] The value of the bgp community. For more information: # https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing. attr_accessor :community_value # @return [Array] The prefixes that the bgp community contains. attr_accessor :community_prefixes # # Mapper for BGPCommunity class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BGPCommunity', type: { name: 'Composite', class_name: 'BGPCommunity', model_properties: { service_supported_region: { client_side_validation: true, required: false, serialized_name: 'serviceSupportedRegion', type: { name: 'String' } }, community_name: { client_side_validation: true, required: false, serialized_name: 'communityName', type: { name: 'String' } }, community_value: { client_side_validation: true, required: false, serialized_name: 'communityValue', type: { name: 'String' } }, community_prefixes: { client_side_validation: true, required: false, serialized_name: 'communityPrefixes', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end end end end