Google Cloud Platform中运行命令(Azure)的替代方法
尝试开发可以触发在不同云上运行的VM上的运行命令。已经完成了AWS和Azure的代码,在GCP中找不到我可以使用的任何有用的
Azure代码
print("creating command parameters")
run_command_parameters = {
'command_id': 'RunShellScript', # For linux, don't change it
'script': [
'mkdir /hello'
]
}
print("sending to remote machine")
response = compute_client.virtual_machines.run_command(
GROUP_NAME,
VM_NAME,
run_command_parameters
)
print("Waiting for result")
result = response.result()
print(result.value[0].message)
在Google Cloud Platform中找出相同的选择