-
Notifications
You must be signed in to change notification settings - Fork 2
/
get_subscription_definition_version.py
102 lines (86 loc) · 2.81 KB
/
get_subscription_definition_version.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
# Copyright 2019. Gambit Communications, Inc. All Rights Reserved.
# Copyright 2013. Amazon Web Services, Inc. All Rights Reserved.
#
# 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.
# Import the SDK
import boto3
import uuid
import os
import getopt
import sys
# use https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/greengrass.html#Greengrass.Client.get_subscription_definition_version
###########################################################################
class MyApp:
def __init__(self):
self.access = None
self.secret = None
self.defid = None
self.version = None
self.verbose = False
def usage(self):
print ('Usage: get_subscription_definition_version.py')
print ('\t-a|--access access-key AWS_ACCESS_KEY_ID')
print ('\t-s|--secret secret-key AWS_SECRET_ACCESS_KEY')
print ('\t-d|--defid def-id subscription definition id')
print ('\t-V|--version version-id version id')
print ('\t[-v|--verbose] verbose output')
return
def command_line(self):
try:
opts, args = getopt.getopt(sys.argv[1:], 'a:s:d:V:v', ['access=', 'secret=', 'defid=', 'version=', 'verbose'])
except getopt.GetoptError as err:
# print help information and exit:
print (str(err)) # will print something like "option -a not recognized"
self.usage()
sys.exit(1)
for o, a in opts:
if o in ('-v', '--verbose'):
self.verbose = True
elif o in ('-a', '--access'):
self.access = a
elif o in ('-s', '--secret'):
self.secret = a
elif o in ('-d', '--defid'):
self.defid = a
elif o in ('-V', '--version'):
self.version = a
else:
assert False, 'unhandled option'
if self.access == None:
self.usage()
sys.exit(1)
if self.secret == None:
self.usage()
sys.exit(1)
if self.defid == None:
self.usage()
sys.exit(1)
if self.version == None:
self.usage()
sys.exit(1)
def start(self):
self.command_line()
client = boto3.client(
'greengrass',
aws_access_key_id = self.access,
aws_secret_access_key = self.secret
)
response = client.get_subscription_definition_version(
SubscriptionDefinitionId = self.defid,
SubscriptionDefinitionVersionId = self.version
)
print response
###########################################################################
if __name__ == '__main__':
main = MyApp()
main.start()