(projectId, zone, instanceName)
| 52 | }; |
| 53 | |
| 54 | const getInstance = async (projectId, zone, instanceName) => { |
| 55 | const [instance] = await instancesClient.get({ |
| 56 | project: projectId, |
| 57 | zone, |
| 58 | instance: instanceName, |
| 59 | }); |
| 60 | |
| 61 | return instance; |
| 62 | }; |
| 63 | |
| 64 | const deleteDisk = async (projectId, zone, diskName) => { |
| 65 | const [response] = await disksClient.delete({ |