이 문서에서는 예약 또는 미래용 예약 요청을 확인하는 방법을 설명합니다. 다른 유형의 예약에 대한 자세한 내용은 프로비저닝 유형을 참조하세요.
예약 또는 미래용 예약 요청을 보면 다음을 수행할 수 있습니다.
예약 설정 보기. 이러한 검토 작업은 예약 세부정보를 확인하고, 요구를 충족하는지 확인하고, 용량을 계획하는 데 도움이 됩니다.
소비 가능한 인스턴스 수 결정. 이러한 확인 작업은 예약된 용량을 소비할 수 있는 Compute Engine 인스턴스 수를 결정하는 데 도움이 됩니다.
제한사항
사용자가 만든 프로젝트에서만 공유 예약 또는 공유 미래용 예약 요청을 볼 수 있습니다.
시작하기 전에
-
아직 인증을 설정하지 않았다면 설정합니다.
인증은 Google Cloud 서비스 및 API에 액세스하기 위해 ID를 확인하는 프로세스입니다.
로컬 개발 환경에서 코드 또는 샘플을 실행하려면 다음 옵션 중 하나를 선택하여 Compute Engine에 인증하면 됩니다.
Select the tab for how you plan to use the samples on this page:
Console
When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.
gcloud
-
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
- Set a default region and zone.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
-
예약 목록 보기:
프로젝트에 대한
compute.reservations.list
권한 -
미래용 예약 요청 목록 보기: 프로젝트에 대한
compute.futureReservations.list
권한 -
예약의 세부정보 보기:
프로젝트에 대한
compute.reservations.get
권한 -
미래용 예약 요청의 세부정보를 보려면 프로젝트에 대한
compute.futureReservations.get
권한이 필요합니다. 프로젝트의 모든 예약 개요를 보려면 예약 목록을 확인합니다.
단일 예약의 전체 세부정보를 보려면 예약의 세부정보를 확인합니다.
Google Cloud 콘솔에서 예약 페이지로 이동합니다.
온디맨드 예약 탭(기본값)에서 테이블에 각 예약이 나열되고, 각 테이블 열에 속성 설명이 표시됩니다.
선택사항: 온디맨드 예약 테이블에서 다음 중 하나 또는 모두를 수행합니다.
예약 보장된 개수를 표시하려면 열 표시 옵션...을 클릭하고 보장된 수 체크박스를 선택한 후 확인을 클릭합니다.
예약 목록을 미세 조정하려면
필터 필드에서 예약을 필터링하려는 속성을 선택합니다.
예약의 세부정보를 보려면 이름 열에서 예약 이름을 클릭합니다. 예약 세부정보를 제공하는 페이지가 열립니다.
예약 목록을 보려면
gcloud compute reservations list
명령어를 사용합니다.gcloud compute reservations list
출력은 다음 예시와 비슷합니다.
NAME: r-01 IN_USE_COUNT: 0 COUNT: 5 ZONE: us-central1-a SHARE_TYPE: LOCAL NAME: r-02 IN_USE_COUNT: 3 COUNT: 10 ZONE: us-central1-f SHARE_TYPE: LOCAL
선택적으로 필터 표현식을 사용하여 예약 목록을 미세 조정하려면
--filter
플래그를 포함합니다.gcloud compute reservations list \ --filter="FILTER_EXPRESSION"
FILTER_EXPRESSION
을 필터 표현식으로 바꿉니다.예약 세부정보를 보려면
gcloud compute reservations describe
명령어를 사용합니다.gcloud compute reservations describe RESERVATION_NAME \ --zone=ZONE
다음을 바꿉니다.
RESERVATION_NAME
: 기존 예약의 이름입니다.ZONE
: 예약이 있는 영역입니다.
출력은 다음 예시와 비슷합니다.
creationTimestamp: '2024-10-11T03:25:23.192-07:00' id: '4488228526648280060' kind: compute#reservation name: r-01 selfLink: https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a/reservations/r-01 shareSettings: shareType: LOCAL specificReservation: assuredCount: '50' count: '50' inUseCount: '25' instanceProperties: machineType: n2-standard-2 specificReservationRequired: false status: READY zone: https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a
예약 목록을 보려면 다음 코드 샘플을 사용하세요.
예약 세부정보를 보려면 다음 코드 샘플을 사용하세요.
예약 목록을 보려면 다음 코드 샘플을 사용하세요.
예약 세부정보를 보려면 다음 코드 샘플을 사용하세요.
예약 목록을 보려면 다음 코드 샘플을 사용하세요.
예약 세부정보를 보려면 다음 코드 샘플을 사용하세요.
예약 목록을 보려면 다음 코드 샘플을 사용하세요.
예약 세부정보를 보려면 다음 코드 샘플을 사용하세요.
예약 목록을 보려면
GET
요청을reservations.list
메서드로 전송합니다.GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/reservations
다음을 바꿉니다.
PROJECT_ID
: 예약을 만든 프로젝트의 ID입니다.ZONE
: 예약이 있는 영역입니다.
출력은 다음 예시와 비슷합니다.
{ "kind": "compute#reservation", "id": "4100668622331754141", "creationTimestamp": "2019-09-27T08:21:14.707-07:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a/reservations/reservation-05", "zone": "https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a", "name": "reservation-05", "specificReservation": { "instanceProperties": { "machineType": "n1-standard-2" }, "count": "100", "inUseCount": "0", "assuredCount": "100" }, "specificReservationRequired": false, "status": "READY", "shareSettings": { "shareType": "LOCAL" } }, { "kind": "compute#reservation", "id": "2533514314332214789", "creationTimestamp": "2019-09-27T08:21:14.707-07:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a/reservations/reservation-04", "zone": "https://www.googleapis.com/compute/v1/projects/my-project/zones/us-central1-a", "name": "reservation-04", "specificReservation": { "instanceProperties": { "machineType": "n1-standard-2", "guestAccelerators": [ { "acceleratorType": "nvidia-tesla-t4", "acceleratorCount": 1 } ], "localSsds": [ { "diskSizeGb": "375", "interface": "SCSI" } ] }, "count": "50", "inUseCount": "25", "assuredCount": "50" }, "specificReservationRequired": false, "status": "READY", "shareSettings": { "shareType": "LOCAL" } }
선택적으로 필터 표현식을 사용하여 예약 목록을 미세 조정하려면
filter
쿼리 파라미터를 포함합니다.GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/reservations?filter=FILTER_EXPRESSION
FILTER_EXPRESSION
을 URL 인코딩 값을 사용하는 필터 표현식으로 바꿉니다.예약 세부정보를 보려면
GET
요청을reservations.get
메서드로 전송합니다.GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/reservations/RESERVATION_NAME
다음을 바꿉니다.
PROJECT_ID
: 예약을 만든 프로젝트의 ID입니다.ZONE
: 예약이 있는 영역입니다.RESERVATION_NAME
: 기존 예약의 이름입니다.
출력은 다음 예시와 비슷합니다.
{ "kind": "compute#reservation", "id": "4488228526648280060", "creationTimestamp": "2024-10-11T03:25:23.192-07:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/davide-experimental/zones/us-central1-a/reservations/r-01", "zone": "https://www.googleapis.com/compute/v1/projects/davide-experimental/zones/us-central1-a", "name": "r-01", "specificReservation": { "instanceProperties": { "machineType": "n2-standard-2" }, "count": "50", "inUseCount": "25", "assuredCount": "50" }, "specificReservationRequired": false, "status": "READY", "shareSettings": { "shareType": "LOCAL" } }
프로젝트에서 모든 미래용 예약 요청의 개요를 보려면 요청 목록을 봅니다.
단일 미래용 예약 요청의 전체 세부정보를 보려면 해당 요청의 세부정보를 봅니다.
Google Cloud 콘솔에서 예약 페이지로 이동합니다.
미래용 예약 탭을 클릭합니다.
표에 각 미래용 예약 요청이 나열되고 각 테이블 열에 속성 설명이 표시됩니다.
선택사항: 요청 목록을 미세 조정하려면
필터 필드에서 요청을 필터링하려는 속성을 선택합니다.요청의 세부정보를 보려면 이름 열에서 요청의 이름을 클릭합니다. 미래용 예약 요청에 대한 세부정보가 포함된 페이지가 열립니다.
미래용 예약 요청 목록을 보려면
gcloud beta compute future-reservations list
명령어를 사용합니다.gcloud beta compute future-reservations list
출력은 다음 예시와 비슷합니다.
NAME: fr-04 TOTAL_COUNT: 100 START_TIME: 2025-07-20T07:00:00Z END_TIME: 2025-08-05T07:00:00Z PROCUREMENT_STATUS: FULFILLED ZONE: us-east1-a NAME: fr-05 TOTAL_COUNT: 10 START_TIME: 2025-07-20T07:00:00Z END_TIME: 2025-12-01T00:00:00Z PROCUREMENT_STATUS: PENDING_APPROVAL ZONE: us-west1-c
선택적으로 필터 표현식을 사용하여 미래용 예약 요청 목록을 미세 조정하려면
--filter
플래그를 포함합니다.gcloud beta compute future-reservations list \ --filter="FILTER_EXPRESSION"
FILTER_EXPRESSION
을 필터 표현식으로 바꿉니다.미래용 예약 요청의 세부정보를 보려면
gcloud beta compute future-reservations describe
명령어를 사용합니다.gcloud beta compute future-reservations describe FUTURE_RESERVATION_NAME \ --zone=ZONE
다음을 바꿉니다.
FUTURE_RESERVATION_NAME
: 기존 미래용 예약 요청의 이름입니다.ZONE
: 미래용 예약 요청이 있는 영역입니다.
출력은 다음 예시와 비슷합니다.
autoCreatedReservationsDeleteTime: '2025-05-02T01:00:00Z' creationTimestamp: '2025-03-23T10:08:31.613-07:00' id: '5212276518668495076' kind: compute#futureReservation name: fr-01 planningStatus: SUBMITTED selfLink: https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a/futureReservations/fr-01 selfLinkWithId: https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a/futureReservations/5212276518668495076 shareSettings: shareType: LOCAL specificSkuProperties: instanceProperties: machineType: n1-standard-64 totalCount: '800' status: existingMatchingUsageInfo: count: '3' timestamp: '2025-03-30T01:00:00Z' lockTime: '2025-03-30T17:09:59.297799Z' procurementStatus: APPROVED timeWindow: endTime: '2025-05-02T01:00:00Z' startTime: '2025-04-30T17:30:00Z' zone: https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a
미래용 예약 요청 목록을 보려면 베타
futureReservations.list
메서드에 대해GET
요청을 수행합니다.GET https://compute.googleapis.com/compute/beta/projects/PROJECT_ID/zones/ZONE/futureReservations
다음을 바꿉니다.
PROJECT_ID
: 미래용 예약 요청을 만든 프로젝트의 ID입니다.ZONE
: 미래용 예약 요청이 있는 영역입니다.
출력은 다음 예시와 비슷합니다.
{ "id": "projects/my-project/zones/us-east1-a/futureReservations", "items": [ { "id": "743865190848184978", "creationTimestamp": "2025-03-23T18:16:45.274-07:00", "selfLink": "https://www.googleapis.com/compute/beta/projects/my-project/zones/us-east1-a/futureReservations/fr-base", "selfLinkWithId": "https://www.googleapis.com/compute/beta/projects/my-project/zones/us-east1-a/futureReservations/743865190848184978", "zone": "https://www.googleapis.com/compute/beta/projects/my-project/zones/us-east1-a", "name": "fr-base", "specificSkuProperties": { "instanceProperties": { "machineType": "n1-standard-1" }, "totalCount": "100" }, "planningStatus": "SUBMITTED", "timeWindow": { "endTime": "2025-05-02T01:00:00Z", "startTime": "2025-04-30T17:30:00Z" }, "status": { "procurementStatus": "FULFILLED", "lockTime": "2025-03-30T07:00:00Z", "existingMatchingUsageInfo": { "count": "3", "timestamp": "2025-03-30T01:00:00Z" } }, "kind": "compute#futureReservation" }, ... ], "selfLink": "https://www.googleapis.com/compute/beta/projects/my-project/zones/us-east1-a/futureReservations", "etag": "AnzKY34l-cvvV-JnniESJ0dtQvQ=/hvc4jaHpxFAZmOt1FVtKNgzZu-M=", "kind": "compute#futureReservationsListResponse" }
선택적으로 필터 표현식을 사용하여 미래용 예약 요청 목록을 미세 조정하려면
filter
쿼리 파라미터를 포함합니다.GET https://compute.googleapis.com/compute/beta/projects/PROJECT_ID/aggregated/futureReservations?filter=FILTER_EXPRESSION
FILTER_EXPRESSION
을 URL 인코딩 값을 사용하는 필터 표현식으로 바꿉니다.미래용 예약 요청의 세부정보를 보려면 베타
futureReservations.get
메서드에GET
요청을 수행합니다.GET https://compute.googleapis.com/compute/beta/projects/PROJECT_ID/zones/ZONE/futureReservations/FUTURE_RESERVATION_NAME
다음을 바꿉니다.
PROJECT_ID
: 미래용 예약 요청을 만든 프로젝트의 ID입니다.ZONE
: 미래용 예약 요청이 있는 영역입니다.FUTURE_RESERVATION_NAME
: 기존 미래용 예약 요청의 이름입니다.
출력은 다음과 비슷합니다.
{ "autoCreatedReservationsDeleteTime": "2025-05-02T01:00:00Z", "creationTimestamp": "2025-03-23T10:08:31.613-07:00", "id": "5212276518668495076", "kind": "compute#futureReservation", "name": "fr-01", "planningStatus": "SUBMITTED", "selfLink": "https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a/futureReservations/fr-01", "selfLinkWithId": "https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a/futureReservations/5212276518668495076", "shareSettings": { "shareType": "LOCAL" }, "specificSkuProperties": { "instanceProperties": { "machineType": "n1-standard-64" }, "totalCount": "800" }, "status": { "lockTime": "2025-03-30T17:09:59.297799Z", "procurementStatus": "APPROVED", "existingMatchingUsageInfo": { "count": "3", "timestamp": "2025-03-30T01:00:00Z" } }, "timeWindow": { "endTime": "2025-05-02T01:00:00Z", "startTime": "2025-04-30T17:30:00Z" }, "zone": "https://www.googleapis.com/compute/beta/projects/example-project/zones/us-central1-a" }
예약을 소비할 수 있는 최대 인스턴스 수를 보려면 예약에서 소비 가능한 인스턴스를 참조하세요.
Compute Engine이 시작 시 미래용 예약 요청을 위해 예약할 인스턴스 수를 보려면 미래용 예약 요청의 소비 가능한 인스턴스를 참조하세요.
보장된 수(
assuredCount
): 예약 영역 내에 물리적으로 예약된 인스턴스 수입니다. 이 숫자에는 사용자의 프로젝트 그리고 공유 예약이 공유된 모든 프로젝트에 대해 예약된 인스턴스가 포함됩니다.총 개수(
count
): 예약에 지정된 예약된 인스턴스 수입니다. 이 숫자는 보장된 수와 일치해야 합니다.사용 중인 머신(
inUseCount
): 사용자의 프로젝트 또는 공유 예약이 공유된 프로젝트에서 예약을 소비 중이고 실행 중인 인스턴스 수입니다.사용자의 프로젝트 그리고 요청이 공유되었고 요청 속성과 일치하는 프로젝트에서 실행 중인 인스턴스와 사용되지 않은 예약 수를 확인합니다.
요청의 총 개수에서 일치하는 실행 중인 인스턴스 및 사용되지 않은 예약 수를 뺍니다.
Google Cloud 콘솔에서 예약 페이지로 이동합니다.
미래용 예약 탭을 클릭합니다.
표에 각 미래용 예약 요청이 나열되고 각 테이블 열에 속성 설명이 표시됩니다.
Compute Engine이 시작 시 요청에 대해 예약하려는 인스턴스 수를 결정하려면 총 개수 열에서 일치 개수 열을 뺍니다.
일치 개수 열에 다음 경고 중 하나가 표시됩니다.
일치 개수가 0임: 사용자의 프로젝트 또는 요청이 공유된 프로젝트에서 일치하는 실행 중인 인스턴스 또는 사용되지 않은 예약이 없습니다.
일치 개수가 총 개수와 같음: Compute Engine이 시작 시 요청에 대해 인스턴스를 예약하지 않습니다.
요청을 수정하거나 요청과 일치하는 새 인스턴스 또는 예약을 만들면 Compute Engine이 30분 내에 일치 개수 열을 업데이트합니다.
선택사항: 요청에서 일치 개수 열이 마지막으로 업데이트된 시간을 확인하려면 다음을 수행합니다.
이름 열에서 요청의 이름을 클릭합니다. 미래용 예약 요청에 대한 세부정보가 포함된 페이지가 열립니다.
리소스 세부정보 섹션에서 마지막 일치 사용량 평가 시간 필드를 확인합니다.
미래용 예약 요청의 세부정보를 보려면
gcloud beta compute future-reservations describe
명령어를 사용합니다.gcloud beta compute future-reservations describe FUTURE_RESERVATION_NAME \ --zone=ZONE
다음을 바꿉니다.
FUTURE_RESERVATION_NAME
: 기존 미래용 예약 요청의 이름입니다.ZONE
: 미래용 예약 요청이 있는 영역입니다.
출력에서
count
및totalCount
필드를 찾습니다.... specificSkuProperties: ... totalCount: '100' status: existingMatchingUsageInfo: count: '50' timestamp: '2025-03-30T01:00:00Z' ... procurementStatus: DRAFTING ...
totalCount
에서count
의 값을 뺍니다. 예를 들어count
가 50이고totalCount
가 100이면 Compute Engine이 요청 시작 시에 50개 인스턴스에 대해 자동으로 예약을 만듭니다.요청을 수정하거나 요청과 일치하는 새 인스턴스 또는 예약을 만들면 Compute Engine이 30분 내에
existingMatchingUsageInfo
필드를 업데이트합니다. 이 필드가 마지막으로 업데이트된 시점을 확인하려면existingMatchingUsageInfo.timestamp
의 값을 확인합니다.미래용 예약 요청 목록을 보려면 베타
futureReservations.list
메서드에 대해GET
요청을 수행합니다. 요청 URL에서filter
쿼리 파라미터를 포함하고name
,specificSkuProperties
,status
필드만 표시하도록 지정합니다.GET https://compute.googleapis.com/compute/beta/projects/PROJECT_ID/zones/ZONE/futureReservations?fields=items.name,items.specificSkuProperties,items.status
다음을 바꿉니다.
PROJECT_ID
: 미래용 예약 요청을 만든 프로젝트의 ID입니다.ZONE
: 미래용 예약 요청이 있는 영역입니다.
출력에서 각 초안, 대기 중인 승인, 승인된 요청에 대해
count
및totalCount
필드를 찾습니다.{ "items": [ { "specificSkuProperties": { ... totalCount: "100" }, "name": "fr-01", "status": { "procurementStatus": "APPROVED", ... existingMatchingUsageInfo: { count: "50", "timestamp": "2025-01-22T07:54:26.295Z" } } }, { "specificSkuProperties": { ... totalCount: "20" }, "name": "fr-02", "status": { "procurementStatus": "DRAFTING", ... existingMatchingUsageInfo: { "count": "2", "timestamp": "2025-01-22T07:54:26.295Z" } } } ] }
각 요청에 대해
totalCount
에서count
의 값을 뺍니다. 예를 들어count
가 50이고totalCount
가 100이면 Compute Engine이 요청 시작 시에 50개 인스턴스에 대해 자동으로 예약을 만듭니다.요청을 수정하거나 요청과 일치하는 새 인스턴스 또는 예약을 만들면 Compute Engine이 30분 내에
existingMatchingUsageInfo
필드를 업데이트합니다. 이 필드가 마지막으로 업데이트된 시점을 확인하려면existingMatchingUsageInfo.timestamp
의 값을 확인합니다.예약을 약정에 연결하는 방법 알아보기
예약 사용 방법 알아보기
예약 수정 방법 알아보기
예약 삭제 방법 알아보기
Go
로컬 개발 환경에서 이 페이지의 Go 샘플을 사용하려면 gcloud CLI를 설치 및 초기화한 다음 사용자 인증 정보로 애플리케이션 기본 사용자 인증 정보를 설정하세요.
자세한 내용은 다음을 참조하세요: Set up authentication for a local development environment.
Java
로컬 개발 환경에서 이 페이지의 Java 샘플을 사용하려면 gcloud CLI를 설치 및 초기화한 다음 사용자 인증 정보로 애플리케이션 기본 사용자 인증 정보를 설정하세요.
자세한 내용은 다음을 참조하세요: Set up authentication for a local development environment.
Node.js
로컬 개발 환경에서 이 페이지의 Node.js 샘플을 사용하려면 gcloud CLI를 설치 및 초기화한 다음 사용자 인증 정보로 애플리케이션 기본 사용자 인증 정보를 설정하세요.
자세한 내용은 다음을 참조하세요: Set up authentication for a local development environment.
Python
로컬 개발 환경에서 이 페이지의 Python 샘플을 사용하려면 gcloud CLI를 설치 및 초기화한 다음 사용자 인증 정보로 애플리케이션 기본 사용자 인증 정보를 설정하세요.
자세한 내용은 다음을 참조하세요: Set up authentication for a local development environment.
REST
로컬 개발 환경에서 이 페이지의 REST API 샘플을 사용하려면 gcloud CLI에 제공한 사용자 인증 정보를 사용합니다.
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
자세한 내용은 Google Cloud 인증 문서의 REST 사용을 위한 인증을 참조하세요.
필요한 역할
예약 또는 미래용 예약 요청을 보는 데 필요한 권한을 얻으려면 관리자에게 프로젝트에 대한 컴퓨팅 관리자(
roles/compute.admin
) IAM 역할을 부여해 달라고 요청하세요. 역할 부여에 대한 자세한 내용은 프로젝트, 폴더, 조직에 대한 액세스 관리를 참조하세요.이 사전 정의된 역할에는 예약 또는 미래용 예약 요청을 보는 데 필요한 권한이 포함되어 있습니다. 필요한 정확한 권한을 보려면 필수 권한 섹션을 펼치세요.
필수 권한
예약 또는 미래용 예약 요청을 보려면 다음 권한이 필요합니다.
커스텀 역할이나 다른 사전 정의된 역할을 사용하여 이 권한을 부여받을 수도 있습니다.
예약 설정 보기
다음 섹션에서는 예약 또는 미래용 예약 요청의 설정을 확인하는 방법을 설명합니다.
예약 보기
하나 이상의 예약 설정을 보려면 이 섹션에 설명된 다음 방법 중 하나를 사용합니다.
예약에서
deleteAtTime
및reservationSharingPolicy
필드(미리보기)를 보려면 Google Cloud CLI를 사용하여 예약 세부정보를 보거나 REST API를 사용하여 예약을 봅니다. 이러한 필드가 필요하지 않으면 다음 옵션 중에서 선택하여 예약을 봅니다.콘솔
gcloud
Go
Java
Node.js
Python
REST
미래용 예약 요청 보기
하나 이상의 미래용 예약 요청의 설정을 보려면 이 섹션에 설명된 다음 방법 중 하나를 사용합니다.
미래용 예약 요청을 보려면 다음 옵션 중 하나를 선택합니다.
콘솔
gcloud
REST
소비 가능한 인스턴스 수 결정
예약된 용량을 소비할 수 있는 컴퓨팅 인스턴스 수를 결정하려면 다음 중 하나를 수행합니다.
예약의 소비 가능한 인스턴스
예약의 세부정보를 볼 때는 다음 필드를 확인하여 예약을 소비 중인 컴퓨팅 인스턴스 수, 예약을 소비할 수 있는 인스턴스 수를 볼 수 있습니다.
예를 들어 보장된 수(
assuredCount
)와 총 개수(count
)가 모두 50이고, 예약을 소비 중인 인스턴스 수(inUseCount
)가 25면, 나머지 25개의 인스턴스가 예약을 더 소비할 수 있으며, 그런 다음에 예약이 완전히 소비됩니다.미래용 예약 요청의 소비 가능한 인스턴스
미래용 예약 요청을 시작할 때 Compute Engine이 예약을 만드는 컴퓨팅 인스턴스 수를 결정할 수 있습니다. 초안, 대기 중인 승인, 승인된 요청의 경우 이 숫자를 다음과 같이 결정할 수 있습니다.
단일 또는 여러 요청에 대해 한 번에 소비 가능한 인스턴스 수를 확인할 수 있습니다. 여러 요청의 경우 Google Cloud 콘솔 또는 REST API를 사용합니다. 단일 요청의 경우 다음 옵션을 선택합니다.
콘솔
gcloud
REST
다음 단계
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-04-02(UTC)
-