0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Azure 製品一覧ページからカテゴリと製品の情報を Perl で取り出してみた

Posted at

下記スクショのように Azure のサービス一覧が掲載されています。ここからカテゴリと製品情報を、手元で一覧化して何かしらのチェック表にしたいとします。

単純作業に没頭したい時はコピペをするのも良いと思います。しかしながらコピペで製品が漏れたり、コピペが中途半端だったりする可能性があるので、機械的に情報を取得してみたいと思います。

今回は、強力な正規表現を備えている Perl を利用して、Azure 製品一覧ページからカテゴリと製品の情報を、割と少なめのコーディングで取り出してみました。

Azure 製品一覧ページからカテゴリと製品の情報を確認

azure-service-lists-01.png

HTML の分析

カテゴリの HTML を確認

html
<h2 class="h4 "> AI + 機械学習 </h2>

製品情報の HTML を確認

html
<h3 class="h5 "> <a data-bi-cn="AI Anomaly Detector" data-bi-ecn="AI Anomaly Detector" data-bi-ct="link" data-bi-pa="body" data-bi-bhvr="0" data-bi-tags="{&#34;BiLinkName&#34;:&#34;anomalyDetector&#34;}" class=" bg-transparent" data-target="https://azure.microsoft.com/ja-jp/products/ai-services/ai-anomaly-detector/" aria-label="AI Anomaly Detector" target="_self" href="https://azure.microsoft.com/ja-jp/products/ai-services/ai-anomaly-detector/"> AI Anomaly Detector </a> </h3> <div data-oc-token-text> <p>異常検出機能を簡単にアプリに追加できます。</p>

上記のような HTML が 一行に複数記載されています。

HTML から該当部分を抽出する Perl コード

azure-service-lists.pl
#!/usr/bin/perl

foreach my $line (<STDIN>) {
    if ($line =~ /<h2 class="h4 "> (.+?) <\/h2>/) {
        print "$1\n";
    }
    while ($line =~ /<h3 class="h5 "> <a .+? href="(.+?)"> (.+?) <\/a> <\/h3> <div .+?> <p>(.+?)<\/p>/g) {
        print "$2,$3,$1\n";
    }
}

.+? というが、良い感じに該当部分を抜き出してくれます。また、一行に該当する箇所が複数あったら while ループで抜き出すように、正規表現の一番後ろに g を付けています。

Perl コードを実行

bash
curl https://azure.microsoft.com/ja-jp/products/ | perl azure-service-lists.pl > azure-list.csv

出力結果

