[docs]classAzureServiceBus(EventStore):"""Description"""type_name:str=Field(default="AzureServiceBus",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="AzureServiceBus":raiseValueError("must be AzureServiceBus")returnvdef__setattr__(self,name,value):ifnameinAzureServiceBus._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)AZURE_SERVICE_BUS_NAMESPACE_QUALIFIED_NAME:ClassVar[KeywordField]=KeywordField("azureServiceBusNamespaceQualifiedName","azureServiceBusNamespaceQualifiedName")""" Unique name of the AzureServiceBus Namespace in which this asset exists. """AZURE_SERVICE_BUS_NAMESPACE_NAME:ClassVar[KeywordTextField]=KeywordTextField("azureServiceBusNamespaceName","azureServiceBusNamespaceName.keyword","azureServiceBusNamespaceName",)""" Simple name of the AzureServiceBus Namespace in which this asset exists. """AZURE_SERVICE_BUS_SCHEMA_QUALIFIED_NAME:ClassVar[KeywordField]=KeywordField("azureServiceBusSchemaQualifiedName","azureServiceBusSchemaQualifiedName")""" Unique name of the AzureServiceBus Schema in which this asset exists. """_convenience_properties:ClassVar[List[str]]=["azure_service_bus_namespace_qualified_name","azure_service_bus_namespace_name","azure_service_bus_schema_qualified_name",]@propertydefazure_service_bus_namespace_qualified_name(self)->Optional[str]:return(Noneifself.attributesisNoneelseself.attributes.azure_service_bus_namespace_qualified_name)@azure_service_bus_namespace_qualified_name.setterdefazure_service_bus_namespace_qualified_name(self,azure_service_bus_namespace_qualified_name:Optional[str]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.azure_service_bus_namespace_qualified_name=(azure_service_bus_namespace_qualified_name)@propertydefazure_service_bus_namespace_name(self)->Optional[str]:return(Noneifself.attributesisNoneelseself.attributes.azure_service_bus_namespace_name)@azure_service_bus_namespace_name.setterdefazure_service_bus_namespace_name(self,azure_service_bus_namespace_name:Optional[str]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.azure_service_bus_namespace_name=(azure_service_bus_namespace_name)@propertydefazure_service_bus_schema_qualified_name(self)->Optional[str]:return(Noneifself.attributesisNoneelseself.attributes.azure_service_bus_schema_qualified_name)@azure_service_bus_schema_qualified_name.setterdefazure_service_bus_schema_qualified_name(self,azure_service_bus_schema_qualified_name:Optional[str]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.azure_service_bus_schema_qualified_name=(azure_service_bus_schema_qualified_name)classAttributes(EventStore.Attributes):azure_service_bus_namespace_qualified_name:Optional[str]=Field(default=None,description="")azure_service_bus_namespace_name:Optional[str]=Field(default=None,description="")azure_service_bus_schema_qualified_name:Optional[str]=Field(default=None,description="")attributes:AzureServiceBus.Attributes=Field(default_factory=lambda:AzureServiceBus.Attributes(),description=("Map of attributes in the instance and their values. ""The specific keys of this map will vary by type, ""so are described in the sub-types of this schema."),)