class Azure::EventGrid::Mgmt::V2020_04_01_preview::Models::PartnerRegistrationUpdateParameters
Properties of the Partner Registration update.
Attributes
logo_uri[RW]
@return [String] URI of the partner logo.
partner_topic_type_description[RW]
@return [String] Description of the partner topic type.
partner_topic_type_display_name[RW]
@return [String] Display name of the partner topic type.
partner_topic_type_name[RW]
@return [String] Name of the partner topic type.
setup_uri[RW]
@return [String] URI of the partner website that can be used by Azure
customers to setup Event Grid integration on an event source.
Public Class Methods
mapper()
click to toggle source
Mapper for PartnerRegistrationUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-04-01-preview/generated/azure_mgmt_event_grid/models/partner_registration_update_parameters.rb, line 50 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PartnerRegistrationUpdateParameters', type: { name: 'Composite', class_name: 'PartnerRegistrationUpdateParameters', 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' } } } }, partner_topic_type_name: { client_side_validation: true, required: false, serialized_name: 'partnerTopicTypeName', type: { name: 'String' } }, partner_topic_type_display_name: { client_side_validation: true, required: false, serialized_name: 'partnerTopicTypeDisplayName', type: { name: 'String' } }, partner_topic_type_description: { client_side_validation: true, required: false, serialized_name: 'partnerTopicTypeDescription', type: { name: 'String' } }, setup_uri: { client_side_validation: true, required: false, serialized_name: 'setupUri', type: { name: 'String' } }, logo_uri: { client_side_validation: true, required: false, serialized_name: 'logoUri', type: { name: 'String' } }, authorized_azure_subscription_ids: { client_side_validation: true, required: false, serialized_name: 'authorizedAzureSubscriptionIds', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end