Hi guys, I have a question: How to rename an exist...
# ui
f
Hi guys, I have a question: How to rename an existing platform instance?
b
hey Nguyen! I don't believe there's a way to rename a platform instance from the UI at this time. Since platform instance is determined at ingestion time, I would possibly rollback the ingestion that includes that platform instance and rename it when ingesting if you can.
b
im wondering if ingesting an aspect
Copy code
class DataPlatformInstanceClass(_Aspect):
    """The specific instance of the data platform that this entity belongs to"""

    ASPECT_NAME = 'dataPlatformInstance'
    RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.common.DataPlatformInstance")
    def __init__(self,
        platform: str,
        instance: Union[None, str]=None,
    ):
        super().__init__()
        
        self.platform = platform
        self.instance = instance
would make any difference here. but platform instance is also reflected in the urn as well..🤔