forked from GoogleCloudPlatform/gce-oreilly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch7-7.py
147 lines (126 loc) · 4.57 KB
/
ch7-7.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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''Update instance-level metadata.
Usage:
$ python ch7-7.py
You can also get help on all the command-line flags the program understands
by running:
$ python ch7-7.py --help
'''
import argparse
import httplib2
import os
import sys
from apiclient import discovery
from oauth2client import file
from oauth2client import client
from oauth2client import tools
# Parser for command-line arguments.
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
parents=[tools.argparser])
# CLIENT_SECRET is the name of a file containing the OAuth 2.0 information
# for this application, including client_id and client_secret.
CLIENT_SECRET = os.path.join(os.path.dirname(__file__), 'client_secret.json')
# Set up a Flow object to be used for authentication. PLEASE ONLY
# ADD THE SCOPES YOU NEED. For more information on using scopes please
# see <https://developers.google.com/compute/docs/api/how-tos/authorization>.
FLOW = client.flow_from_clientsecrets(
CLIENT_SECRET,
scope=['https://www.googleapis.com/auth/compute'],
message=tools.message_if_missing(CLIENT_SECRET))
def main(argv):
# Parse the command-line flags.
flags = parser.parse_args(argv[1:])
# If the credentials don't exist or are invalid run through the native client
# flow. The Storage object will ensure that if successful the good
# credentials will get written back to the file.
storage = file.Storage('sample.dat')
credentials = storage.get()
if credentials is None or credentials.invalid:
credentials = tools.run_flow(FLOW, storage, flags)
# Create an httplib2.Http object to handle our HTTP requests and authorize it
# with our good Credentials.
http = httplib2.Http()
http = credentials.authorize(http)
# Construct the service object for the interacting with the Compute Engine API.
service = discovery.build('compute', 'v1', http=http)
# print 'Success! Now add code here.'
PROJECT_ID = 'your-project-id'
ZONE = 'us-central1-a'
INSTANCE_NAME = 'instance-metadata-api'
METADATA = {
'key': 'cloud-storage-bucket',
'value': 'bucket'
}
# First retrieve the current metadata fingerprint.
request = service.instances().get(
project=PROJECT_ID, zone=ZONE, instance=INSTANCE_NAME)
try:
response = request.execute()
except Exception, ex:
print 'ERROR: ' + str(ex)
sys.exit()
# Create the body of the request using the response.
BODY = response['metadata']
for item in BODY['items']:
if item['key'] == METADATA['key']:
item['value'] = METADATA['value']
break
else:
BODY['items'].append(METADATA)
# Build and execute set common instance data request.
request = service.instances().setMetadata(
project=PROJECT_ID, zone=ZONE, instance=INSTANCE_NAME, body=BODY)
try:
response = request.execute()
except Exception, ex:
print 'ERROR: ' + str(ex)
sys.exit()
# Metadata setting is asynchronous so now wait for response.
op_name = response['name']
operations = service.zoneOperations()
while True:
request = operations.get(project=PROJECT_ID, zone=ZONE, operation=op_name)
try:
response = request.execute()
except Exception, ex:
print 'ERROR: ' + str(ex)
sys.exit()
if 'error' in response:
print 'ERROR: ' + str(response['error'])
sys.exit()
status = response['status']
if status == 'DONE':
print 'Instance-level metadata updated.'
break
else:
print 'Waiting for operation to complete. Status: ' + status
# For more information on the Compute Engine API you can visit:
#
# https://developers.google.com/compute/docs/reference/latest/
#
# For more information on the Compute Engine API Python library surface you
# can visit:
#
# https://developers.google.com/resources/api-libraries/documentation/compute/v1/python/latest/
#
# For information on the Python Client Library visit:
#
# https://developers.google.com/api-client-library/python/start/get_started
if __name__ == '__main__':
main(sys.argv)