-
Notifications
You must be signed in to change notification settings - Fork 2
/
list_certificates.py
84 lines (70 loc) · 2.25 KB
/
list_certificates.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
# 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/iot.html#IoT.Client.list_certificates
###########################################################################
class MyApp:
def __init__(self):
self.access = None
self.secret = None
self.verbose = False
def usage(self):
print ("Usage: listcertificates.py")
print ("\t[-a|--access access-key] AWS_ACCESS_KEY_ID")
print ("\t[-s|--secret secret-key] AWS_SECRET_ACCESS_KEY")
print ("\t[-v|--verbose] verbose output")
return
def command_line(self):
try:
opts, args = getopt.getopt(sys.argv[1:], "a:s:v", ["access=", "secret=", "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
else:
assert False, "unhandled option"
if self.access == None:
self.usage()
sys.exit(1)
if self.secret == None:
self.usage()
sys.exit(1)
def start(self):
self.command_line()
client = boto3.client(
'iot',
aws_access_key_id = self.access,
aws_secret_access_key = self.secret
)
response = client.list_certificates(
)
print response
###########################################################################
if __name__ == "__main__":
main = MyApp()
main.start()