alexbj75-food-recipe-collector-app

Namespace

alexbj75-food-recipe-collector-app

Description:
  • Effortlessly collect and organize all your favorite recipes with our powerful app. Paste any recipe URL, let our backend do the heavy lifting, and enjoy a unified, easy-to-navigate view. Delight in hassle-free culinary exploration today!

Author:

Methods

(async, static) createAlexbj75FoodRecipeCollectorAppInstance(context, body) → {Alexbj75FoodRecipeCollectorApp}

Description:
  • Create a new Food Recipe Collector instance

Example
import { Context } from '@osaas/client-core';
import { createAlexbj75FoodRecipeCollectorAppInstance } from '@osaas/client-services';

const ctx = new Context();
const body: Alexbj75FoodRecipeCollectorAppConfig = { name: 'myinstance', ... };
const instance = await createAlexbj75FoodRecipeCollectorAppInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body Alexbj75FoodRecipeCollectorAppConfig

Service instance configuration

Returns:
  • Service instance
Type
Alexbj75FoodRecipeCollectorApp

(async, static) getAlexbj75FoodRecipeCollectorAppInstance(context, name) → {Alexbj75FoodRecipeCollectorApp}

Description:
  • Get a Food Recipe Collector instance

Example
import { Context } from '@osaas/client-core';
import { getAlexbj75FoodRecipeCollectorAppInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getAlexbj75FoodRecipeCollectorAppInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the application to be retrieved

Returns:
  • Service instance
Type
Alexbj75FoodRecipeCollectorApp

(async, static) removeAlexbj75FoodRecipeCollectorAppInstance(context, name)

Description:
  • Remove a Food Recipe Collector instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the application to be removed