How to set "query_cache_size" in Google Cloud SQL - google-cloud-sql

I it possible to configure Googles Cloud SQL?
I need to set my query_cache_size but i donĀ“t now how to access the Settings.

you will not be able to set this variable as it is part of the restrictions for using Google Cloud SQL [1], You will need to contact with Google Cloud Support, for this enter your project in the Developer Console [2], then you will see a "Support" item link on the left menu.
[1] https://cloud.google.com/sql/docs/introduction
[2] https://console.developers.google.com

Related

When creating a device-based access level in Google Access Context Manager, Device Policy attributes not an option via console

I am attempting to follow this tutorial. My end goal is to apply device-based access levels on Identity-Aware Proxy (IAP)-secured resources, specifically App Engine. However, as the documentation states:
In the New Access Level pane, in the Conditions section, click Add attribute and then click Device Policy.
I do not see any Device Policy attribute. See screen shot below...
I believe I have properly enabled Endpoint Verification here. In Google Admin via Devices
-> Mobile and endpoints I can see device info being collected.
My Google Admin account to Google Workspace Enterprise Plus and we have Cloud Identity Premium for GCP.
Any ideas why I am unable to see the Device Policy attributes when creating a new Access Level???
Application and VM protection with device attributes needs to purchase additional paid functions BeyondCorp Enterprise

I cannot find the service in IBM cloud that I am looking for, but I know it is there

I was on this webpage and decided I wanted to sign up for Watson's Text Analytics service.
https://www.ibm.com/demos/live/natural-language-understanding/self-service/home
However, after 20 minutes of searching I am unable to find anything like this in the IBM cloud. I followed the link on the same page to sign up.
Can someone please tell me the name of the service that is displayed in the Natural-Language-Understanding webpage so that I can learn more about it and sign up for it?
thanks,
The link is https://cloud.ibm.com/catalog/services/natural-language-understanding
Generally, you can access IBM Cloud and search any service from the Catalog section

How to integrate IBM Cloud Functions with App ID for authentication?

I have seen the tutorial for starting the cloud functions and creating a guestbook on IBM Cloud, but when trying to connect an App ID it actually requires an application and not a Cloud Functions API.
So how can I connect them? Is there some tutorial somewhere? What needs to be considered?
depending on what you want to do, take a look in https://console.bluemix.net/docs/services/appid/relatedlinks.html#secure.
Specifically one of
Securing your Cloud Functions API
Securing your serverless Cloud Functions mobile backend with App ID
Tutorial: GitHub traffic analytics with Cloud Functions and Cloud Foundry
Cloud Functions supports OAuth 2.0 user authorization out of the box and you can bound your App ID instance directly to it.
Here's a fairly recent tutorial showing the steps:
https://www.ibm.com/cloud/blog/authenticating-users-with-cloud-functions-api-gateway-and-app-id
If you're looking to automatically initiate a new authentication flow as in redirect to the an identity provider where you're user will sign in, you'll have to either add logic to your application using an OIDC SDK (For instance App ID's: https://github.com/ibm-cloud-security/appid-serversdk-nodejs/) or add it manually handle the flow from a set of actions.
If you go the action approach, you'll have to keep in mind that they are ephemeral and can't keep session state, so you'll have to keep secure cookies in the user's browser.

Is it possible to output google search results in IBM Watson Chatbot?

I have created a chatbot with IBM Watson Assistant. But currently I have hardcoded all values in the dialog
e.g : When some user will ask "Who created Computer ?" then in the dialog flow I have written "XYZ created computer".
But suppose the user will ask about some other person and that value is not hardcoded in the dialogs on IBM Watson Assistant then is there any way by which I can provide Google search results?
You can make programmatic calls from within IBM Watson Assistant dialog nodes. Both server-side actions (IBM Cloud Functions) or client side calls (within the app) are supported. That way you can react to such queries as described and could call a search engine, database or somethin else.
This IBM Cloud solution tutorial on how to build a database-driven Slackbot uses server side actions to interact with a Db2 database. Instead of calling out to a database to fetch data, in your example, you would open a request to Google search.
I saw that you tagged it "facebook-apps". If you use Botkit middleware to build an integration with Facebook Messenger, then check out this blog on how to enable actions in the Botkit Middleware for Watson Assistant.

Bluemix API connect configuration

WE have our REST services deployed using bluemix container groups. Can some one tell me how to configure access to these APIs through Bluemix API Connect? I Created product, catalog. Also imported my swagger in catalog. I can see the APIs listed. but not able to access them. Can someone guide?
Since you've already created a product, I'll assume that you've already added your API(s) to that product. If not, do that now.
Once you've done that, look for the Stage menu (the little "Cloud with an up arrow" icon) in the upper-right-hand corner of the product detail page. From the corresponding menu, select the catalog you want to stage the product to.
After that completes successfully, navigate to the API Connect dashboard and click on the catalog to which you just staged the product. At this point, you should see the product and its status will be listed as "Staged."
Click the overflow menu (three dots) on the right-hand side of the product row and select "Publish" from the resulting menu. You can likely accept any default visibility settings. Once that operation completes, the API will now be accessible via the catalog's gateway URL + API base path. (You can find this in the Catalog settings -> Endpoint panel.)
For more information on publishing APIs, see this documentation: https://console.bluemix.net/docs/services/apiconnect/apic_006.html#apic_010
Or if you want to use the CLI: https://www.ibm.com/support/knowledgecenter/en/SSFS6T/com.ibm.apic.toolkit.doc/capim-toolkit-cli-publish-apis.html#concept_nll_3ry_xv__publish_apis
on Bluemix to call your api , you need to "publish" your product to a portal. First of all prepare your Portal:
Go to Dashboard -- > Your Catalog -- > Settings -- > Enable Portal and select Portal-Delegated-User-Registry.
After some time , you will be accessing your portal . Subscribe new user through that portal. Portal GUI is very helpful. You will be able to learn by yourself how to call your API.
Good luck!