in scripts/update_auto_launch_config.py [0:0]
def __init__(
self,
user_name : str,
sso_id : str,
studio : str,
start_time : str,
days : str,
launch_profile : str,
streaming_image : str,
instance_type : str,
enabled : bool,
skip_validation : bool):
self.user_name = user_name
self.sso_id = sso_id
self.studio = studio
self.start_time = start_time
self.days = days
self.launch_profile = launch_profile
self.streaming_image = streaming_image
self.instance_type = instance_type
self.enabled = enabled
self.skip_validation = skip_validation
self.is_validated = False
self.nimble_client = get_nimble_client()
self.identity_helper = IdentityHelper()