What is Apigee Edge | Introduction to Apigee Edge


Apigee Edge – Table of Content

What is Apigee Edge?

Apigee Edge is an API gateway management tool. It was originally founded in 2004  in Santa Clara, California with the name Sonoa Systems and later rebranded as Apigee in 2010. Google has acquired Apigee in the year 2016. Apigee Edge is used for developing and managing APIs. Many websites and applications are connected together with APIs to provide data feeds. The Apigee Edge provides an abstraction for backend service APIs. It mainly offers security, rate limiting, quotas, analytics, and other features for the APIs.

Apigee Edge provides a secure way of access to the backend services with a well-defined API. This API will be easy to consume by any type of application. Even if the backend is changed or data is changed, the API won’t get affected. When applications or app developers access the APIs, they access an API proxy that is created on the Edge. The API proxy acts as a mapping of the HTTP endpoint to the backend service. The Edge will handle the authorization and security to protect the backend services.

Features of Apigee Edge

  • Here are the features of Apigee Edge.
  • Apigee Edge provides a user-friendly platform through which users can design, secure, publish, analyze, monitor, monetize the APIs. 
  • It provides configurable security policies like OAuth, API key verification, JWT, Access control, etc.
  • Versions of APIs are supported at multiple levels. 
  • Message transformation, data parsing, and validation can be done through Edge mediation.
  • Java, JavaScript, Node.js, and Python are the supported languages that Apigee Edge provides for API management.
  • It is a multi-tenant platform for both on-premises and in the cloud. 
  • The updates and fixes can be rolled out quickly.
  • It offers analytics capabilities such as dashboards, custom reports, GeoMaps, etc.

Become a Apigee Certified professional  by learning this HKR Apigee Training!

Components of Apigee Edge

Apigee Edge consists of the below 3 components.

Edge API runtime

This is where APIs are created and consumed. It contains services such as API Gateway, Connectors, Programmability, API First, Security, and Federated runtime. Users can configure API proxies, set up API products, and manage app developers and client apps. It addresses the main concerns that are related to API management. It lets the users add security policies to the API proxies. The behavior of the API proxy can be customized using custom scripts. 

Edge monitoring & analytics

Apigee Edge provides tools to generate reports that show the usage trends of your APIs. When data is passed through the Edge, several types of default information such as URL, user ID, IP are collected. Users can customize this to collect information such as query parameters, headers, portions of a request or response, etc without affecting the API performance. This information will be useful to create reports for latency, error data, and more. All the metrics are presented in a browser-based dashboard. 

Apigee Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning
Edge developer ecosystem

The developer ecosystem provides developer services such as SmartDocs, Self-Service, Customizable portals. It lets the users formalize their relationships with internal and external developers. Users can manage the app developers that use the services. An Edge customer can create a developer portal either in the cloud or on-premises. The app developers can connect to the portal to access API documentation. Edge customers can create two types of portals.

  • Integrated portal – a quick and easy to use developer portal.
  • Drupal-based portal – a fully customizable developer portal.

Flavors of Apigee Edge

Apigee Edge is available in three flavors.

Public cloud

A completely Apigee hosted SAAS version of the environment. Users can build APIs without worrying about the infrastructure.

Apigee hybrid 

APIs can be managed on Google Cloud Platform (GCP), or on-premise, or a mix of both. It lets the users handle both the internal and external APIs with Google Cloud. Users will be able to leverage existing local compliance and governance policies.

Private cloud

Users have to configure their own environment and carry out administrative processes such as installation, upgrade, and maintenance. The private cloud won’t be able to provide all the features offered by the public cloud. 

Want to know more about Apigee, visit here Apigee Tutorial.

Basic terminology

Let’s look at some basic terms that are frequently used in API management.

API

An application programming interface (API) is used to consume data or services from one application to another. APIs make it easy for developers to access and reuse application logic that is built by another developer. For the web APIs, the data will be accessed over the network.

