google-cloud-confidential_computing-v1 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/confidential_computing/v1/confidential_computing/client.rb +10 -1
- data/lib/google/cloud/confidential_computing/v1/confidential_computing/rest/client.rb +32 -0
- data/lib/google/cloud/confidential_computing/v1/version.rb +1 -1
- data/lib/google/cloud/confidentialcomputing/v1/service_pb.rb +3 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/confidentialcomputing/v1/service.rb +8 -4
- data/proto_docs/google/rpc/status.rb +48 -0
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a4f8f8b81c147efd184884c9bca9e21f796c37cfb1e2f65eaafb2fabb00daaf
|
|
4
|
+
data.tar.gz: 38282095114201c31f9bac4b3274b5762d2889f5c4d67c130af3a28edb64d43c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f24dd557b74508cf500d6eccaba1a561f7be3febb44bc9e1bf180b81f72098eb22c29f44552bcc6d585dc340496cde1fd30bd39310fc02ca4f3c88a7fa3d28f8
|
|
7
|
+
data.tar.gz: 60a90a19ffb4b61b9444b3c53a7ae6871dabcbac745dafb67811f31a8d8c315423c5f324a8234a1b0afca33ad38920e192f759a81a97cdbd55f2ad67ac0279a9
|
|
@@ -157,7 +157,8 @@ module Google
|
|
|
157
157
|
credentials: credentials,
|
|
158
158
|
endpoint: @config.endpoint,
|
|
159
159
|
channel_args: @config.channel_args,
|
|
160
|
-
interceptors: @config.interceptors
|
|
160
|
+
interceptors: @config.interceptors,
|
|
161
|
+
channel_pool_config: @config.channel_pool
|
|
161
162
|
)
|
|
162
163
|
end
|
|
163
164
|
|
|
@@ -476,6 +477,14 @@ module Google
|
|
|
476
477
|
end
|
|
477
478
|
end
|
|
478
479
|
|
|
480
|
+
##
|
|
481
|
+
# Configuration for the channel pool
|
|
482
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
|
483
|
+
#
|
|
484
|
+
def channel_pool
|
|
485
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
|
486
|
+
end
|
|
487
|
+
|
|
479
488
|
##
|
|
480
489
|
# Configuration RPC class for the ConfidentialComputing API.
|
|
481
490
|
#
|
|
@@ -193,6 +193,22 @@ module Google
|
|
|
193
193
|
# @return [::Google::Cloud::ConfidentialComputing::V1::Challenge]
|
|
194
194
|
#
|
|
195
195
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
|
196
|
+
#
|
|
197
|
+
# @example Basic example
|
|
198
|
+
# require "google/cloud/confidential_computing/v1"
|
|
199
|
+
#
|
|
200
|
+
# # Create a client object. The client can be reused for multiple calls.
|
|
201
|
+
# client = Google::Cloud::ConfidentialComputing::V1::ConfidentialComputing::Rest::Client.new
|
|
202
|
+
#
|
|
203
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
|
204
|
+
# request = Google::Cloud::ConfidentialComputing::V1::CreateChallengeRequest.new
|
|
205
|
+
#
|
|
206
|
+
# # Call the create_challenge method.
|
|
207
|
+
# result = client.create_challenge request
|
|
208
|
+
#
|
|
209
|
+
# # The returned object is of type Google::Cloud::ConfidentialComputing::V1::Challenge.
|
|
210
|
+
# p result
|
|
211
|
+
#
|
|
196
212
|
def create_challenge request, options = nil
|
|
197
213
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
|
198
214
|
|
|
@@ -268,6 +284,22 @@ module Google
|
|
|
268
284
|
# @return [::Google::Cloud::ConfidentialComputing::V1::VerifyAttestationResponse]
|
|
269
285
|
#
|
|
270
286
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
|
287
|
+
#
|
|
288
|
+
# @example Basic example
|
|
289
|
+
# require "google/cloud/confidential_computing/v1"
|
|
290
|
+
#
|
|
291
|
+
# # Create a client object. The client can be reused for multiple calls.
|
|
292
|
+
# client = Google::Cloud::ConfidentialComputing::V1::ConfidentialComputing::Rest::Client.new
|
|
293
|
+
#
|
|
294
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
|
295
|
+
# request = Google::Cloud::ConfidentialComputing::V1::VerifyAttestationRequest.new
|
|
296
|
+
#
|
|
297
|
+
# # Call the verify_attestation method.
|
|
298
|
+
# result = client.verify_attestation request
|
|
299
|
+
#
|
|
300
|
+
# # The returned object is of type Google::Cloud::ConfidentialComputing::V1::VerifyAttestationResponse.
|
|
301
|
+
# p result
|
|
302
|
+
#
|
|
271
303
|
def verify_attestation request, options = nil
|
|
272
304
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
|
273
305
|
|
|
@@ -9,9 +9,10 @@ require 'google/api/client_pb'
|
|
|
9
9
|
require 'google/api/field_behavior_pb'
|
|
10
10
|
require 'google/api/resource_pb'
|
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
|
+
require 'google/rpc/status_pb'
|
|
12
13
|
|
|
13
14
|
|
|
14
|
-
descriptor_data = "\n3google/cloud/confidentialcomputing/v1/service.proto\x12%google.cloud.confidentialcomputing.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa5\x02\n\tChallenge\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x11\n\x04used\x18\x04 \x01(\x08\x42\x03\xe0\x41\x03\x12\x16\n\ttpm_nonce\x18\x06 \x01(\tB\x03\xe0\x41\x03:n\xea\x41k\n.confidentialcomputing.googleapis.com/Challenge\x12\x39projects/{project}/locations/{location}/challenges/{uuid}\"\x9d\x01\n\x16\x43reateChallengeRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12H\n\tchallenge\x18\x02 \x01(\x0b\x32\x30.google.cloud.confidentialcomputing.v1.ChallengeB\x03\xe0\x41\x02\"\xc4\x03\n\x18VerifyAttestationRequest\x12I\n\tchallenge\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.confidentialcomputing.googleapis.com/Challenge\x12S\n\x0fgcp_credentials\x18\x02 \x01(\x0b\x32\x35.google.cloud.confidentialcomputing.v1.GcpCredentialsB\x03\xe0\x41\x01\x12S\n\x0ftpm_attestation\x18\x03 \x01(\x0b\x32\x35.google.cloud.confidentialcomputing.v1.TpmAttestationB\x03\xe0\x41\x02\x12\x62\n\x17\x63onfidential_space_info\x18\x04 \x01(\x0b\x32<.google.cloud.confidentialcomputing.v1.ConfidentialSpaceInfoB\x03\xe0\x41\x01\x12O\n\rtoken_options\x18\x05 \x01(\x0b\x32\x33.google.cloud.confidentialcomputing.v1.TokenOptionsB\x03\xe0\x41\x01\"
|
|
15
|
+
descriptor_data = "\n3google/cloud/confidentialcomputing/v1/service.proto\x12%google.cloud.confidentialcomputing.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xa5\x02\n\tChallenge\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x11\n\x04used\x18\x04 \x01(\x08\x42\x03\xe0\x41\x03\x12\x16\n\ttpm_nonce\x18\x06 \x01(\tB\x03\xe0\x41\x03:n\xea\x41k\n.confidentialcomputing.googleapis.com/Challenge\x12\x39projects/{project}/locations/{location}/challenges/{uuid}\"\x9d\x01\n\x16\x43reateChallengeRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12H\n\tchallenge\x18\x02 \x01(\x0b\x32\x30.google.cloud.confidentialcomputing.v1.ChallengeB\x03\xe0\x41\x02\"\xc4\x03\n\x18VerifyAttestationRequest\x12I\n\tchallenge\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.confidentialcomputing.googleapis.com/Challenge\x12S\n\x0fgcp_credentials\x18\x02 \x01(\x0b\x32\x35.google.cloud.confidentialcomputing.v1.GcpCredentialsB\x03\xe0\x41\x01\x12S\n\x0ftpm_attestation\x18\x03 \x01(\x0b\x32\x35.google.cloud.confidentialcomputing.v1.TpmAttestationB\x03\xe0\x41\x02\x12\x62\n\x17\x63onfidential_space_info\x18\x04 \x01(\x0b\x32<.google.cloud.confidentialcomputing.v1.ConfidentialSpaceInfoB\x03\xe0\x41\x01\x12O\n\rtoken_options\x18\x05 \x01(\x0b\x32\x33.google.cloud.confidentialcomputing.v1.TokenOptionsB\x03\xe0\x41\x01\"l\n\x19VerifyAttestationResponse\x12\x1e\n\x11oidc_claims_token\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12/\n\x0epartial_errors\x18\x03 \x03(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\"3\n\x0eGcpCredentials\x12!\n\x19service_account_id_tokens\x18\x02 \x03(\t\"9\n\x0cTokenOptions\x12\x15\n\x08\x61udience\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05nonce\x18\x02 \x03(\tB\x03\xe0\x41\x01\"\x8f\x03\n\x0eTpmAttestation\x12K\n\x06quotes\x18\x01 \x03(\x0b\x32;.google.cloud.confidentialcomputing.v1.TpmAttestation.Quote\x12\x15\n\rtcg_event_log\x18\x02 \x01(\x0c\x12\x1b\n\x13\x63\x61nonical_event_log\x18\x03 \x01(\x0c\x12\x0f\n\x07\x61k_cert\x18\x04 \x01(\x0c\x12\x12\n\ncert_chain\x18\x05 \x03(\x0c\x1a\xd6\x01\n\x05Quote\x12\x11\n\thash_algo\x18\x01 \x01(\x05\x12^\n\npcr_values\x18\x02 \x03(\x0b\x32J.google.cloud.confidentialcomputing.v1.TpmAttestation.Quote.PcrValuesEntry\x12\x11\n\traw_quote\x18\x03 \x01(\x0c\x12\x15\n\rraw_signature\x18\x04 \x01(\x0c\x1a\x30\n\x0ePcrValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\"j\n\x15\x43onfidentialSpaceInfo\x12Q\n\x0fsigned_entities\x18\x01 \x03(\x0b\x32\x33.google.cloud.confidentialcomputing.v1.SignedEntityB\x03\xe0\x41\x01\"w\n\x0cSignedEntity\x12g\n\x1a\x63ontainer_image_signatures\x18\x01 \x03(\x0b\x32>.google.cloud.confidentialcomputing.v1.ContainerImageSignatureB\x03\xe0\x41\x01\"\xaf\x01\n\x17\x43ontainerImageSignature\x12\x14\n\x07payload\x18\x01 \x01(\x0c\x42\x03\xe0\x41\x01\x12\x16\n\tsignature\x18\x02 \x01(\x0c\x42\x03\xe0\x41\x01\x12\x17\n\npublic_key\x18\x03 \x01(\x0c\x42\x03\xe0\x41\x01\x12M\n\x07sig_alg\x18\x04 \x01(\x0e\x32\x37.google.cloud.confidentialcomputing.v1.SigningAlgorithmB\x03\xe0\x41\x01*\x7f\n\x10SigningAlgorithm\x12!\n\x1dSIGNING_ALGORITHM_UNSPECIFIED\x10\x00\x12\x15\n\x11RSASSA_PSS_SHA256\x10\x01\x12\x1a\n\x16RSASSA_PKCS1V15_SHA256\x10\x02\x12\x15\n\x11\x45\x43\x44SA_P256_SHA256\x10\x03\x32\xb7\x04\n\x15\x43onfidentialComputing\x12\xd8\x01\n\x0f\x43reateChallenge\x12=.google.cloud.confidentialcomputing.v1.CreateChallengeRequest\x1a\x30.google.cloud.confidentialcomputing.v1.Challenge\"T\x82\xd3\xe4\x93\x02;\"./v1/{parent=projects/*/locations/*}/challenges:\tchallenge\xda\x41\x10parent,challenge\x12\xe8\x01\n\x11VerifyAttestation\x12?.google.cloud.confidentialcomputing.v1.VerifyAttestationRequest\x1a@.google.cloud.confidentialcomputing.v1.VerifyAttestationResponse\"P\x82\xd3\xe4\x93\x02J\"E/v1/{challenge=projects/*/locations/*/challenges/*}:verifyAttestation:\x01*\x1aX\xca\x41$confidentialcomputing.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x97\x02\n)com.google.cloud.confidentialcomputing.v1B\x0cServiceProtoP\x01Z_cloud.google.com/go/confidentialcomputing/apiv1/confidentialcomputingpb;confidentialcomputingpb\xaa\x02%Google.Cloud.ConfidentialComputing.V1\xca\x02%Google\\Cloud\\ConfidentialComputing\\V1\xea\x02(Google::Cloud::ConfidentialComputing::V1b\x06proto3"
|
|
15
16
|
|
|
16
17
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
17
18
|
|
|
@@ -27,6 +28,7 @@ rescue TypeError => e
|
|
|
27
28
|
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
28
29
|
imports = [
|
|
29
30
|
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
|
31
|
+
["google.rpc.Status", "google/rpc/status.proto"],
|
|
30
32
|
]
|
|
31
33
|
imports.each do |type_name, expected_filename|
|
|
32
34
|
import_file = pool.lookup(type_name).file_descriptor
|
|
@@ -66,6 +66,20 @@ module Google
|
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
|
67
67
|
# non-empty value to expect.
|
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
|
69
|
+
|
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
|
73
|
+
# `name` field on the resource.
|
|
74
|
+
#
|
|
75
|
+
# This behavior should not be applied to references to other resources within
|
|
76
|
+
# the message.
|
|
77
|
+
#
|
|
78
|
+
# The identifier field of resources often have different field behavior
|
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
|
82
|
+
IDENTIFIER = 8
|
|
69
83
|
end
|
|
70
84
|
end
|
|
71
85
|
end
|
|
@@ -90,6 +90,10 @@ module Google
|
|
|
90
90
|
# @!attribute [r] oidc_claims_token
|
|
91
91
|
# @return [::String]
|
|
92
92
|
# Output only. Same as claims_token, but as a string.
|
|
93
|
+
# @!attribute [r] partial_errors
|
|
94
|
+
# @return [::Array<::Google::Rpc::Status>]
|
|
95
|
+
# Output only. A list of messages that carry the partial error details
|
|
96
|
+
# related to VerifyAttestation.
|
|
93
97
|
class VerifyAttestationResponse
|
|
94
98
|
include ::Google::Protobuf::MessageExts
|
|
95
99
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -202,12 +206,12 @@ module Google
|
|
|
202
206
|
# signature.
|
|
203
207
|
# @!attribute [rw] payload
|
|
204
208
|
# @return [::String]
|
|
205
|
-
#
|
|
209
|
+
# Optional. The binary signature payload following the SimpleSigning format
|
|
206
210
|
# https://github.com/sigstore/cosign/blob/main/specs/SIGNATURE_SPEC.md#simple-signing.
|
|
207
211
|
# This payload includes the container image digest.
|
|
208
212
|
# @!attribute [rw] signature
|
|
209
213
|
# @return [::String]
|
|
210
|
-
#
|
|
214
|
+
# Optional. A signature over the payload.
|
|
211
215
|
# The container image digest is incorporated into the signature as follows:
|
|
212
216
|
# 1. Generate a SimpleSigning format payload that includes the container
|
|
213
217
|
# image digest.
|
|
@@ -216,10 +220,10 @@ module Google
|
|
|
216
220
|
# `Sign(sha256(SimpleSigningPayload(sha256(Image Manifest))))`
|
|
217
221
|
# @!attribute [rw] public_key
|
|
218
222
|
# @return [::String]
|
|
219
|
-
#
|
|
223
|
+
# Optional. Reserved for future use.
|
|
220
224
|
# @!attribute [rw] sig_alg
|
|
221
225
|
# @return [::Google::Cloud::ConfidentialComputing::V1::SigningAlgorithm]
|
|
222
|
-
#
|
|
226
|
+
# Optional. Reserved for future use.
|
|
223
227
|
class ContainerImageSignature
|
|
224
228
|
include ::Google::Protobuf::MessageExts
|
|
225
229
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2023 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Rpc
|
|
22
|
+
# The `Status` type defines a logical error model that is suitable for
|
|
23
|
+
# different programming environments, including REST APIs and RPC APIs. It is
|
|
24
|
+
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
|
|
25
|
+
# three pieces of data: error code, error message, and error details.
|
|
26
|
+
#
|
|
27
|
+
# You can find out more about this error model and how to work with it in the
|
|
28
|
+
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
|
29
|
+
# @!attribute [rw] code
|
|
30
|
+
# @return [::Integer]
|
|
31
|
+
# The status code, which should be an enum value of
|
|
32
|
+
# [google.rpc.Code][google.rpc.Code].
|
|
33
|
+
# @!attribute [rw] message
|
|
34
|
+
# @return [::String]
|
|
35
|
+
# A developer-facing error message, which should be in English. Any
|
|
36
|
+
# user-facing error message should be localized and sent in the
|
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
|
38
|
+
# by the client.
|
|
39
|
+
# @!attribute [rw] details
|
|
40
|
+
# @return [::Array<::Google::Protobuf::Any>]
|
|
41
|
+
# A list of messages that carry the error details. There is a common set of
|
|
42
|
+
# message types for APIs to use.
|
|
43
|
+
class Status
|
|
44
|
+
include ::Google::Protobuf::MessageExts
|
|
45
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-confidential_computing-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.20.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.20.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -212,6 +212,7 @@ files:
|
|
|
212
212
|
- proto_docs/google/protobuf/any.rb
|
|
213
213
|
- proto_docs/google/protobuf/duration.rb
|
|
214
214
|
- proto_docs/google/protobuf/timestamp.rb
|
|
215
|
+
- proto_docs/google/rpc/status.rb
|
|
215
216
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
|
216
217
|
licenses:
|
|
217
218
|
- Apache-2.0
|
|
@@ -231,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
231
232
|
- !ruby/object:Gem::Version
|
|
232
233
|
version: '0'
|
|
233
234
|
requirements: []
|
|
234
|
-
rubygems_version: 3.4.
|
|
235
|
+
rubygems_version: 3.4.19
|
|
235
236
|
signing_key:
|
|
236
237
|
specification_version: 4
|
|
237
238
|
summary: Attestation verifier for Confidential Space.
|