Enum ConnectorConfigurationKey

    • Enum Constant Detail

      • DESTINATION_DATABASE

        public static final ConnectorConfigurationKey DESTINATION_DATABASE
        Database in which the connector data is stored.
      • DESTINATION_SCHEMA

        public static final ConnectorConfigurationKey DESTINATION_SCHEMA
        Schema in which the connector data is stored.
      • DATA_OWNER_ROLE

        public static final ConnectorConfigurationKey DATA_OWNER_ROLE
        Name of the role, which is the owner of the connector data.
      • OPERATIONAL_WAREHOUSE

        public static final ConnectorConfigurationKey OPERATIONAL_WAREHOUSE
        Operational warehouse used by the connector.
      • GLOBAL_SCHEDULE

        public static final ConnectorConfigurationKey GLOBAL_SCHEDULE
        Global schedule for the connector data ingestion.
      • AGENT_USERNAME

        public static final ConnectorConfigurationKey AGENT_USERNAME
        Username which is used by db connector's agent when connecting with Snowflake.
      • AGENT_ROLE

        public static final ConnectorConfigurationKey AGENT_ROLE
        Role which is used by db connector's agent when connecting with Snowflake.
    • Field Detail

      • ALLOWED_PROPERTY_NAMES

        public static final Collection<String> ALLOWED_PROPERTY_NAMES
        A collection containing names of all allowed connector configuration property keys.
    • Method Detail

      • values

        public static ConnectorConfigurationKey[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ConnectorConfigurationKey c : ConnectorConfigurationKey.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ConnectorConfigurationKey valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getPropertyName

        public String getPropertyName()
        Returns the name of the connector configuration property key.
        Returns:
        name of the connector configuration property key