Fleet Manager Instances#
Instances are the DSS instances that Fleet Manager will manage.
Create an instance#
import dataikuapi
key_id = "<my key id>"
key_secret = "<my key secret>"
# <Cloud vendor> is either AWS, Azure or GCP
client = dataikuapi.FMClient<Cloud vendor>("https://localhost", key_id, key_secret)
my_template_id = "ist-default"
my_network_id = "vn-default"
# create an instance
creator = client.new_instance_creator("My new designer", my_template_id, my_network_id, "dss-11.0.3-default")
dss = creator.create()
# provision the instance
status = dss.reprovision()
res = status.wait_for_result()
Reference documentation#
|
A handle to interact with a DSS instance. |
An enumeration. |
|
A class holding read-only information about an Instance. |
|
|
A handle to interact with a snapshot of a DSS instance. |