NoSQL/Azure Cosmos DB

[CosmosDB] SDK

개발자_옹이양 2022. 5. 2. 23:03

CosmosDB를 사용하기위한 SDK는?

SDK? 
소프트웨어 개발 키트(영어: Software Development Kit, SDK)는 일반적으로 소프트웨어 기술자가 사용하여 특정한 소프트웨어 꾸러미, 소프트웨어 프레임워크, 하드웨어 플랫폼, 컴퓨터 시스템, 게임기, 운영 체제 등을 위한 응용 프로그램 등을 만들 수 있게 해주는 개발 도구의 집합이다

 

The Microsoft.Azure.Cosmos library is the latest version of the .NET SDK for Azure Cosmos DB SQL API.
(Microsoft.Azure.Cosmos

라이브러리는 Azure Cosmos DB SQL API용 .NET SDK의 최신 버전입니다.)

 

The library is open-source and hosted online on GitHub at azure/azure-cosmos-dotnet-v3. The open-source project conforms to the Microsoft Open Source Code of Conduct and accepts contributions and suggestions from the community.

(이 라이브러리는 오픈 소스이며 GitHub(azure/azure-cosmos-dotnet-v3)에서 온라인으로 호스트됩니다. 오픈 소스 프로젝트는 Microsoft 오픈 소스 사용 규정을 준수하며 커뮤니티의 기여와 제안을 받아들입니다.)

 

The Microsoft.Azure.Cosmos library includes a namespace of the same name with common classes that you will explore later in this module including, but not limited to:
(Microsoft.Azure.Cosmos 라이브러리에는 이 모듈의 후반부에서 살펴볼 공용 클래스와 이름이 같은 네임스페이스가 포함되어 있습니다(다음을 포함하되 이에 국한되지 않음.)

 

Class Description
Microsoft.Azure.Cosmos.CosmosClient Client-side logical representation of an Azure Cosmos DB account and the primary class used for the SDK
(Azure Cosmos DB 계정의 클라이언트 쪽 논리적 표현 및 SDK에 사용되는 기본 클래스)
Microsoft.Azure.Cosmos.Database Logically represents a database client-side and includes common operations for database management
(데이터베이스 클라이언트 쪽을 논리적으로 나타내며 데이터베이스 관리에 대한 일반적인 작업을 포함함)
Microsoft.Azure.Cosmos.Container Logically represents a container client-side and includes common operations for container management
(컨테이너 클라이언트 쪽을 논리적으로 나타내며 컨테이너 관리에 대한 일반적인 작업을 포함함)

 

 

내용 출처