第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

列出谷歌云計(jì)算引擎活動(dòng)實(shí)例

列出谷歌云計(jì)算引擎活動(dòng)實(shí)例

慕沐林林 2023-11-09 21:44:44
我正在尋找所有活動(dòng)資源(如計(jì)算引擎、gke 等)和各自的區(qū)域。我嘗試使用下面的 python 代碼來(lái)打印它,但它會(huì)在計(jì)算引擎可用的地方打印所有區(qū)域信息,請(qǐng)有人指導(dǎo)我可以使用哪些功能來(lái)執(zhí)行此操作。    compute = googleapiclient.discovery.build('compute', 'v1')    request = compute.instances().aggregatedList(project=project)    while request is not None:        response = request.execute()        for name, instances_scoped_list in response['items'].items():            pprint((name, instances_scoped_list))            request = compute.instances().aggregatedList_next(previous_request=request, previous_response=response)
查看完整描述

1 回答

?
叮當(dāng)貓咪

TA貢獻(xiàn)1776條經(jīng)驗(yàn) 獲得超12個(gè)贊

gcloud compute instances list?您可以使用 Cloud Console命令或instances.list()?方法列出項(xiàng)目中的所有實(shí)例?。

要以表格形式列出項(xiàng)目中的所有實(shí)例,請(qǐng)運(yùn)行:

gcloud compute instances list

你會(huì)得到類(lèi)似的東西:

NAME? ? ? ? ZONE? ? ? ? ? ?MACHINE_TYPE? ?PREEMPTIBLE? INTERNAL_IP? EXTERNAL_IP? ?STATUS

instance-1? us-central1-a? n1-standard-1? ? ? ? ? ? ? ?10.128.0.44? xx.xx.xxx.xx? RUNNING

instance-2? us-central1-b? n1-standard-1? ? ? ? ? ? ? ?10.128.0.49? xx.xx.xxx.xx? RUNNING

編輯1

正如您所提到的,aggregateList()是正確的,要獲取所需的信息,必須檢查 JSON 響應(yīng)正文。

如果您需要某些特定字段,您可以檢查響應(yīng)正文信息。

另外,您可以使用此代碼作為指南,我正在從實(shí)例中獲取所有信息。

from pprint import pprint

from googleapiclient import discovery

from oauth2client.client import GoogleCredentials

credentials = GoogleCredentials.get_application_default()

service = discovery.build('compute', 'v1', credentials=credentials)

# Project ID for this request.

project = "{Project-ID}"? # TODO: Update placeholder value.

request = service.instances().aggregatedList(project=project)

while request is not None:

? ? response = request.execute()

? ? instance = response.get('items', {})

? ? for instance in instance.values():

? ? ? for a in instance.get('instances', []):

? ? ? ? ? print(str(instance))

? ? request = service.instances().aggregatedList_next(previous_request=request, previous_response=response)



查看完整回答
反對(duì) 回復(fù) 2023-11-09
  • 1 回答
  • 0 關(guān)注
  • 167 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)