PHP Classes

File: src/database/data/resource_types.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/database/data/resource_types.php   Download  
File: src/database/data/resource_types.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 4,959 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

return [
    [
       
'name' => 'NoSQL database',
       
'description' => 'A non-relational database for flexible data models, such as key-value, document, or wide-column stores.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Graph database',
       
'description' => 'A database that uses graph structures with nodes and edges to represent and store data, ideal for relationship-heavy data.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Columnar database',
       
'description' => 'A database that stores data in columns rather than rows, optimized for fast query performance in analytical applications.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Relational database',
       
'description' => 'A database based on the relational model, storing data in tables with predefined schemas (e.g., MySQL, PostgreSQL).',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Document database',
       
'description' => 'A type of NoSQL database designed for storing and querying data as JSON-like documents.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Object-oriented database',
       
'description' => 'A database system that represents data as objects, as in object-oriented programming.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Time series database',
       
'description' => 'A database optimized for storing and querying time-stamped or time series data.',
       
'category' => 'database',
       
'icon' => null,
    ],
    [
       
'name' => 'Amazon S3',
       
'description' => 'Amazon Simple Storage Service (S3), a scalable object storage service for the cloud.',
       
'category' => 'Object storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Amazon EFS',
       
'description' => 'Amazon Elastic File System (EFS), a managed NFS file system for AWS.',
       
'category' => 'File storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Amazon FSx',
       
'description' => 'A service to launch and run high-performance file systems in the cloud, supporting various file system types.',
       
'category' => 'File storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Amazon EBS',
       
'description' => 'Amazon Elastic Block Store (EBS), a high-performance block storage service for Amazon EC2.',
       
'category' => 'Block storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Google Cloud Storage',
       
'description' => 'Google Cloud\'s unified object storage service for live and archived data.',
       
'category' => 'Object storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Google Cloud Filestore',
       
'description' => 'A managed file storage service for applications that require a shared filesystem.',
       
'category' => 'File storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Google Cloud Persistent Disk',
       
'description' => 'Durable and high-performance block storage for Google Cloud virtual machines.',
       
'category' => 'Block storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Google Cloud Local SSD',
       
'description' => 'High-performance, ephemeral, local block storage for Google Cloud virtual machines.',
       
'category' => 'Block storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Persistent Volume Claim',
       
'description' => 'A request for storage by a user in Kubernetes, abstracting the underlying storage provider.',
       
'category' => 'storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Object Bucket Claim',
       
'description' => 'A request for an object storage bucket in Kubernetes, abstracting the object storage provider.',
       
'category' => 'Object storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Cloud storage',
       
'description' => 'A general category for data storage in which digital data is stored in logical pools across multiple servers.',
       
'category' => 'storage',
       
'icon' => null,
    ],
    [
       
'name' => 'File storage',
       
'description' => 'A storage methodology where data is stored and organized in a hierarchical structure of files and folders.',
       
'category' => 'storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Block storage',
       
'description' => 'A technology used to store data in volumes known as blocks, common in SANs and cloud environments.',
       
'category' => 'storage',
       
'icon' => null,
    ],
    [
       
'name' => 'Object storage',
       
'description' => 'A data storage architecture that manages data as objects, ideal for unstructured data.',
       
'category' => 'storage',
       
'icon' => null,
    ],
];