@@ -270,3 +270,157 @@ class BatchPutMetricsError(_base_types.ApiObject):
270
270
271
271
def __init__ (self , code = None , message = None , metric_index = None , ** kwargs ):
272
272
super (BatchPutMetricsError , self ).__init__ (code = code , message = message , metric_index = metric_index , ** kwargs )
273
+
274
+
275
+ class ExperimentSearchResult (_base_types .ApiObject ):
276
+ """Summary model of an Experiment search result.
277
+
278
+ Attributes:
279
+ experiment_arn (str): Arn of the experiment.
280
+ experiment_name (str): Name of the experiment.
281
+ display_name (str): Display name of the experiment.
282
+ source (dict): The source of the experiment
283
+ tags (list): The list of tags that are associated with the experiment.
284
+ """
285
+
286
+ experiment_arn = None
287
+ experiment_name = None
288
+ display_name = None
289
+ source = None
290
+ tags = None
291
+
292
+ def __init__ (self , experiment_arn = None , experiment_name = None , display_name = None , source = None , tags = None , ** kwargs ):
293
+ super (ExperimentSearchResult , self ).__init__ (
294
+ experiment_arn = experiment_arn ,
295
+ experiment_name = experiment_name ,
296
+ display_name = display_name ,
297
+ source = source ,
298
+ tags = tags ,
299
+ ** kwargs
300
+ )
301
+
302
+
303
+ class TrialSearchResult (_base_types .ApiObject ):
304
+ """Summary model of an Trial search result.
305
+
306
+ Attributes:
307
+ trial_arn (str): Arn of the trial.
308
+ trial_name (str): Name of the trial.
309
+ display_name (str): Display name of the trial.
310
+ source (dict): The source of the trial.
311
+ tags (list): The list of tags that are associated with the trial.
312
+ trial_component_summaries (dict):
313
+ """
314
+
315
+ trial_arn = None
316
+ trial_name = None
317
+ display_name = None
318
+ source = None
319
+ tags = None
320
+ trial_component_summaries = None
321
+
322
+ def __init__ (
323
+ self ,
324
+ trial_arn = None ,
325
+ trial_name = None ,
326
+ display_name = None ,
327
+ source = None ,
328
+ tags = None ,
329
+ trial_component_summaries = None ,
330
+ ** kwargs
331
+ ):
332
+ super (TrialSearchResult , self ).__init__ (
333
+ trial_arn = trial_arn ,
334
+ trial_name = trial_name ,
335
+ display_name = display_name ,
336
+ source = source ,
337
+ tags = tags ,
338
+ trial_component_summaries = trial_component_summaries ,
339
+ ** kwargs
340
+ )
341
+
342
+
343
+ class TrialComponentSearchResult (_base_types .ApiObject ):
344
+ """Summary model of an Trial Component search result.
345
+
346
+ Attributes:
347
+ trial_component_arn (str): Arn of the trial component.
348
+ trial_component_name (str): Name of the trial component.
349
+ display_name (str): Display name of the trial component.
350
+ source (dict): The source of the trial component.
351
+ status (dict): The status of the trial component.
352
+ start_time (datetime): Start time.
353
+ end_time (datetime): End time.
354
+ creation_time (datetime): Creation time.
355
+ created_by (str): Created by.
356
+ last_modified_time (datetime): Date last modified.
357
+ last_modified_by (datetime): User last modified.
358
+ parameters (dict): The hyperparameters of the component.
359
+ input_artifacts (dict): The input artifacts of the component.
360
+ output_artifacts (dict): The output artifacts of the component.
361
+ metrics (list): The metrics for the component.
362
+ source_detail (dict): The source of the trial component.
363
+ tags (list): The list of tags that are associated with the trial component.
364
+ parents (dict): The parent of trial component
365
+ """
366
+
367
+ trial_component_arn = None
368
+ trial_component_name = None
369
+ display_name = None
370
+ source = None
371
+ status = None
372
+ start_time = None
373
+ end_time = None
374
+ creation_time = None
375
+ created_by = None
376
+ last_modified_time = None
377
+ last_modified_by = None
378
+ parameters = None
379
+ input_artifacts = None
380
+ output_artifacts = None
381
+ metrics = None
382
+ source_detail = None
383
+ tags = None
384
+ parents = None
385
+
386
+ def __init__ (
387
+ self ,
388
+ trial_component_arn = None ,
389
+ trial_component_name = None ,
390
+ start_time = None ,
391
+ end_time = None ,
392
+ display_name = None ,
393
+ source = None ,
394
+ status = None ,
395
+ creation_time = None ,
396
+ created_by = None ,
397
+ last_modified_time = None ,
398
+ last_modified_by = None ,
399
+ parameters = None ,
400
+ input_artifacts = None ,
401
+ output_artifacts = None ,
402
+ metrics = None ,
403
+ source_detail = None ,
404
+ tags = None ,
405
+ parents = None ,
406
+ ):
407
+ super (TrialComponentSearchResult , self ).__init__ (
408
+ trial_component_arn = trial_component_arn ,
409
+ trial_component_name = trial_component_name ,
410
+ display_name = display_name ,
411
+ source = source ,
412
+ status = status ,
413
+ start_time = start_time ,
414
+ end_time = end_time ,
415
+ creation_time = creation_time ,
416
+ created_by = created_by ,
417
+ last_modified_by = last_modified_by ,
418
+ last_modified_time = last_modified_time ,
419
+ parameters = parameters ,
420
+ input_artifacts = input_artifacts ,
421
+ output_artifacts = output_artifacts ,
422
+ metrics = metrics ,
423
+ source_detail = source_detail ,
424
+ tags = tags ,
425
+ parents = parents ,
426
+ )
0 commit comments