class Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::TopicUpdateParameters
Properties of the Topic
update
Attributes
@return [IdentityInfo] Resource
identity information.
@return [Array<InboundIpRule>] This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess
is enabled.
@return [PublicNetworkAccess] This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring <seealso cref=“P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.TopicUpdateParameterProperties.InboundIpRules” />. Possible values include: 'Enabled', 'Disabled'
@return [ResourceSku] The Sku
pricing tier for the topic.
Public Class Methods
Mapper for TopicUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/topic_update_parameters.rb, line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TopicUpdateParameters', type: { name: 'Composite', class_name: 'TopicUpdateParameters', model_properties: { tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'IdentityInfo' } }, public_network_access: { client_side_validation: true, required: false, serialized_name: 'properties.publicNetworkAccess', type: { name: 'String' } }, inbound_ip_rules: { client_side_validation: true, required: false, serialized_name: 'properties.inboundIpRules', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'InboundIpRuleElementType', type: { name: 'Composite', class_name: 'InboundIpRule' } } } }, sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'ResourceSku' } } } } } end