forked from oracle-samples/oracle-functions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc.py
40 lines (36 loc) · 1.39 KB
/
func.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
#
# oci-list-compartments-python version 1.0.
#
# Copyright (c) 2020 Oracle, Inc.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#
import io
import json
from fdk import response
import oci.identity
def handler(ctx, data: io.BytesIO = None):
signer = oci.auth.signers.get_resource_principals_signer()
resp = list_compartments(signer) # function defined below
return response.Response(
ctx,
response_data=json.dumps(resp),
headers={"Content-Type": "application/json"}
)
# List compartments ------------------------------------------------------------
def list_compartments(signer):
client = oci.identity.IdentityClient(config={}, signer=signer)
# OCI API for managing users, groups, compartments, and policies
try:
# Returns a list of all compartments and subcompartments in the tenancy (root compartment)
compartments = client.list_compartments(
signer.tenancy_id,
compartment_id_in_subtree=True,
access_level='ANY'
)
# Create a list that holds a list of the compartments id and name next to each other
compartments = [[c.id, c.name] for c in compartments.data]
except Exception as ex:
print("ERROR: Cannot access compartments", ex, flush=True)
raise
resp = {"compartments": compartments}
return resp