diff --git a/packages/google-cloud-dataproc/google/cloud/dataproc_v1/types/jobs.py b/packages/google-cloud-dataproc/google/cloud/dataproc_v1/types/jobs.py index f9da9dceb4c9..b3282d933044 100644 --- a/packages/google-cloud-dataproc/google/cloud/dataproc_v1/types/jobs.py +++ b/packages/google-cloud-dataproc/google/cloud/dataproc_v1/types/jobs.py @@ -1140,6 +1140,10 @@ class YarnApplication(proto.Message): application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access. + vcore_seconds (int): + Optional. The cumulative CPU time consumed by the application for a job, measured in vcore-seconds. + memory_mb_seconds (int): + Optional. The cumulative memory usage of the application for a job, measured in mb-seconds. """ class State(proto.Enum): @@ -1194,6 +1198,16 @@ class State(proto.Enum): proto.STRING, number=4, ) + vcore_seconds: int = proto.Field( + proto.INT64, + number=5, + optional=True, + ) + memory_mb_seconds: int = proto.Field( + proto.INT64, + number=6, + optional=True, + ) class Job(proto.Message):