API proxy

It is an abstraction or a facade for one or more APIs on the Edge. Implementing a set of configuration files, policies, and code to utilize some resources is referred to as an API proxy. The API proxies can even be created in a text editor or an IDE. It protects the backend services from code changes by developers. Users can customize the email signature by setting multiple interfaces to the same API.

API basepath and resources

An API consists of a base path and a set of API resources. The base path in an API proxy is compulsory, and the API resource paths are optional. An API management can simply be referred to as a set of URIs. Developers can attach policies and codes to these URIs. Several APIs of an application may share a common base path. 

, others, apigee-edge-description-0, , others, apigee-edge-description-1

Subscribe to our YouTube channel to get new updates..!

API product

API product is a collection of API resources (URIs) with a service plan published at design time. Developers can bundle multiple API products together for monetization to make an API package. One or more API products has an API key that permits an app to consume the API.

API package

It is a bundle of several API products generally associated with a rate plan.

App

An application built with any programming language, technology, or platform is referred to as an app. An app can either be mobile or web that consumes an API. To let the apps consume an API, they have to be registered in the API provider’s organization on Apigee Edge. Once the registration is done, the app will get an API key and secret. The API key should be embedded in the app to authorize API consumption.

Environment

It is the runtime execution for API proxies. To make an API proxy accessible, it should be deployed in an environment. Test and prod are the environments provisioned by default to an organization.

Organization

An organization acts as a container for objects in the Apigee Edge account, such as API proxies, API products, API packages, Apps, and developers. A user should have a user account to work in an organization. A user can have accounts in multiple organizations.

Policy

A policy is a reusable unit of logic that can be executed within an API proxy processing flow. A policy is generally used to transform message formats, masking sensitive data, calling remote services, access control, and more. A policy can be executed based on the context of a request, or content, or response message.

API resource path

The API resource path is a RESTful concept and a URI (uniform resource identifier) that locates the resource path to the resource available. 

Top 30 Frequently Asked Apigee Interview Questions !

Version

It is the term used to define the next edition of a developer-facing API interface. 

Revision

It is a numbered version-controlled package of API Proxies. The API interfaces have versions and the API proxies have revisions.

Tips for API proxy development

Here are some useful tips that will help you while deploying API proxies.

  • Configure a sequence of steps as an API proxy to execute in response to a request. An API proxy typically includes resource paths, an HTTP verb, body requirements, etc. Although it is called an API proxy, it is generally an API.
  • Define the path of processing logic in the flows in Apigee Edge. You can apply logic and behavior in stages of the processing path.
  • You can access the variables that represent the execution state of an API proxy. You can access them from the XML that configures API proxies and policies.
  • You can specify conditions on the API proxy state. Based on the state of the API proxy, you can execute the code conditionally to process the request.
  • You can arrange policies in a sequence of steps within a flow to execute them in order.
  • The errors of an API proxy can be customized by configuring a fault handler. 
  • You can examine the API proxy’s execution flow using a trace tool for debugging and testing. 

Apigee Training

Weekday / Weekend Batches

Conclusion

Organizations want to make the backend resources available on the web to make them accessible for mobile applications and web applications. Apigee Edge makes it easy to visually code, or configure API policies, and customize API behavior. It safeguards your data from threats and other attacks. Users can track live API calls, traffic surges, API traffic info with real-time insights. It also decreases the meantime to diagnosis (MTTD). Apigee Edge provides a seamless customer experience to partners, customers, and application developers. Major companies like Burberry, eBay, Walgreens, Shell, First Data, Live Nation, etc., use Apigee Edge. 

Related Articles: 



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


NetSuite for Dummies – Table of Content

What is NetSuite?

NetSuite provides software and services for companies to manage the business process like financial planning, operations, customer relations, etc. It was established in the year 1998 by Evan Goldberg. NetSuite is mostly suitable for small and medium-sized businesses. It offers consolidated CRM, ERP, e-commerce features, etc. It handles all processes, basic to critical, from a single platform. 

