2020class Counters extends \Google \Model
2121{
2222 /**
23- * Output only. Number of objects failed.
23+ * Output only. The number of objects that failed due to user errors or
24+ * service errors.
2425 *
2526 * @var string
2627 */
2728 public $ failedObjectCount ;
29+ /**
30+ * Output only. Number of object custom contexts created. This field is only
31+ * populated for jobs with the UpdateObjectCustomContext transformation.
32+ *
33+ * @var string
34+ */
35+ public $ objectCustomContextsCreated ;
36+ /**
37+ * Output only. Number of object custom contexts deleted. This field is only
38+ * populated for jobs with the UpdateObjectCustomContext transformation.
39+ *
40+ * @var string
41+ */
42+ public $ objectCustomContextsDeleted ;
43+ /**
44+ * Output only. Number of object custom contexts updated. This counter tracks
45+ * custom contexts where the key already existed, but the payload was
46+ * modified. This field is only populated for jobs with the
47+ * UpdateObjectCustomContext transformation.
48+ *
49+ * @var string
50+ */
51+ public $ objectCustomContextsUpdated ;
2852 /**
2953 * Output only. Number of objects completed.
3054 *
@@ -46,7 +70,8 @@ class Counters extends \Google\Model
4670 public $ totalObjectCount ;
4771
4872 /**
49- * Output only. Number of objects failed.
73+ * Output only. The number of objects that failed due to user errors or
74+ * service errors.
5075 *
5176 * @param string $failedObjectCount
5277 */
@@ -61,6 +86,59 @@ public function getFailedObjectCount()
6186 {
6287 return $ this ->failedObjectCount ;
6388 }
89+ /**
90+ * Output only. Number of object custom contexts created. This field is only
91+ * populated for jobs with the UpdateObjectCustomContext transformation.
92+ *
93+ * @param string $objectCustomContextsCreated
94+ */
95+ public function setObjectCustomContextsCreated ($ objectCustomContextsCreated )
96+ {
97+ $ this ->objectCustomContextsCreated = $ objectCustomContextsCreated ;
98+ }
99+ /**
100+ * @return string
101+ */
102+ public function getObjectCustomContextsCreated ()
103+ {
104+ return $ this ->objectCustomContextsCreated ;
105+ }
106+ /**
107+ * Output only. Number of object custom contexts deleted. This field is only
108+ * populated for jobs with the UpdateObjectCustomContext transformation.
109+ *
110+ * @param string $objectCustomContextsDeleted
111+ */
112+ public function setObjectCustomContextsDeleted ($ objectCustomContextsDeleted )
113+ {
114+ $ this ->objectCustomContextsDeleted = $ objectCustomContextsDeleted ;
115+ }
116+ /**
117+ * @return string
118+ */
119+ public function getObjectCustomContextsDeleted ()
120+ {
121+ return $ this ->objectCustomContextsDeleted ;
122+ }
123+ /**
124+ * Output only. Number of object custom contexts updated. This counter tracks
125+ * custom contexts where the key already existed, but the payload was
126+ * modified. This field is only populated for jobs with the
127+ * UpdateObjectCustomContext transformation.
128+ *
129+ * @param string $objectCustomContextsUpdated
130+ */
131+ public function setObjectCustomContextsUpdated ($ objectCustomContextsUpdated )
132+ {
133+ $ this ->objectCustomContextsUpdated = $ objectCustomContextsUpdated ;
134+ }
135+ /**
136+ * @return string
137+ */
138+ public function getObjectCustomContextsUpdated ()
139+ {
140+ return $ this ->objectCustomContextsUpdated ;
141+ }
64142 /**
65143 * Output only. Number of objects completed.
66144 *
0 commit comments