|
| 1 | +# Copyright 2025 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +require "google/cloud/pubsub" |
| 16 | + |
| 17 | +def commit_avro_schema schema_id:, avsc_file: |
| 18 | + # [START pubsub_commit_avro_schema] |
| 19 | + # schema_id = "your-schema-id" |
| 20 | + # avsc_file = "path/to/a/avsc_file.avsc" |
| 21 | + |
| 22 | + pubsub = Google::Cloud::Pubsub.new |
| 23 | + |
| 24 | + schemas = pubsub.schemas |
| 25 | + |
| 26 | + schema = schemas.get_schema name: pubsub.schema_path(schema_id) |
| 27 | + |
| 28 | + definition = File.read avsc_file |
| 29 | + |
| 30 | + schema.definition = definition |
| 31 | + |
| 32 | + result = schemas.commit_schema name: schema.name, |
| 33 | + schema: schema |
| 34 | + |
| 35 | + puts "Schema commited with revision #{result.revision_id}." |
| 36 | + result |
| 37 | + # [END pubsub_commit_avro_schema] |
| 38 | +end |
0 commit comments