azure-list.csv
AI + 機械学習
AI Anomaly Detector,異常検出機能を簡単にアプリに追加できます。,https://azure.microsoft.com/ja-jp/products/ai-services/ai-anomaly-detector/
Language Understanding (LUIS),ユーザーからのコマンドを理解する方法をアプリに教えることができます。,https://azure.microsoft.com/ja-jp/products/ai-services/conversational-language-understanding/
Azure OpenAI Service,高度なコーディングと言語のモデルをさまざまなユース ケースに適用できます。,https://azure.microsoft.com/ja-jp/products/ai-services/openai-service/
Azure AI Studio,生成 AI ソリューションとカスタム コパイロットを開発するためのプラットフォーム。,https://azure.microsoft.com/ja-jp/products/ai-studio
Azure Operator 通話保護,インテリジェントな AI ソリューションを使用して、潜在的な不正や電話詐欺から消費者を保護しましょう。,https://azure.microsoft.com/ja-jp/products/operator-call-protection
Microsoft Copilot for Security,生成 AI 搭載のアシスタントで、AI のスピードとスケールで守りましょう。,https://www.microsoft.com/ja-jp/security/business/ai-machine-learning/microsoft-security-copilot
分析
Azure Analysis Services,エンタープライズグレードの &quot;サービスとしての分析エンジン&quot; です。,https://azure.microsoft.com/ja-jp/products/analysis-services/
Azure Data Explorer,高速かつスケーラビリティの高いデータ探索サービスです。,https://azure.microsoft.com/ja-jp/products/data-explorer/
Azure Data Factory,エンタープライズ スケールのハイブリッド データ統合を簡単に実現できます。,https://azure.microsoft.com/ja-jp/products/data-factory/
Azure Data Lake Storage,高パフォーマンス分析のためのスケーラブルで安全なデータ レイクです。,https://azure.microsoft.com/ja-jp/products/storage/data-lake-storage/
Azure Data Share,ビッグ データを外部組織と共有するためのシンプルかつ安全なサービスです。,https://azure.microsoft.com/ja-jp/products/data-share/
Azure Databricks,AI の設計に Apache Spark™ ベースの分析を利用できます。,https://azure.microsoft.com/ja-jp/products/databricks/
Azure Stream Analytics,高速移動するストリーミング データをリアルタイムで分析できます。,https://azure.microsoft.com/ja-jp/products/stream-analytics/
Azure Synapse Analytics,無制限の分析が可能であり、圧倒的な速さで分析情報を得ることができます。,https://azure.microsoft.com/ja-jp/products/synapse-analytics/
Data Catalog,お客様のエンタープライズ データ アセットからより多くの価値を引き出します。,https://azure.microsoft.com/ja-jp/products/data-catalog/
Data Lake Analytics,ビッグ データを簡単にする分散分析サービスです。,https://azure.microsoft.com/ja-jp/products/data-lake-analytics/
Event Hubs,数百万ものデバイスから利用統計情報を受け取ることができます。,https://azure.microsoft.com/ja-jp/products/event-hubs/
HDInsight,クラウド Hadoop、Spark、R Server、HBase、Storm クラスターをプロビジョニングできます。,https://azure.microsoft.com/ja-jp/products/hdinsight/
Power BI Embedded,ホワイト ラベル Power BI を利用して、傑出した顧客向けダッシュボードと分析をお客様自身のアプリケーションの中ですばやく簡単に提供できます。,https://azure.microsoft.com/ja-jp/products/power-bi-embedded/
Microsoft Graph データ接続 ᴾᴿᴱⱽᴵᴱᵂ,選択された Microsoft 365 の生産性データセットを Azure テナントにコピーできるように設計された、安全で高スループットのコネクタ。,https://azure.microsoft.com/ja-jp/products/graph-data-connect/
Azure Chaos Studio,フォールト インジェクションにより停止やその他の障害をシミュレートすることで、アプリケーションの復元力を向上させることができます。,https://azure.microsoft.com/ja-jp/products/chaos-studio/
Microsoft Fabric,あらゆるデータソースと 分析サービスを、AI を搭載した単一のプラットフォーム上で接続することで、誰もがデータとインサイトにアクセスし、管理し、それに基づいて行動できるようになります。,https://www.microsoft.com/ja-jp/microsoft-fabric
Microsoft Purview,データ資産のガバナンス、保護、管理を実現できます。,https://azure.microsoft.com/ja-jp/products/purview/
Azure Kubernetes Service (AKS) 上の Azure HDInsight ᴾᴿᴱⱽᴵᴱᵂ,オープンソースの分析ワークロードをデプロイし、クラウドでのコンテナー管理を簡素化できます。,https://azure.microsoft.com/ja-jp/products/hdinsight-on-aks/
Azure Operator Insights,データ サイロをなくして、大規模なデータセットから分析やビジネスのインサイトを引き出すことができます。,https://azure.microsoft.com/ja-jp/products/operator-insights/
コンピューティング
App Service,Web とモバイル向けのパワフルなクラウド アプリをすばやく作成できます。,https://azure.microsoft.com/ja-jp/products/app-service/
Azure CycleCloud,任意のスケールの HPC およびビッグ コンピューティングのクラスターを作成、管理、運用、最適化できます。,https://go.microsoft.com/fwlink/?linkid=2212456&clcid=0x411
Azure Quantum,選りすぐりの多様な最新の量子ハードウェア、ソフトウェア、ソリューションを今すぐ試すことができます。,https://azure.microsoft.com/ja-jp/products/quantum/
Azure Spot Virtual Machines,割り込み可能なワークロードを実行するために、未使用のコンピューティング容量を大幅な割引価格でプロビジョニングできます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/spot/
Azure Spring Apps,Microsoft と VMware から提供されるフル マネージド サービスを使用して Spring Boot アプリケーションをビルドしてデプロイすることができます。,https://azure.microsoft.com/ja-jp/products/spring-apps/
Azure VMware Solution,VMware のワークロードを Azure 上でネイティブに実行します。,https://azure.microsoft.com/ja-jp/products/azure-vmware/
Batch,クラウド規模でジョブ スケジューリングとコンピューティング管理を行うことができます。,https://azure.microsoft.com/ja-jp/products/batch/
Cloud Services,可用性が高く無限にスケーラブルなクラウド アプリケーションと API を作成できます。,https://azure.microsoft.com/ja-jp/products/cloud-services/
Linux Virtual Machines,Ubuntu、Red Hat などの仮想マシンをプロビジョニングできます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/linux/
Azure Virtual Machines 上の SQL Server,SQL Server のワークロードをクラウドに移行して総保有コスト (TCO) を下げることができます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/sql-server/
Static Web Apps,ソース コードからグローバルな高可用性まで、フルスタック開発が効率化されます。,https://azure.microsoft.com/ja-jp/products/app-service/static/
Virtual Machine Scale Sets,Linux と Windows の VM を管理して数千台にまでスケールアップできます。,https://azure.microsoft.com/ja-jp/products/virtual-machine-scale-sets/
Virtual Machines,Windows と Linux の VM を数秒でプロビジョニングできます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/
Azure Virtual Desktop,安全なリモート デスクトップ エクスペリエンスをどこからでも実現できます。,https://azure.microsoft.com/ja-jp/products/virtual-desktop/
Windows Virtual Machines,SQL Server、SharePoint などのための仮想マシンをプロビジョニングできます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/windows/
Azure Dedicated Host,お客様専用の物理サーバーで Windows と Linux の Azure VM をホストすることができます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/dedicated-host/
Azure VM Image Builder,使いやすいツールでイメージ構築プロセスをシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/image-builder/
Azure Kubernetes Service (AKS),マネージド Kubernetes 上でコンテナーをデプロイしてスケーリングすることができます。,https://azure.microsoft.com/ja-jp/products/kubernetes-service/
Azure Functions,イベントドリブン型のサーバーレス コード関数を実行できます。そのための開発エクスペリエンスがエンドツーエンドで実現します。,https://azure.microsoft.com/ja-jp/products/functions/
Azure Container Instances,ハイパーバイザーを分離してコンテナーを起動することができます。,https://azure.microsoft.com/ja-jp/products/container-instances/
Azure Service Fabric,常時オンのスケーラブルな分散型アプリをデプロイして運用することができます。,https://azure.microsoft.com/ja-jp/products/service-fabric/
Azure モデリングとシミュレーション ワークベンチ,研究とエンジニアリング プロジェクトのための、オンデマンドで安全なコラボレーション ワークスペース。,https://azure.microsoft.com/ja-jp/products/modeling-and-simulation-workbench
Azure Compute Fleet ᴾᴿᴱⱽᴵᴱᵂ,Azure のコンピューティング容量を簡単にプロビジョニングし、大規模に管理できます。,https://go.microsoft.com/fwlink/?linkid=2270035&clcid=0x411
Containers
App Configuration,アプリ構成用の高速でスケーラブルなパラメーター ストレージです。,https://azure.microsoft.com/ja-jp/products/app-configuration/
Azure Kubernetes Service (AKS),マネージド Kubernetes 上でコンテナーをデプロイしてスケーリングすることができます。,https://azure.microsoft.com/ja-jp/products/kubernetes-service/
Azure Kubernetes Fleet Manager ᴾᴿᴱⱽᴵᴱᵂ,Kubernetes クラスターのシームレスな管理を大規模に行うことができます。,https://azure.microsoft.com/ja-jp/products/kubernetes-fleet-manager/
Azure Red Hat OpenShift,マネージド Red Hat OpenShift 上でコンテナーをデプロイしてスケーリングすることができます。,https://azure.microsoft.com/ja-jp/products/openshift/
Azure Container Apps,サーバーレス コンテナーを使用してモダンなアプリとマイクロサービスを構築し、デプロイすることができます。,https://azure.microsoft.com/ja-jp/products/container-apps/
Azure Functions,イベントドリブン型のサーバーレス コード関数を実行できます。そのための開発エクスペリエンスがエンドツーエンドで実現します。,https://azure.microsoft.com/ja-jp/products/functions/
Web App for Containers,コンテナー化された Web アプリを Windows 上と Linux 上で実行できます。,https://azure.microsoft.com/ja-jp/products/app-service/containers/
Azure Container Instances,ハイパーバイザーを分離してコンテナーを起動することができます。,https://azure.microsoft.com/ja-jp/products/container-instances/
Azure Service Fabric,常時オンのスケーラブルな分散型アプリをデプロイして運用することができます。,https://azure.microsoft.com/ja-jp/products/service-fabric/
Azure Container Registry,コンテナー イメージと成果物の構築、保存、保護、レプリケートを行うことができます。,https://azure.microsoft.com/ja-jp/products/container-registry/
Azure Container Storage ᴾᴿᴱⱽᴵᴱᵂ,ステートフル コンテナー アプリケーションのための永続ボリュームを管理します。,https://azure.microsoft.com/ja-jp/products/container-storage/
データベース
Azure Cache for Redis,高スループットで低待機時間のデータ キャッシュを使用してアプリを高速化します。,https://azure.microsoft.com/ja-jp/products/cache/
Azure Cosmos DB,スケーラブルで高パフォーマンスのアプリを構築またはモダン化することができます。,https://azure.microsoft.com/ja-jp/products/cosmos-db/
Azure Data Factory,エンタープライズ スケールのハイブリッド データ統合を簡単に実現できます。,https://azure.microsoft.com/ja-jp/products/data-factory/
Azure Database for MariaDB,エンタープライズ対応のフル マネージド コミュニティ MariaDB を使用してアプリケーションをクラウドにデプロイできます。,https://azure.microsoft.com/ja-jp/products/mariadb/
Azure Database for MySQL,フル マネージドでスケーラブルな MySQL データベースです。,https://azure.microsoft.com/ja-jp/products/mysql/
Azure Database for PostgreSQL,フル マネージド、インテリジェント、およびスケーラブルな PostgreSQL です。,https://azure.microsoft.com/ja-jp/products/postgresql/
Azure Database Migration Service,Azure へのデータ移行を加速できます。,https://azure.microsoft.com/ja-jp/products/database-migration/
Azure SQL,移行、モダン化、イノベーションをモダンな SQL ファミリのクラウド データベース上で行うことができます。,https://azure.microsoft.com/ja-jp/products/azure-sql/
Azure SQL Database,クラウド内のマネージド型でインテリジェントな SQL データベースを使用して、スケーリングするアプリを構築することができます。,https://azure.microsoft.com/ja-jp/products/azure-sql/database/
Azure SQL Edge,Azure Platform 上でプライベートにサービスを利用できます。,https://azure.microsoft.com/ja-jp/products/azure-sql/edge/
Azure SQL Managed Instance,クラウド内のマネージド型で常に最新の SQL インスタンスを使用して SQL Server アプリケーションをモダン化することができます。,https://azure.microsoft.com/ja-jp/products/azure-sql/managed-instance/
Azure Virtual Machines 上の SQL Server,SQL Server のワークロードをクラウドに移行して総保有コスト (TCO) を下げることができます。,https://azure.microsoft.com/ja-jp/products/virtual-machines/sql-server/
Table Storage,半構造化データセットを使用する NoSQL キー/値ストアです。,https://azure.microsoft.com/ja-jp/products/storage/tables/
Azure Managed Instance for Apache Cassandra,クラウド内のマネージド インスタンスを使用して Cassandra データ クラスターをモダン化することができます。,https://azure.microsoft.com/ja-jp/products/managed-instance-apache-cassandra/
Azure confidential ledger,信頼できる実行環境 (TEE) でホストされ、暗号的に検証可能な証拠を基盤とする、改ざん不可能な非構造化データ ストアです。,https://azure.microsoft.com/ja-jp/products/azure-confidential-ledger/
開発者ツール
App Configuration,アプリ構成用の高速でスケーラブルなパラメーター ストレージです。,https://azure.microsoft.com/ja-jp/products/app-configuration/
Azure DevOps,チームがコードを共有し、作業を追跡し、ソフトウェアを出荷するためのサービスです。,https://azure.microsoft.com/ja-jp/products/devops/
Azure DevTest Labs,再利用可能なテンプレートと成果物を使用して環境をすばやく作成できます。,https://azure.microsoft.com/ja-jp/products/devtest-lab/
Azure Pipelines,任意のプラットフォームとクラウドへの継続的ビルド、テスト、デプロイを行うことができます。,https://azure.microsoft.com/ja-jp/products/devops/pipelines/
SDK,必要な SDK とコマンドライン ツールを入手しましょう。,https://azure.microsoft.com/ja-jp/downloads/
Visual Studio,クラウドでアプリを開発するための強力で柔軟な環境です。,https://azure.microsoft.com/ja-jp/products/visual-studio/
Visual Studio Code,クラウド開発用の強力かつ軽量なコード エディターです。,https://azure.microsoft.com/ja-jp/products/visual-studio-code/
Azure Load Testing,高スケール負荷テストを使用してアプリのパフォーマンスを最適化することができます。,https://azure.microsoft.com/ja-jp/products/load-testing/
Microsoft Dev Box,セキュリティで保護された、すぐにコーディングを開始できるワークステーションをクラウド内で使用して開発を効率化することができます。,https://azure.microsoft.com/ja-jp/products/dev-box/
Azure Deployment Environments,プロジェクト ベースのテンプレートを使用してアプリ インフラストラクチャ環境をすばやく作成します。,https://azure.microsoft.com/ja-jp/products/deployment-environments/
Microsoft Playwright Testing,スケーラブルなエンドツーエンドのモダン Web アプリ テスト サービスです。,https://azure.microsoft.com/ja-jp/products/playwright-testing/
Azure Managed Confidential Consortium Framework {CCF} ᴾᴿᴱⱽᴵᴱᵂ,信頼できる共通の情報源を用いてエンタープライズレベルのコンソーシアム型ステートフル サービスと分散型信頼アプリケーションを構築できます,https://azure.microsoft.com/ja-jp/products/managed-ccf
信頼された署名,コード、ドキュメント、アプリケーションなどのフル マネージドのエンドツーエンド署名サービスを使用してアプリケーションをセキュリティ保護できます,https://azure.microsoft.com/ja-jp/products/trusted-signing
DevOps
Azure Artifacts,パッケージを作成し、ホストし、チームで共有することができます。,https://azure.microsoft.com/ja-jp/products/devops/artifacts/
Azure Boards,チームを横断して作業の計画を立て、追跡し、話し合うことができます。,https://azure.microsoft.com/ja-jp/products/devops/boards/
Azure DevOps,チームがコードを共有し、作業を追跡し、ソフトウェアを出荷するためのサービスです。,https://azure.microsoft.com/ja-jp/products/devops/
Azure DevTest Labs,再利用可能なテンプレートと成果物を使用して環境をすばやく作成できます。,https://azure.microsoft.com/ja-jp/products/devtest-lab/
Azure Monitor,お客様のアプリケーション、インフラストラクチャ、ネットワーク全体の監視が可能になります。,https://azure.microsoft.com/ja-jp/products/monitor/
Azure Pipelines,任意のプラットフォームとクラウドへの継続的ビルド、テスト、デプロイを行うことができます。,https://azure.microsoft.com/ja-jp/products/devops/pipelines/
Azure Repos,お客様のプロジェクト専用の、容量無制限のプライベート Git リポジトリをクラウドでホストすることができます。,https://azure.microsoft.com/ja-jp/products/devops/repos/
Azure Test Plans,探索的テスト ツールキットを使用して、自信を持ってテストして出荷することができます。,https://azure.microsoft.com/ja-jp/products/devops/test-plans/
DevOps tool integrations,お気に入りの DevOps ツールを Azure と共に使用することができます。,https://azure.microsoft.com/ja-jp/products/devops-tool-integrations/
Azure Load Testing,高スケール負荷テストを使用してアプリのパフォーマンスを最適化することができます。,https://azure.microsoft.com/ja-jp/products/load-testing/
Azure Managed Grafana,Grafana ダッシュボードをフル マネージド Azure サービスとしてデプロイすることができます。,https://azure.microsoft.com/ja-jp/products/managed-grafana/
Microsoft Dev Box,セキュリティで保護された、すぐにコーディングを開始できるワークステーションをクラウド内で使用して開発を効率化することができます。,https://azure.microsoft.com/ja-jp/products/dev-box/
Azure Deployment Environments,プロジェクト ベースのテンプレートを使用してアプリ インフラストラクチャ環境をすばやく作成します。,https://azure.microsoft.com/ja-jp/products/deployment-environments/
GitHub Advanced Security for Azure DevOps,開始から出荷まで、セキュリティを保ちながら開発することができます。,https://azure.microsoft.com/ja-jp/products/devops/github-advanced-security
Microsoft Playwright Testing,スケーラブルなエンドツーエンドのモダン Web アプリ テスト サービスです。,https://azure.microsoft.com/ja-jp/products/playwright-testing/
ハイブリッド + マルチクラウド
Azure Arc,インフラストラクチャ、アプリ、Azure サービスのセキュリティ保護、開発、運用を、場所を問わず行うことができます。,https://azure.microsoft.com/ja-jp/products/azure-arc/
Azure Database for PostgreSQL,フル マネージド、インテリジェント、およびスケーラブルな PostgreSQL です。,https://azure.microsoft.com/ja-jp/products/postgresql/
Azure DevOps,チームがコードを共有し、作業を追跡し、ソフトウェアを出荷するためのサービスです。,https://azure.microsoft.com/ja-jp/products/devops/
Azure ExpressRoute,Azure への高速で信頼性に優れたプライベート接続を実現します。,https://azure.microsoft.com/ja-jp/products/expressroute/
Azure IoT Edge,クラウドのインテリジェンスと分析をエッジ デバイスまで拡張できます。,https://azure.microsoft.com/ja-jp/products/iot-edge/
Microsoft Sentinel,クラウドネイティブの SIEM とインテリジェントなセキュリティ分析です。,https://azure.microsoft.com/ja-jp/products/microsoft-sentinel/
Azure SQL Database,クラウド内のマネージド型でインテリジェントな SQL データベースを使用して、スケーリングするアプリを構築することができます。,https://azure.microsoft.com/ja-jp/products/azure-sql/database/
Azure SQL Edge,Azure Platform 上でプライベートにサービスを利用できます。,https://azure.microsoft.com/ja-jp/products/azure-sql/edge/
Azure Stack,クラウドの境界を越える革新的なハイブリッド アプリを構築して実行することができます。,https://azure.microsoft.com/ja-jp/products/azure-stack/
Microsoft Defender for Cloud,脅威対策を任意のインフラストラクチャに拡張します。,https://azure.microsoft.com/ja-jp/products/defender-for-cloud/
Azure Stack HCI,実稼働ワークロードとクラウドネイティブ アプリを任意の場所で実行できます。,https://azure.microsoft.com/ja-jp/products/azure-stack/hci/
Azure Stack Hub,Azure Stack Hub は統合ハードウェア システムとして販売され、ソフトウェアは検証済みのハードウェアに事前インストールされています。,https://azure.microsoft.com/ja-jp/products/azure-stack/hub/
Azure Stack Edge,Azure のコンピューティング、ストレージ、インテリジェンスをエッジで利用するための Azure マネージド デバイスです。,https://azure.microsoft.com/ja-jp/products/azure-stack/edge/
Azure Modular Datacenter,完全な、ラグドのデータセンター ソリューションです。,https://azure.microsoft.com/ja-jp/products/azure-modular-datacenter/
Azure Kubernetes Service Edge Essentials,Azure Kubernetes Service Edge Essentials は Azure Kubernetes Service (AKS) のオンプレミス Kubernetes 実装であり、コンテナー化されたアプリケーションの実行を大規模に自動化することができます。,https://azure.microsoft.com/ja-jp/products/kubernetes-service/#overview
Azure Operator Insights,データ サイロをなくして大規模なデータセットからビジネス インサイトを引き出すことができます。,https://azure.microsoft.com/ja-jp/products/operator-insights/
Azure Operator Service Manager,複雑なオペレーター サービスのデプロイ、アップグレード、管理を簡素化します。,https://azure.microsoft.com/ja-jp/products/operator-service-manager/
Azure Operator Nexus,ミッションクリティカルなモバイル ネットワーク アプリケーションのために作られたハイブリッド プラットフォームです。コンテナー化と仮想化の両方のネットワーク機能のデプロイをサポートできます。,https://azure.microsoft.com/ja-jp/products/operator-nexus/
Azure Programmable Connectivity,統一インターフェイスを使用して、複数のオペレーター ネットワーク間でのネットワーク API 管理をグローバルに簡素化できます。,https://azure.microsoft.com/ja-jp/products/programmable-connectivity
ID
Microsoft Entra ID (旧称 Azure AD),オンプレミスのディレクトリを同期してシングル サインオンを実現できます。,https://go.microsoft.com/fwlink/?linkid=2245308&clcid=0x411
Microsoft Entra Domain Services,お客様のドメイン コントローラーをクラウドで管理できます。,https://azure.microsoft.com/ja-jp/products/microsoft-entra-ds
Azure Active Directory B2C,コンシューマーの ID とアクセスの管理をクラウドで行うことができます。,https://azure.microsoft.com/ja-jp/products/active-directory-external-identities
Microsoft Entra 外部 ID,顧客とパートナーのための、どのアプリケーションへのアクセスもパーソナライズしてセキュリティで保護することができます。,https://www.microsoft.com/ja-jp/security/business/identity-access/microsoft-entra-external-id
統合
API Management,API を開発者、パートナー、および従業員に対して安全に、かつ大規模に公開することができます。,https://azure.microsoft.com/ja-jp/products/api-management/
Azure Health Data Services,クラウド内の医療データと保護された医療情報 (PHI) を統合および管理することができます。,https://azure.microsoft.com/ja-jp/products/health-data-services/
Event Grid,信頼性の高いイベント配信を大規模に行うことができます。,https://azure.microsoft.com/ja-jp/products/event-grid/
Logic Apps,データのアクセスと使用をクラウド横断で自動化できます。,https://azure.microsoft.com/ja-jp/products/logic-apps/
Service Bus,プライベートとパブリックのクラウド環境間を接続します。,https://azure.microsoft.com/ja-jp/products/service-bus/
Azure Web PubSub,リアルタイム メッセージング Web アプリケーションを、WebSocket とパブリッシュ/サブスクライブ パターンを使用して簡単に構築できます。,https://azure.microsoft.com/ja-jp/products/web-pubsub/
Microsoft Energy Data Services,お客様のエネルギー データ モダン化とデジタル トランスフォーメーションへの道のりを加速することができます。,https://azure.microsoft.com/ja-jp/products/data-manager-for-energy
Microsoft Azure Data Manager for Agriculture ᴾᴿᴱⱽᴵᴱᵂ,Azure Data Manager for Agriculture は Microsoft インテリジェント データ プラットフォームを拡張するものであり、業種固有のデータ コネクタと機能によって多種多様なソースからの農場データを集めることができるため、組織による高品質のデータセット活用とデジタル アグリカルチャー ソリューションの開発加速が可能になります。,https://azure.microsoft.com/ja-jp/products/data-manager-for-agriculture/
モノのインターネット (IoT)
API Management,API を開発者、パートナー、および従業員に対して安全に、かつ大規模に公開することができます。,https://azure.microsoft.com/ja-jp/products/api-management/
Azure Cosmos DB,スケーラブルで高パフォーマンスのアプリを構築またはモダン化することができます。,https://azure.microsoft.com/ja-jp/products/cosmos-db/
Azure Digital Twins,IoT 空間インテリジェンスを使用して物理的環境のモデルを作成することができます。,https://azure.microsoft.com/ja-jp/products/digital-twins/
Azure IoT Central,概念実証から価値実証に移行することができます。,https://azure.microsoft.com/ja-jp/products/iot-central/
Azure IoT Edge,クラウドのインテリジェンスと分析をエッジ デバイスまで拡張できます。,https://azure.microsoft.com/ja-jp/products/iot-edge/
Azure IoT Hub,何十億もの IoT 資産を接続、監視、管理できます。,https://azure.microsoft.com/ja-jp/products/iot-hub/
Azure IoT Operations,インサイトを解き放ち、インテリジェントなローカル アクションとグローバルな可視性を実現しましょう。Azure Arc により有効化されます。,https://azure.microsoft.com/ja-jp/products/iot-operations
Azure Functions,エンドツーエンドの開発エクスペリエンスを使用して、イベントドリブン型のサーバーレス コード関数を実行できます。,https://azure.microsoft.com/ja-jp/products/functions/
Azure Machine Learning,エンタープライズ グレードのサービスを機械学習ライフサイクル全体に使用できます。,https://azure.microsoft.com/ja-jp/products/machine-learning/
Azure Maps,位置情報データとマッピング ビジュアルをビジネスのアプリケーションとソリューションに追加することができます。,https://azure.microsoft.com/ja-jp/products/azure-maps/
Azure RTOS,組み込み IoT の開発と接続が簡単になります。,https://go.microsoft.com/fwlink/?linkid=2255386&clcid=0x411
Azure Sphere,エッジからクラウドまで、セキュリティで保護されたインテリジェントな IoT デバイスを作成、接続、保守します。,https://azure.microsoft.com/ja-jp/products/azure-sphere/
Azure SQL Edge,Azure Platform 上でプライベートにサービスを利用できます。,https://azure.microsoft.com/ja-jp/products/azure-sql/edge/
Azure Stream Analytics,高速移動するストリーミング データをリアルタイムで分析できます。,https://azure.microsoft.com/ja-jp/products/stream-analytics/
Azure Time Series Insights,IoT データをリアルタイムで視覚化できます。,https://azure.microsoft.com/ja-jp/products/time-series-insights/
Event Grid,信頼性の高い大規模イベント配信。,https://azure.microsoft.com/ja-jp/products/event-grid/
Notification Hubs,任意のプラットフォームへのプッシュ通知を任意のバックエンドから送信できます。,https://azure.microsoft.com/ja-jp/products/notification-hubs/
Windows 10 IoT Core Services,長期 OS サポートと、デバイス更新プログラム管理およびデバイス正常性評価のサービスを利用できます。,https://azure.microsoft.com/ja-jp/products/windows-10-iot-core/
Windows for IoT,世界に通用する開発者ツール、長期サポート、エンタープライズ グレードのセキュリティを使用してインテリジェントなエッジ ソリューションを構築できます。,https://azure.microsoft.com/ja-jp/products/windows-iot/
Logic Apps,データのアクセスと使用をクラウド横断で自動化できます。,https://azure.microsoft.com/ja-jp/products/logic-apps/
管理とガバナンス
Microsoft Copilot for Azure ᴾᴿᴱⱽᴵᴱᵂ,AI コンパニオンを使用して、クラウドからエッジまでの運用と管理を簡素化できます。,https://azure.microsoft.com/ja-jp/products/copilot
Automation,プロセス自動化でクラウド管理をシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/automation/
Azure Advisor,お客様のためにパーソナライズされた Azure のベスト プラクティスを提示するレコメンデーション エンジンです。,https://azure.microsoft.com/ja-jp/products/advisor/
Defender 外部攻撃面管理,Microsoft Defender 外部攻撃面管理 (EASM) を使用すると、インターネットに露出しているすべてのリソースを検出できるので、デジタル エクスペリエンスを安全に守ることができます。,https://azure.microsoft.com/ja-jp/products/defender-external-attack-surface-management/
Azure Backup,バックアップ管理の組み込みによって大規模なデータ保護をシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/backup/
Azure Blueprints ᴾᴿᴱⱽᴵᴱᵂ,ガバナンスされた環境を、反復可能な形で迅速に作成できます。,https://azure.microsoft.com/ja-jp/products/blueprints/
Azure Lighthouse,サービス プロバイダーが顧客の管理を大規模に、かつ正確に行うための力になります。,https://azure.microsoft.com/ja-jp/products/azure-lighthouse/
Azure Managed Applications,クラウド オファリングの管理をシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/managed-applications/
Azure Migrate,移行とモダン化を統合プラットフォームでシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/azure-migrate/
Azure mobile app,お客様の Azure リソースにいつでも、どこからでも常に接続できます。,https://azure.microsoft.com/ja-jp/get-started/azure-portal/mobile-app/
Azure Monitor,お客様のアプリケーション、インフラストラクチャ、ネットワーク全体の監視が可能になります。,https://azure.microsoft.com/ja-jp/products/monitor/
Azure Policy,コーポレート ガバナンスと標準を大規模に実装することができます。,https://azure.microsoft.com/ja-jp/products/azure-policy/
Azure Resource Manager,アプリのリソースの管理方法をシンプルにすることができます。,https://azure.microsoft.com/ja-jp/get-started/azure-portal/resource-manager/
Azure Resource Manager テンプレート,お客様のすべての Azure リソースのための &quot;コードとしてのインフラストラクチャ&quot; を Resource Manager を使用して実現します。,https://azure.microsoft.com/ja-jp/products/arm-templates/
Azure Service Health,Azure サービスの問題がお客様に影響を及ぼしているときに、パーソナライズされたガイダンスとサポートを受けることができます。,https://azure.microsoft.com/ja-jp/get-started/azure-portal/service-health/#overview
Azure Site Recovery,事業継続性を確実にするための、組み込みのディザスター リカバリー サービスです。,https://azure.microsoft.com/ja-jp/products/site-recovery/
Cloud Shell,ブラウザーベースのシェルを使用して Azure の管理を効率化することができます。,https://azure.microsoft.com/ja-jp/get-started/azure-portal/cloud-shell/
Microsoft Cost Management,透明性、正確性、効率性を保ちながらクラウド コストを監視し、割り当て、最適化します。,https://azure.microsoft.com/ja-jp/products/cost-management/
Microsoft Azure portal,すべての Azure 製品を単一の統合コンソールでビルド、管理、監視できます。,https://azure.microsoft.com/ja-jp/get-started/azure-portal/
Network Watcher,ネットワーク パフォーマンスの監視と診断のソリューションです。,https://azure.microsoft.com/ja-jp/products/network-watcher/
Traffic Manager,パフォーマンスと可用性を高めるために着信トラフィックをルーティングします。,https://azure.microsoft.com/ja-jp/products/traffic-manager/
Azure Automanage,労力をかけずにクラウドとオンプレミスのインフラストラクチャを自動化できます。,https://azure.microsoft.com/ja-jp/products/azure-automanage/
Azure Resource Mover,複数のリソースを Azure リージョン間で移動する方法がシンプルになります。,https://azure.microsoft.com/ja-jp/products/resource-mover/
Microsoft Purview,データ資産のガバナンス、保護、管理を実現できます。,https://azure.microsoft.com/ja-jp/products/purview/
Azure Chaos Studio,アプリケーションの回復性を高めるために、障害を発生させて停止をシミュレートします。,https://azure.microsoft.com/ja-jp/products/chaos-studio/
Azure Managed Grafana,Grafana ダッシュボードをフル マネージド Azure サービスとしてデプロイします。,https://azure.microsoft.com/ja-jp/products/managed-grafana/
Update management center ᴾᴿᴱⱽᴵᴱᵂ,更新プログラムとコンプライアンスを大規模かつ一元的に管理できます。,https://azure.microsoft.com/ja-jp/products/azure-update-management-center/
メディア
Azure Media Player,1 つのプレーヤーですべての再生ニーズに対応することができます。,https://azure.microsoft.com/ja-jp/products/media-services/media-player/
Content Delivery Network,グローバル リーチが可能な、高速で信頼性の高いコンテンツ配信ネットワークです。,https://azure.microsoft.com/ja-jp/products/cdn/
Content Protection,AES、PlayReady、Widevine、Fairplay を使用してコンテンツを安全に配信します。,https://azure.microsoft.com/ja-jp/products/media-services/content-protection/
Encoding,スタジオ グレードのエンコードをクラウド規模で行うことができます。,https://azure.microsoft.com/ja-jp/products/media-services/encoding/
Live and On-Demand Streaming,コンテンツをほぼすべてのデバイスに配信でき、スケーリングも可能です。,https://azure.microsoft.com/ja-jp/products/media-services/live-on-demand/
Media Services,ビデオとオーディオのエンコード、保存、ストリーミングを大規模に行うことができます。,https://azure.microsoft.com/ja-jp/products/media-services/
移行
Azure Database Migration Service,Azure へのデータ移行を加速できます。,https://azure.microsoft.com/ja-jp/products/database-migration/
Azure Migrate,移行とモダン化を統合プラットフォームでシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/azure-migrate/
Azure Site Recovery,事業継続性を確実にするための、組み込みのディザスター リカバリー サービスです。,https://azure.microsoft.com/ja-jp/products/site-recovery/
Microsoft Cost Management,透明性、正確性、効率性を保ちながらクラウド コストを監視し、割り当て、最適化します。,https://azure.microsoft.com/ja-jp/products/cost-management/
Azure Data Box,Azure へのデータ転送とエッジ コンピューティングのためのアプライアンスとソリューションです。,https://azure.microsoft.com/ja-jp/products/databox/
複合現実
Remote Rendering,3D コンテンツを物理的世界の中のオブジェクトに自動的にそろえて固定することができます。,https://azure.microsoft.com/ja-jp/products/remote-rendering/
Azure Digital Twins,IoT 空間インテリジェンスを使用して物理環境のモデルを作成する。,https://azure.microsoft.com/ja-jp/products/digital-twins/
モバイル
API Management,API を開発者、パートナー、および従業員に対して安全に、かつ大規模に公開することができます。,https://azure.microsoft.com/ja-jp/products/api-management/
App Configuration,アプリ構成用の高速でスケーラブルなパラメーター ストレージです。,https://azure.microsoft.com/ja-jp/products/app-configuration/
App Service,Web とモバイル向けのパワフルなクラウド アプリをすばやく作成できます。,https://azure.microsoft.com/ja-jp/products/app-service/
Azure AI 検索,アプリ開発向けエンタープライズ スケールの検索。,https://azure.microsoft.com/ja-jp/products/ai-services/ai-search
Azure Maps,位置情報データとマッピング ビジュアルをビジネスのアプリケーションとソリューションに追加することができます。,https://azure.microsoft.com/ja-jp/products/azure-maps/
Azure AI サービス,API と AI サービスで、アプリにコグニティブ機能を追加できます。,https://azure.microsoft.com/ja-jp/products/ai-services/?activetab=pivot:azureopenaiservicetab
App Center,モバイルとデスクトップのアプリの作成、テスト、リリース、監視を行うことができます。,https://azure.microsoft.com/ja-jp/products/app-center/
Azure Communication Services,マルチチャネル コミュニケーション エクスペリエンスを構築することができます。,https://azure.microsoft.com/ja-jp/products/communication-services/
Azure Operator 5G Core,柔軟でスケーラブルな 5G テクノロジ モバイル パケット コアを使用して、ネットワークをモダン化できます。,https://azure.microsoft.com/ja-jp/products/operator-5g-core
Azure Operator 通話保護,インテリジェントな AI ソリューションを使用して、潜在的な不正や電話詐欺から消費者を保護しましょう。,https://azure.microsoft.com/ja-jp/products/operator-call-protection
Notification Hubs,任意のプラットフォームへのプッシュ通知を任意のバックエンドから送信できます。,https://azure.microsoft.com/ja-jp/products/notification-hubs/
ネットワーク
Application Gateway,安全でスケーラブルな高可用性 Web フロント エンドを Azure で構築できます。,https://azure.microsoft.com/ja-jp/products/application-gateway/
Azure Bastion,お客様の仮想マシンへの安全なリモート アクセスを支援するフル マネージド サービスです。,https://azure.microsoft.com/ja-jp/products/azure-bastion/
Azure DDoS Protection,お客様の Azure リソースを DDoS (分散型サービス拒否) 攻撃から保護することができます。,https://azure.microsoft.com/ja-jp/products/ddos-protection/
Azure DNS,お客様の DNS (ドメイン ネーム システム) ドメインを Azure でホストすることができます。,https://azure.microsoft.com/ja-jp/products/dns/
Azure ExpressRoute,Azure への高速で信頼性に優れたプライベート接続を実現します。,https://azure.microsoft.com/ja-jp/products/expressroute/
Azure Firewall,お客様の Azure Virtual Network のリソースをクラウドネイティブのネットワーク セキュリティで保護することができます。,https://azure.microsoft.com/ja-jp/products/azure-firewall/
Azure Orbital Ground Station,宇宙からクラウドへのデータ取り込みをすばやく行うための衛星地上局サービスです。,https://azure.microsoft.com/ja-jp/products/orbital/
Azure Route Server,ネットワーク アプライアンスと Azure 内の仮想ネットワークとの動的なルートの交換が可能になります。,https://azure.microsoft.com/ja-jp/products/route-server/
Azure Private 5G Core,エンタープライズ エッジでのプライベート 5G ネットワークのデプロイと管理をすばやく行うことができます。,https://azure.microsoft.com/ja-jp/products/private-5g-core/
Azure Communications Gateway,通信事業者の固定およびモバイルのネットワークを Microsoft Teams と接続することができます。,https://azure.microsoft.com/ja-jp/products/communications-gateway/
Azure Operator 5G Core,柔軟でスケーラブルな 5G テクノロジ モバイル パケット コアを使用して、ネットワークをモダン化できます。,https://azure.microsoft.com/ja-jp/products/operator-5g-core
Azure Front Door,最適化されたエクスペリエンスをどこからでもユーザーに提供する最新のクラウド CDN。,https://azure.microsoft.com/ja-jp/products/frontdoor/
Azure Network Function Manager,エッジ デバイスに 5G および SD-WAN ネットワーク機能をデプロイするために Azure の管理を拡張できます。,https://azure.microsoft.com/ja-jp/products/azure-network-function-manager/
Azure Virtual Network Manager,Azure の仮想ネットワークを 1 つのウィンドウから一元的に管理できます。,https://azure.microsoft.com/ja-jp/products/virtual-network-manager/
Azure NAT Gateway,信頼性が高く、安全でスケーラブルなインターネットへの送信接続を提供します。,https://azure.microsoft.com/ja-jp/products/azure-nat-gateway
Azure Programmable Connectivity,統一インターフェイスを使用して、複数のオペレーター ネットワーク間でのネットワーク API 管理をグローバルに簡素化できます。,https://azure.microsoft.com/ja-jp/products/programmable-connectivity
Azure Private Link,Azure プラットフォーム上でホストされたサービスへのプライベート アクセス。データは Microsoft のネットワーク上に保持されます。,https://azure.microsoft.com/ja-jp/products/private-link/
Azure Firewall Manager,グローバルに分散した、ソフトウェアで定義された境界のネットワーク セキュリティ ポリシーとルートを一元管理することができます。,https://azure.microsoft.com/ja-jp/products/firewall-manager/
Content Delivery Network,グローバル リーチが可能な、高速で信頼性の高いコンテンツ配信ネットワークです。,https://azure.microsoft.com/ja-jp/products/cdn/
Load Balancer,お客様のアプリの可用性とネットワーク パフォーマンスを高めることができます。,https://azure.microsoft.com/ja-jp/solutions/load-balancing-with-azure/
Network Watcher,ネットワーク パフォーマンスの監視と診断のソリューションです。,https://azure.microsoft.com/ja-jp/products/network-watcher/
Traffic Manager,パフォーマンスと可用性を高めるために着信トラフィックをルーティングします。,https://azure.microsoft.com/ja-jp/products/traffic-manager/
Virtual Network,お客様専用のプライベート ネットワーク基盤をクラウド内に作成することができます。,https://azure.microsoft.com/ja-jp/products/virtual-network/
Virtual WAN,ブランチ間接続を Azure を介して最適化および自動化することができます。,https://azure.microsoft.com/ja-jp/products/virtual-wan/
VPN Gateway,安全なクロスプレミス接続を確立することができます。,https://azure.microsoft.com/ja-jp/products/vpn-gateway/
Web Application Firewall,Web アプリを強力に保護するクラウドネイティブの Web アプリケーション ファイアウォール (WAF) サービスです。,https://azure.microsoft.com/ja-jp/products/web-application-firewall/
セキュリティ
App Configuration,アプリ構成用の高速でスケーラブルなパラメーター ストレージです。,https://azure.microsoft.com/ja-jp/products/app-configuration/
Application Gateway,安全でスケーラブルな高可用性 Web フロント エンドを Azure で構築できます。,https://azure.microsoft.com/ja-jp/products/application-gateway/
Microsoft Entra Domain Services,お客様のドメイン コントローラーをクラウド内で管理します。,https://azure.microsoft.com/ja-jp/products/microsoft-entra-ds
Microsoft Defender for Cloud,マルチクラウドおよびハイブリッドの環境を保護できます。,https://azure.microsoft.com/ja-jp/products/defender-for-cloud/
Defender 外部攻撃面管理,Microsoft Defender 外部攻撃面管理 (EASM) を使用すると、インターネットに露出しているすべてのリソースを検出できるので、デジタル エクスペリエンスを安全に守ることができます。,https://azure.microsoft.com/ja-jp/products/defender-external-attack-surface-management/
Azure Bastion,お客様の仮想マシンへの安全なリモート アクセスを支援するフル マネージド サービスです。,https://azure.microsoft.com/ja-jp/products/azure-bastion/
Azure DDoS Protection,お客様の Azure リソースを DDoS (分散型サービス拒否) 攻撃から保護することができます。,https://azure.microsoft.com/ja-jp/products/ddos-protection/
Azure Dedicated HSM,お客様が使用するハードウェア セキュリティ モジュールをクラウド内で管理することができます。,https://azure.microsoft.com/ja-jp/products/azure-dedicated-hsm/
Azure Firewall,お客様の Azure Virtual Network のリソースをクラウドネイティブのネットワーク セキュリティで保護することができます。,https://azure.microsoft.com/ja-jp/products/azure-firewall/
Azure Firewall Manager,グローバルに分散した、ソフトウェアで定義された境界のネットワーク セキュリティ ポリシーとルートを一元管理することができます。,https://azure.microsoft.com/ja-jp/products/firewall-manager/
Azure Front Door,ユーザーの場所を問わず、最適化されたエクスペリエンスを届けることができるモダンなクラウド CDN です。,https://azure.microsoft.com/ja-jp/products/frontdoor/
Azure Information Protection,お客様の機密情報の保護を、時と場所を問わずさらに強化することができます。,https://www.microsoft.com/ja-jp/security/business/information-protection/microsoft-purview-information-protection
Microsoft Sentinel,クラウドネイティブの SIEM とインテリジェントなセキュリティ分析です。,https://azure.microsoft.com/ja-jp/products/microsoft-sentinel/
Key Vault,キーやその他のシークレットを保護して制御を維持することができます。,https://azure.microsoft.com/ja-jp/products/key-vault/
Azure confidential ledger,信頼できる実行環境 (TEE) でホストされ、暗号的に検証可能な証拠を基盤とする、改ざん不可能な非構造化データ ストアです。,https://azure.microsoft.com/ja-jp/products/azure-confidential-ledger/
VPN Gateway,安全なクロスプレミス接続を確立することができます。,https://azure.microsoft.com/ja-jp/products/vpn-gateway/
Web Application Firewall,Web アプリを強力に保護するクラウドネイティブの Web アプリケーション ファイアウォール (WAF) サービスです。,https://azure.microsoft.com/ja-jp/products/web-application-firewall/
Microsoft Azure Attestation,プラットフォームの信頼性とその内部で実行されるバイナリの整合性をリモートで検証するための統合ソリューションです。,https://azure.microsoft.com/ja-jp/products/azure-attestation/
Microsoft Copilot for Security,生成 AI 搭載のアシスタントを利用して、AI のスピードとスケールで守りましょう。,https://www.microsoft.com/ja-jp/security/business/ai-machine-learning/microsoft-security-copilot
信頼された署名,コード、ドキュメント、アプリケーションなどのフル マネージドのエンドツーエンド署名サービスを使用してアプリケーションをセキュリティ保護できます,https://azure.microsoft.com/ja-jp/products/trusted-signing
Storage
Archive Storage,アクセスの頻度が非常に少ないデータを保存するための、業界随一の価格のサービスです。,https://azure.microsoft.com/ja-jp/products/storage
Avere vFXT for Azure,ハイパフォーマンスの、ファイルベースのワークロードをクラウドで実行することができます。,https://azure.microsoft.com/ja-jp/products/storage/avere-vfxt/
Azure Backup,バックアップ管理の組み込みによって大規模なデータ保護をシンプルにすることができます。,https://azure.microsoft.com/ja-jp/products/backup/
Azure Data Lake Storage,高パフォーマンス分析のためのスケーラブルで安全なデータ レイクです。,https://azure.microsoft.com/ja-jp/products/storage/data-lake-storage/
Azure Data Share,ビッグ データを外部組織と共有するためのシンプルかつ安全なサービスです。,https://azure.microsoft.com/ja-jp/products/data-share/
Azure Files,シンプル、安全、サーバーレスの、エンタープライズグレードのクラウド ファイル共有です。,https://azure.microsoft.com/ja-jp/products/storage/files/
Azure HPC Cache,ハイパフォーマンス コンピューティング (HPC) のためのファイル キャッシュです。,https://azure.microsoft.com/ja-jp/products/hpc-cache/
Azure NetApp Files,NetApp の技術を使用する、エンタープライズグレードの Azure ファイル共有です。,https://azure.microsoft.com/ja-jp/products/netapp/
Azure Blob Storage,大規模なスケーリングも可能な、安全なオブジェクト ストレージです。,https://azure.microsoft.com/ja-jp/products/storage/blobs/
Azure Data Box,Azure へのデータ転送とエッジ コンピューティングのためのアプライアンスとソリューションです。,https://azure.microsoft.com/ja-jp/products/databox/
Azure Disk Storage,ハイパフォーマンスで、きわめて堅牢性の高いブロック ストレージです。,https://azure.microsoft.com/ja-jp/products/storage/disks/
Azure confidential ledger,信頼できる実行環境 (TEE) でホストされる、改ざん不可能な非構造化データ ストアです。暗号的に検証可能な証拠に裏付けられています。,https://azure.microsoft.com/ja-jp/products/azure-confidential-ledger/
Azure Elastic SAN,Elastic SAN は、Azure 上に構築されたクラウドネイティブの記憶域ネットワーク (SAN) サービスです。お客様のオンプレミス SAN と同様に、エンドツーエンドのエクスペリエンスにアクセスできます。,https://azure.microsoft.com/ja-jp/products/storage/elastic-san/
Queue Storage,トラフィックに応じて効果的にアプリをスケーリングすることができます。,https://azure.microsoft.com/ja-jp/products/storage/queues/
ストレージ アカウント,耐久性があり、高可用性で、大規模なスケーリングも可能なクラウド ストレージです。,https://azure.microsoft.com/ja-jp/products/category/storage/
Storage Explorer,Azure Storage のリソースを表示して操作することができます。,https://azure.microsoft.com/ja-jp/products/storage/storage-explorer/
Azure Managed Lustre,Azure Managed Lustre はお客様のハイ パフォーマンス コンピューティング (HPC) ワークロードをクラウドで実行するためのフル マネージド、クラウド ベースの並列ファイル システムです。,https://azure.microsoft.com/ja-jp/products/managed-lustre/
Azure Storage Actions ᴾᴿᴱⱽᴵᴱᵂ,大規模なストレージ データ管理を簡素化,https://azure.microsoft.com/ja-jp/products/storage-actions
仮想デスクトップ インフラストラクチャ
Azure Lab Services,授業、トレーニング、ハッカソン、その他の関連シナリオのためのバーチャル ラボを設定することができます。,https://azure.microsoft.com/ja-jp/products/lab-services/
Azure Virtual Desktop,安全なリモート デスクトップ エクスペリエンスをどこからでも実現できます。,https://azure.microsoft.com/ja-jp/products/virtual-desktop/
Microsoft Dev Box ᴾᴿᴱⱽᴵᴱᵂ,セキュリティで保護された、すぐにコーディングを開始できるワークステーションをクラウド内で使用して開発を効率化することができます。,https://azure.microsoft.com/ja-jp/products/dev-box/
Web
API Management,API を開発者、パートナー、および従業員に対して安全に、かつ大規模に公開することができます。,https://azure.microsoft.com/ja-jp/products/api-management/
App Configuration,アプリ構成用の高速でスケーラブルなパラメーター ストレージです。,https://azure.microsoft.com/ja-jp/products/app-configuration/
App Service,Web とモバイル向けのパワフルなクラウド アプリをすばやく作成できます。,https://azure.microsoft.com/ja-jp/products/app-service/
Azure AI 検索,アプリ開発向けエンタープライズ スケールの検索。,https://azure.microsoft.com/ja-jp/products/ai-services/ai-search
Azure Maps,位置情報データとマッピング ビジュアルをビジネスのアプリケーションとソリューションに追加することができます。,https://azure.microsoft.com/ja-jp/products/azure-maps/
Azure SignalR Service,リアルタイム Web の機能を簡単に追加できます。,https://azure.microsoft.com/ja-jp/products/signalr-service/
Content Delivery Network,グローバル リーチが可能な、高速で信頼性の高いコンテンツ配信ネットワークです。,https://azure.microsoft.com/ja-jp/products/cdn/
Notification Hubs,任意のプラットフォームへのプッシュ通知を任意のバックエンドから送信できます。,https://azure.microsoft.com/ja-jp/products/notification-hubs/
Static Web Apps,ソース コードからグローバルな高可用性まで、フルスタック開発が効率化されます。,https://azure.microsoft.com/ja-jp/products/app-service/static/
Azure Communication Services,マルチチャネル コミュニケーション エクスペリエンスを構築することができます。,https://azure.microsoft.com/ja-jp/products/communication-services/
Azure Web PubSub,リアルタイム メッセージング Web アプリケーションを、WebSocket とパブリッシュ/サブスクライブ パターンを使用して簡単に構築できます。,https://azure.microsoft.com/ja-jp/products/web-pubsub/
Azure Fluid Relay,流動フレームワークを使用してリアルタイムのコラボレーション エクスペリエンスを簡単にお客様のアプリに追加することができます。,https://azure.microsoft.com/ja-jp/products/fluid-relay/
Web App for Containers,コンテナー化された Web アプリを Windows と Linux で実行します。,https://azure.microsoft.com/ja-jp/products/app-service/containers/
Microsoft Playwright Testing,スケーラブルなエンドツーエンドのモダン Web アプリ テスト サービスです。,https://azure.microsoft.com/ja-jp/products/playwright-testing/

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?