- release_tracks: [ALPHA, BETA, GA] help_text: brief: Create a Pub/Sub schema. description: | Create a new Pub/Sub schema. examples: | To create a PROTOCOL_BUFFER schema called "key-schema" that requires exactly one string field named "key", run: $ {command} key-schema --definition="syntax = 'proto3'; message Message { optional string key = 1; }" --type=PROTOCOL_BUFFER To create an equivalent AVRO schema, run: $ {command} key-schema --definition='{ "type": "record", "namespace": "my.ns", "name": "KeyMsg", "fields": [ { "name": "key", "type": "string" } ] }' --type=AVRO request: collection: pubsub.projects.schemas api_version: v1 arguments: resource: help_text: Pub/Sub schema to create. spec: !REF googlecloudsdk.command_lib.pubsub.resources:schema params: - group: help_text: | Schema definition. mutex: true required: true params: - arg_name: definition api_field: schema.definition help_text: | Inline schema definition. - arg_name: definition-file api_field: schema.definition type: "googlecloudsdk.calliope.arg_parsers:FileContents:" help_text: | File containing schema definition. - arg_name: type api_field: schema.type required: true help_text: | Type of the schema. choices: - arg_value: avro enum_value: AVRO - arg_value: protocol-buffer enum_value: PROTOCOL_BUFFER - arg_name: tags release_tracks: [ALPHA] hidden: true api_field: schema.tags.additionalProperties metavar: KEY=VALUE help_text: | List of tag KEY=VALUE pairs to add. type: arg_dict: flatten: true spec: - api_field: key - api_field: value