def get_app_snippet()

in dell_ai/client.py [0:0]


    def get_app_snippet(self, app_id: str, config: List[Dict[str, Any]]) -> str:
        """
        Get a deployment snippet for the specified app with the provided configuration.

        Args:
            app_id: The application ID
            config: List of configuration parameters with helmPath, type, and value

        Returns:
            A string containing the deployment snippet (Helm command)

        Raises:
            ValidationError: If any of the input parameters are invalid
            ResourceNotFoundError: If the application is not found
            APIError: If the API returns an error
        """
        from dell_ai import apps

        return apps.get_app_snippet(self, app_id, config)