@@ -413,6 +413,9 @@ def __init__(self, *, job_id: int, command: str, arguments: Optional[str] = None
413
413
class JobMetaData (_serialization .Model ):
414
414
"""A model that combines both JobAttributes and JobParameters.
415
415
416
+ :ivar additional_properties: Unmatched properties from the message are deserialized to this
417
+ collection.
418
+ :vartype additional_properties: dict[str, any]
416
419
:ivar timestamp: Timestamp.
417
420
:vartype timestamp: ~datetime.datetime
418
421
:ivar cpu_normalization_factor: Cpunormalizationfactor.
@@ -486,6 +489,7 @@ class JobMetaData(_serialization.Model):
486
489
"""
487
490
488
491
_attribute_map = {
492
+ "additional_properties" : {"key" : "" , "type" : "{object}" },
489
493
"timestamp" : {"key" : "timestamp" , "type" : "iso-8601" },
490
494
"cpu_normalization_factor" : {"key" : "CPUNormalizationFactor" , "type" : "int" },
491
495
"norm_cpu_time_s" : {"key" : "NormCPUTime(s)" , "type" : "int" },
@@ -526,6 +530,7 @@ class JobMetaData(_serialization.Model):
526
530
def __init__ ( # pylint: disable=too-many-locals
527
531
self ,
528
532
* ,
533
+ additional_properties : Optional [Dict [str , Any ]] = None ,
529
534
timestamp : Optional [datetime .datetime ] = None ,
530
535
cpu_normalization_factor : Optional [int ] = None ,
531
536
norm_cpu_time_s : Optional [int ] = None ,
@@ -564,6 +569,9 @@ def __init__( # pylint: disable=too-many-locals
564
569
** kwargs : Any
565
570
) -> None :
566
571
"""
572
+ :keyword additional_properties: Unmatched properties from the message are deserialized to this
573
+ collection.
574
+ :paramtype additional_properties: dict[str, any]
567
575
:keyword timestamp: Timestamp.
568
576
:paramtype timestamp: ~datetime.datetime
569
577
:keyword cpu_normalization_factor: Cpunormalizationfactor.
@@ -636,6 +644,7 @@ def __init__( # pylint: disable=too-many-locals
636
644
:paramtype accounted_flag: ~_generated.models.JobMetaDataAccountedFlag
637
645
"""
638
646
super ().__init__ (** kwargs )
647
+ self .additional_properties = additional_properties
639
648
self .timestamp = timestamp
640
649
self .cpu_normalization_factor = cpu_normalization_factor
641
650
self .norm_cpu_time_s = norm_cpu_time_s
0 commit comments