(projectId, zone, instanceName)
| 47 | }; |
| 48 | |
| 49 | const getInstance = async (projectId, zone, instanceName) => { |
| 50 | const [instance] = await instancesClient.get({ |
| 51 | project: projectId, |
| 52 | zone, |
| 53 | instance: instanceName, |
| 54 | }); |
| 55 | return instance; |
| 56 | }; |
| 57 | |
| 58 | describe('samples', () => { |
| 59 | const instanceName = generateTestId(); |