Questions tagged [ibm-cloud-functions]

IBM Cloud Functions (based on Apache OpenWhisk) is a Function-as-a-Service (FaaS) platform which executes functions in response to incoming events. Use when having doubts regarding the use of the service.

IBM Cloud Functions (based on Apache OpenWhisk) is a Function-as-a-Service (FaaS) platform which executes functions in response to incoming events and costs nothing when not in use. It is one of the examples of servless architecture currently on market.

180 questions
0
votes
1 answer

How to specify timeout setting for IBM Cloud Functions action in manifest?

I am trying to deploy an action for IBM Cloud Functions using a manifest file. I know that it is possible to change the value for the timeout setting using --timeout LIMIT in the CLI. How can it be done in the manifest file?
data_henrik
  • 16,724
  • 2
  • 28
  • 49
0
votes
1 answer

Creating public action does not add to sequence

I am a new user following this tutorial provided by IBM. I am up to this step: For Cloudant Instance, select Input your own credentials and fill in the following fields with the credentials information captured for your cloudant service: Username,…
Ben Hogan
  • 55
  • 5
0
votes
0 answers

IBM Cloud Functions - Python Actions

I'm learning how to use Serverless Functions, I'm working trying to connect a Watson assistant through webhooks using a python action that is processing a small dataset, I'm still struggling to succeed on it. I’ve done my coding on Jupyter…
0
votes
1 answer

not able to get result json from ibm cloud function action through docker java run time

I am trying to run Java standalone app as docker image in IBM Cloud function. Java Code : import com.google.gson.JsonObject; public class Hello { public static JsonObject main(JsonObject args) { String name = "stranger"; if…
Kumar
  • 955
  • 5
  • 20
  • 50
0
votes
2 answers

IBM watson Integration with twilio

I am trying to integrate IBM Watson bot with twilio, whatsapp using IBM cloud functions using Nodejs. I followed the following blog to come up with this code…
user3432888
  • 131
  • 1
  • 1
  • 11
0
votes
1 answer

IBM Cloud Function - Connecting to Kubernetes container

I want to connect from an IBM Cloud Function to a Kubernetes container so that the Cloud Function can query a Rest API that is in a Kubernetes cluster in the same resource group. The Kubernetes Cluster has the public ip disabled, just the private ip…
0
votes
0 answers

Accessing user token in IBM Cloud Functions serverless app secured with OAuth user authentication

I am creating a serverless app using IBM Cloud Functions. My Cloud Functions API is secured with OAuth user authentication using an IBM Cloud App ID service. When a user logs into my app, an access token is generated by this service. I want to…
0
votes
1 answer

Is there a way to copy an ibm cloud function from one account to another

I have a cloud function in an account that might be deleted one day. How can I move/copy this function into another account ?
Ant
  • 277
  • 3
  • 10
0
votes
1 answer

Deploy IBM Cloud Functions to API in IAM namespace using manifest file

When deploying IBM Cloud Functions using a manifest file from the CLI, the API isn't created in the targeted namespace if it's in an IAM-enabled Resource Group, but it works if targeting a Cloud Foundry-based namespace. How can I deploy an API using…
Matthew Rankin
  • 457,139
  • 39
  • 126
  • 163
0
votes
1 answer

Responding to Slack Events API

I am trying to build a slackbot which communicates with Cloud functions. Where there is an event, slack will send out a POST request and I will do some processing and use the incoming webhook to write to slack channel. However I saw a documentation,…
zzamp
  • 31
  • 3
0
votes
1 answer

Keep getting error ""Create Service - Failed to fetch" on IBM Cloud's Db2 page

I've tried, failed, deleted the database and tried again 7 times now and I get this error each time. I'm on the lite plan and taking the IBM Data Science Certification course and I can't get past this part. Any assistance would be greatly…
0
votes
0 answers

Write into CSV file stored in IBM cloud object storage using IBM cloud function

I have to read a CSV file stored in IBM cloud object through IBM cloud function which I did using Nodejs. Now I have to apply any logic to that file and write it back through IBM cloud function. How can I do that (code please)? Underlining is the…
0
votes
0 answers

My function is no sending an email upon receiving params.finalemail

I created a function in IBM cloud functions to calculate nights between two dates and send an email. The nights calculation works perfectly.Watson sends the params.checkout and params.checkin and it returns the total nights. When Watson sends the…
0
votes
1 answer

How to Connect MongoDB with IBM Cloud Function using NodeJS and get the data

I need to know how I can connect IBM Cloud Function with data base MongoDB and getting the data to show it, I try with the https://cloud.ibm.com/functions/ and I use the hello world function, I change in the code but is not working
0
votes
3 answers

How can i install custom third party library in IBM Cloud functions action custom package?

I would like to use LanguageTranslatorV3 and ToneAnalyzerV3 python library in IBM Cloud function custom serverless action. I created one sample Action in IBM Cloud function and try to import the above packages, but It gives me module error. So, How…