-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomputeenginehelper.py
196 lines (151 loc) · 5.61 KB
/
computeenginehelper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#!/usr/bin/python
# -*- coding: utf-8 -*-
# computeenginehelper.py
# It has methods for managing Google Cloud Compute Engine VM instances.
import sys
import googleapiclient.discovery
ZONE_NAME = 'us-east1-b' # Zone name
PROJECT_NAME = 'gcloud-java-examples' # Project name
IMAGE_NAME = "ubuntu-1604-lts" # Image name
IMAGE_PROJECT_NAME = "ubuntu-os-cloud" # Image project name
INSTANCE_TYPE = "n1-standard-1" # Instance type
INSTANCE_NAME = "my-instance" # Name of the instance
def list_instances():
"""
List all Compute Engine VM instances associated with an Google Cloud account
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Listing VM instances ...')
# Describe instances
response = compute.instances().list(project=PROJECT_NAME, zone=ZONE_NAME).execute()
print('Instances in project "%s" and zone "%s":' % (PROJECT_NAME, ZONE_NAME))
if (response.get('items')):
for instance in response['items']:
print(' - Id: ' + instance['id'])
print(' Name: ' + instance['name'])
print(' Status: ' + instance['status'])
print(' Machine type: ' + instance['machineType'])
else:
print('NO instances')
return
def create_instance():
"""
Create a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Creating VM instance ...')
# Get the latest image
image_response = compute.images().getFromFamily(
project=IMAGE_PROJECT_NAME, family=IMAGE_NAME).execute()
source_disk_image = image_response['selfLink']
# Configure the machine
#machine_type = 'zones/' + ZONE_NAME + '/machineTypes/' + INSTANCE_TYPE
machine_type = 'zones/%s/machineTypes/%s' % (ZONE_NAME, INSTANCE_TYPE)
config = {
'name': INSTANCE_NAME,
'machineType': machine_type,
# Specify the boot disk and the image to use as a source.
'disks': [
{
'boot': True,
'autoDelete': True,
'initializeParams': {
'sourceImage': source_disk_image,
}
}
],
# Specify a network interface with NAT to access the public
# internet.
'networkInterfaces': [{
'network': 'global/networks/default',
'accessConfigs': [
{'type': 'ONE_TO_ONE_NAT', 'name': 'External NAT'}
]
}],
# Allow the instance to access cloud storage and logging.
'serviceAccounts': [{
'email': 'default',
'scopes': [
'https://www.googleapis.com/auth/devstorage.read_write',
'https://www.googleapis.com/auth/logging.write'
]
}]
}
response = compute.instances().insert(project=PROJECT_NAME,
zone=ZONE_NAME,
body=config).execute()
print('Instance Id: ' + response['targetId'])
return response['targetId']
def list_instance(instance_id):
"""
List a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Listing VM instance ...')
print('Instance Id: ' + instance_id)
# List the VM instance
response = compute.instances().get(project=PROJECT_NAME, zone=ZONE_NAME, instance=INSTANCE_NAME).execute()
print(' - Id: ' + response['id'])
print(' Name: ' + response['name'])
print(' Status: ' + response['status'])
print(' Machine type: ' + response['machineType'])
return
def start_instance(instance_id):
"""
Start a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Starting VM instance ...')
print('Instance Id: ' + instance_id)
# Start VM instance
compute.instances().start(
project=PROJECT_NAME,
zone=ZONE_NAME,
instance=INSTANCE_NAME).execute()
return
def stop_instance(instance_id):
"""
Stop a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Stopping VM instance ...')
print('Instance Id: ' + instance_id)
# Stop VM instance
compute.instances().stop(
project=PROJECT_NAME,
zone=ZONE_NAME,
instance=INSTANCE_NAME).execute()
return
def reset_instance(instance_id):
"""
Reset a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Resetting VM instance ...')
print('Instance Id: ' + instance_id)
# Reset VM instance
compute.instances().reset(
project=PROJECT_NAME,
zone=ZONE_NAME,
instance=INSTANCE_NAME).execute()
return
def delete_instance(instance_id):
"""
Delete a Compute Engine VM instance
"""
# Build and initialize the API
compute = googleapiclient.discovery.build('compute', 'v1')
print('Deleting VM instance ...')
print('Instance Id: ' + instance_id)
# Delete VM instance
compute.instances().delete(
project=PROJECT_NAME,
zone=ZONE_NAME,
instance=INSTANCE_NAME).execute()
return