-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(pubsub): Add commit_proto_schema to samples
- Loading branch information
1 parent
8b174a8
commit 4bb6ef0
Showing
5 changed files
with
137 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
google-cloud-pubsub/samples/acceptance/data/us-states-revision.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
syntax = "proto3"; | ||
|
||
package utilities; | ||
|
||
message StateProto { | ||
string name = 1; | ||
string post_abbr = 2; | ||
string capital_city = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2025 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
require "google/cloud/pubsub" | ||
|
||
def commit_proto_schema schema_id:, proto_file: | ||
# [START pubsub_commit_proto_schema] | ||
# schema_id = "your-schema-id" | ||
# proto_file = "path/to/a/proto/file/(.proto)/formatted/in/protocol/buffers" | ||
|
||
pubsub = Google::Cloud::Pubsub.new | ||
schema = pubsub.schema schema_id | ||
|
||
definition = File.read proto_file | ||
|
||
result = schema.commit definition, :protocol_buffer | ||
|
||
puts "Schema #{result.name} commited with revision #{result.revision_id}." | ||
# [END pubsub_commit_proto_schema] | ||
end |