NetSuite is available to set up locally and as well as offered as an online service. We can create any type of complex workflows easily. It can streamline business processes and scale business to new heights. It takes in business unique requirements and creates real-time dashboards with reports, forecasting, etc. It comes with a drag-and-drop feature so that users can customize their homepage according to their needs.

NetSuite can scale effortlessly to meet the growing needs of a company. It offers services for both business-to-consumer and business-to-business companies. With its unique features, it connects full customer-facing capabilities. 

Want to Become a Master in Netsuite? Then visit here to Learn Netsuite Training

Features of NetSuite

The following are the most important features of NetSuite.

Financial management – It makes it easy to access live financial data that links between accounting and compliance management.

Order Management – It improves cash flow, reduces shipping costs, on-time delivery, and can integrate with CRM.

Sales Order and Returns Management – It lets you access the data of scheduling, tracking, approving, and handling returns through visualizations.

Production Management – It enables users to manage global manufacturing operations.

Warehouse and Order Fulfillment – It provides real-time order updates like inbound and outbound logistics and inventory management.

Shared Database – NetSuite consists of different modules that share a common database. 

Top 30 frequently asked Netsuite Interview Questions !

Collaboration – It establishes instant contact via email and also through web service or REST APIs.

Employee Center – The status of employee benefits, organization hierarchy, and vital information can be viewed through a dashboard.

Governance, Risk, and Compliance – It addresses risk issues through automated processes.

Netsuite Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Benefits of NetSuite

Here are some of the main benefits of NetSuite.

  • It is a one-stop solution for all business processes. So the users don’t have to switch between systems.
  • It offers dashboards that are easily customizable and show statistics that are relevant to them.
  • Since it’s available in the cloud, small and medium-sized companies don’t have to worry about setting up the infrastructure.
  • It can scale both horizontally and vertically to grow business.
  • It can be accessed 24/7 from anywhere.
  • It drastically reduces implementation risk.
  • It has increased user adoption across the globe.
  • It strengthens the long-term ownership.
  • It produces faster time to value.
  • NetSuite comes with two large upgrades every year.
  • It is a highly secure platform and helps keep your data safe.

Servers/Products of NetSuite

NetSuite offers various products or services to meet the needs of an organization in various verticals. Here is the list of products,

  • Enterprise Resource Planning (ERP) 
  • Customer Relationship Management (CRM) 
  • Human Capital Management (HCM) 
  • SuiteCommerce 
  • Professional Service Automation (PSA)
  • SuiteSuccess
  • Global Business Management
  • SuiteAnalytics

Related Article: Netsuite ERP modules

Enterprise Resource Planning (ERP) 

NetSuite has a capable ERP solution on the cloud that is suitable for fast-growing companies. It gives a clear view and control of their business. It encompasses several areas of any business, which include project management, order management, inventory, employee management, and accounting. The accounting features include banking, journal entries, revenue recognition, taxes, etc. 

It has planning, budgeting, and forecasting solution that makes the planning process easy. Using NetSuite ERP, companies can streamline their processes, making time for the employees to accelerate growth. It provides real-time visibility into production management processes. It enables companies to take faster and smarter decisions.

ERP Tools, netsuite-for-dummies-description-0, ERP Tools, netsuite-for-dummies-description-1

Subscribe to our YouTube channel to get new updates..!

Customer Relationship Management (CRM) 

NetSuite’s CRM provides a company with a 360-degree view of its customers, which elevates productivity. The flow of information is done seamlessly over the entire customer lifecycle. It delivers exceptional customer experience from lead generation to sales order, fulfillment, support, etc. NetSuite CRM also offers order management, commissions, sales forecasting, etc. It streamlines the lead-to-cash process flow.

