diff --git a/ConfidentialComputing/metadata/V1/Service.php b/ConfidentialComputing/metadata/V1/Service.php
index f0dfee700524..8e229f799310 100644
Binary files a/ConfidentialComputing/metadata/V1/Service.php and b/ConfidentialComputing/metadata/V1/Service.php differ
diff --git a/ConfidentialComputing/src/V1/VerifyAttestationResponse.php b/ConfidentialComputing/src/V1/VerifyAttestationResponse.php
index 2a0e98365c56..3bfc91194e36 100644
--- a/ConfidentialComputing/src/V1/VerifyAttestationResponse.php
+++ b/ConfidentialComputing/src/V1/VerifyAttestationResponse.php
@@ -22,6 +22,13 @@ class VerifyAttestationResponse extends \Google\Protobuf\Internal\Message
* Generated from protobuf field string oidc_claims_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*/
protected $oidc_claims_token = '';
+ /**
+ * Output only. A list of messages that carry the partial error details
+ * related to VerifyAttestation.
+ *
+ * Generated from protobuf field repeated .google.rpc.Status partial_errors = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ */
+ private $partial_errors;
/**
* Constructor.
@@ -31,6 +38,9 @@ class VerifyAttestationResponse extends \Google\Protobuf\Internal\Message
*
* @type string $oidc_claims_token
* Output only. Same as claims_token, but as a string.
+ * @type array<\Google\Rpc\Status>|\Google\Protobuf\Internal\RepeatedField $partial_errors
+ * Output only. A list of messages that carry the partial error details
+ * related to VerifyAttestation.
* }
*/
public function __construct($data = NULL) {
@@ -64,5 +74,33 @@ public function setOidcClaimsToken($var)
return $this;
}
+ /**
+ * Output only. A list of messages that carry the partial error details
+ * related to VerifyAttestation.
+ *
+ * Generated from protobuf field repeated .google.rpc.Status partial_errors = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * @return \Google\Protobuf\Internal\RepeatedField
+ */
+ public function getPartialErrors()
+ {
+ return $this->partial_errors;
+ }
+
+ /**
+ * Output only. A list of messages that carry the partial error details
+ * related to VerifyAttestation.
+ *
+ * Generated from protobuf field repeated .google.rpc.Status partial_errors = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * @param array<\Google\Rpc\Status>|\Google\Protobuf\Internal\RepeatedField $var
+ * @return $this
+ */
+ public function setPartialErrors($var)
+ {
+ $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Rpc\Status::class);
+ $this->partial_errors = $arr;
+
+ return $this;
+ }
+
}