Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0c9b83a

Browse filesBrowse files
feat: Add a new field partial_errors to VerifyAttestationResponse proto (#11559)
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent afda0ce commit 0c9b83a
Copy full SHA for 0c9b83a

File tree

Expand file treeCollapse file tree

7 files changed

+16
-3
lines changed
Filter options
Expand file treeCollapse file tree

7 files changed

+16
-3
lines changed

‎packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing/gapic_version.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing/gapic_version.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

‎packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/gapic_version.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/gapic_version.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

‎packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/services/confidential_computing/async_client.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/services/confidential_computing/async_client.py
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444

4545
from google.cloud.location import locations_pb2 # type: ignore
4646
from google.protobuf import timestamp_pb2 # type: ignore
47+
from google.rpc import status_pb2 # type: ignore
4748

4849
from google.cloud.confidentialcomputing_v1.types import service
4950

‎packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/services/confidential_computing/client.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/services/confidential_computing/client.py
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848

4949
from google.cloud.location import locations_pb2 # type: ignore
5050
from google.protobuf import timestamp_pb2 # type: ignore
51+
from google.rpc import status_pb2 # type: ignore
5152

5253
from google.cloud.confidentialcomputing_v1.types import service
5354

‎packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/types/service.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/google/cloud/confidentialcomputing_v1/types/service.py
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from typing import MutableMapping, MutableSequence
1919

2020
from google.protobuf import timestamp_pb2 # type: ignore
21+
from google.rpc import status_pb2 # type: ignore
2122
import proto # type: ignore
2223

2324
__protobuf__ = proto.module(
@@ -192,12 +193,21 @@ class VerifyAttestationResponse(proto.Message):
192193
Attributes:
193194
oidc_claims_token (str):
194195
Output only. Same as claims_token, but as a string.
196+
partial_errors (MutableSequence[google.rpc.status_pb2.Status]):
197+
Output only. A list of messages that carry
198+
the partial error details related to
199+
VerifyAttestation.
195200
"""
196201

197202
oidc_claims_token: str = proto.Field(
198203
proto.STRING,
199204
number=2,
200205
)
206+
partial_errors: MutableSequence[status_pb2.Status] = proto.RepeatedField(
207+
proto.MESSAGE,
208+
number=3,
209+
message=status_pb2.Status,
210+
)
201211

202212

203213
class GcpCredentials(proto.Message):

‎packages/google-cloud-confidentialcomputing/samples/generated_samples/snippet_metadata_google.cloud.confidentialcomputing.v1.json

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/samples/generated_samples/snippet_metadata_google.cloud.confidentialcomputing.v1.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"language": "PYTHON",
1010
"name": "google-cloud-confidentialcomputing",
11-
"version": "0.3.0"
11+
"version": "0.1.0"
1212
},
1313
"snippets": [
1414
{

‎packages/google-cloud-confidentialcomputing/tests/unit/gapic/confidentialcomputing_v1/test_confidential_computing.py

Copy file name to clipboardExpand all lines: packages/google-cloud-confidentialcomputing/tests/unit/gapic/confidentialcomputing_v1/test_confidential_computing.py
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
from google.oauth2 import service_account
3737
from google.protobuf import json_format
3838
from google.protobuf import timestamp_pb2 # type: ignore
39+
from google.rpc import status_pb2 # type: ignore
3940
import grpc
4041
from grpc.experimental import aio
4142
from proto.marshal.rules import wrappers

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.