What is Apigee? [closed] - web-services

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
Sounds like a very simple question.
What is Apigee?. I hear people at work saying react.js front end is going to call Apigee.
Could any one point me in the right direction.

Apigee Edge is an API Gateway from Google
You can create a proxy layer for all your apis
to Know more about Apigee
https://docs.apigee.com/api-platform/get-started/get-started

Yes, through apigee you can apply as many policies for your endpoint ( to have it more secure)
For example, OAuth (authentication ), shared policies, fault, error handling, setting quota limits, xmltojson conversion, transformation logics etc.
https://javabelazy.blogspot.com/

This is what I was looking for:-
https://apigee.com/about/cp/what-apigee
https://apigee.com/about/in-the-news/apigee-how-monetise-api
ApiGee is pronounced as ah-pa-gee

Related

Need basic AIOps implementation example for log monitoring in AWS [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 months ago.
Improve this question
AIOps seems like a very interesting topic. I also watched AWS Summit presentation on this.
I have a logging nad monitoring solution where all system and application logs of all EC2 and EKS are forwarded cloudwatch log group.
To get a jump start on AIOps, how can I use AI to predict/preempt incidents?
Just discovered cloudwatch already provides a fair amount of IOps already built in.
"Cloudwatch Anomaly Detection" - this seems to do the trick!
Very nice video on this available here - https://youtu.be/8umIX-pUy3k

Better User authentication?(aws cognito or Oauth2 or okta) [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
We have a requirement for a project and we are planning to use the User management and authentication service of 'Oauth2'.
Our application will be on AWS so we also wanted to check with AWS Cognito.
Could anyone help us decide, which is the better option to go with?
I would proceed as follows:
Build apps in a standards based / portable manner, via certified open source libraries
Start with Cognito and see if it meets your requirements / identify it's limitations. Avoid vendor specific libraries unless there is a good reason.
If you need to switch vendors you will be able to do so quite easily, since your apps will not be locked into AWS
Out of interest I built all of the samples on my Quick Start Page using Cognito. It is a good place to start because it is stable and low cost.
As a rule of thumb, no vendor solution works perfectly - there will always be gaps between what you want and what they provide.

response time API gateway and Lambda [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
I need to build api service that would return response with in milliseconds. I am inclined towards using API gateway powered by Lambda.Say I keep my lambda warm by invoking it every 5 minutes or so. Is it slower to use API gate way powered by lambda instead of traditional web service hosted on ec2? Does any one have any experience on this matter?
Your mileage may vary, but after building a bunch of lambda functions to serve some needs I had, I ended up moving most of them back to EC2 in order to get acceptable performance. IN both cases they still use API gateway in front of them.
I still use Lambda for some functions where super-fast response is not needed, but for me it wasn't fast enough.
You should build a few examples and test yourself however, as I said - you results may be different than mine.

Testing if a web service API is RESTful [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
One of the technical requirements of the software I am working on is to provide a REST web service API.
As a consequence, I am now asked to create a manual or automated test checking if the software provides a REST web service API.
My initial thought is that this is not possible, as REST is not formally defined and is not a protocol. Some might even say that my API is not RESTful.
Is there any way for me to provide such a test?
Given that, as you said, REST is not formally defined, I think you'd need to go to the requirements writer and ask them what satisfies their criteria for being RESTful.

API management/proxy: worth it for UI-consumed API calls/internal API calls? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Are products like Wso2/Apigee and other "api management"/api proxy tools worth using (and do people actually use them) in the following two cases:
API calls that are exclusively called by the UI of web-app
API's consumed by small numbers of systems inside a company i.e. no external users
I know the general use case of these tools is for managing external developers access to API's designed to share data/functionality with the outside.
While some features of api management tools might be irrelevant in the case of UI-called API calls and internal API calls, i am wondering if there may be a value to using them to gather metrics on calls made from the UI or internal users/apps.
Wondering if anyone actually uses api management tools for these purposes.