The most important feature is forecasting. It can forecast sales which help in improving sales performance. It can manage global sales and services organizations. It combines traditional and modern CRM features to drive more value to the companies. 

Human Capital Management (HCM) 

NetSuite HCM, which is also known as SuitPeople, gives complete control of a company’s HR processes. It streamlines employee information, employee onboarding, payroll, compensations, etc., in a single platform. Employees can request time-off and can monitor the upcoming vacation schedules of the employees. An employee can also recognize a peer for good work. 

SuitPeople offers role-based security through which companies can allow only people up the hierarchy tree to access sensitive information. It makes sure that employees are effective, engaged, and motivated all the time. It can also show the data of workforce management processes in reports.

Related Article: Netsuite Administrator Guide

SuiteCommerce 

SuitCommerce is a unified e-commerce solution for back-office systems. It includes B2C commerce, B2C commerce, and order management, all in a single platform. It helps online businesses to grow to new heights. Companies can create unique and personalized mobile, web, and in-store experiences for their brand that surpass customer expectations. 

Using SuitCommerce, companies can provide personalized cross-channel experiences for customers across all touchpoints. This helps in target marketing and customer service. They can provide a single view of inventory over all the channels through centralized order management.  

Professional Service Automation (PSA)

With NetSuite’s Professional Services Automation solution, a company can manage the complete business process from bid to bill. It comes with numerous features, including project management, resource management, project accounting, billing, timesheet management, expense management, and analytics. These help manage projects, resources, and finances of a company.

It provides visibility into the services of a company. It improves resource utilization, streamlines billing, etc., to drive profits. It elevates resource utilization and ensures on-time project delivery. It enables Omni-business model billing for the services delivered. It provides control over revenue recognition.

Related Article: Netsuite Reporting Tools

SuiteSuccess

SuiteSuccess is a unified solution to the customer engagement model and business optimization methods. It is built to resolve critical challenges that have been a roadblock to a company’s growth. It provides a holistic approach through leading practices, KPIs, and agile methodology to adopt a product. It leads to faster time to value, improves efficiency, and brings customer success. 

Build, engage, consume, and optimize are the four key pillars of SuiteSuccess. The industry-leading best practices are already built into the system. It also provides built-in detailed business flows to specific industries. 

Global Business Management

Global Business Management, which is also known as OneWorld, is a business management platform for companies that manage multinational and multi-subsidiary operations. It improves operational efficiency by providing real-time visibility. Organizations can customize the solution to meet their corporate needs. It mainly focusses on addressing the needs of complex multinational and multi-company organizations.

It streamlines the complete services lifecycle to drive repeat business from existing clients with the help of OneWorld Services Resource Planning (SRP). OneWorld can manage multiple currencies, taxation rules, and reporting across different locations and provides financial consolidation.

[ Related Article: netsuite training ]

Netsuite Training

Weekday / Weekend Batches

SuiteAnalytics

SuiteAnalytics helps customers discover hidden information from their data that helps them in making business decisions. Users can create reports that answer complex questions easily. SuiteAnalytics is designed in such a way that an inexperienced user can perform tasks on complex data. Users can browse through their data, apply filters, and create visualizations on top of it. 

It includes artificial intelligence and machine learning-based capabilities that help the customer in understanding what might happen to their business in the future. It automates routine tasks that enable customers to make smarter and faster decisions.

Related Article: Netsuite Bundle

Conclusion

More than 21,000 customers are using NetSuite to manage their business processes. NetSuite can integrate with third-party applications with the help of an iPaaS solution like DBSync. It provides a customizable connector through which we can connect NetSuite with Salesforce, SkuVault, MySQL, Oracle, etc. The NetSuite comes with a subscription model that companies can use and can pay per use only. Companies can get a bundle of all the modules of NetSuite, or they can just pick the ones that they need and license them. With NetSuite, tailor your business processes to meet the requirements.



Source link