Data types
TypeSpec.Protobuf
Extern
A model that represents an external Protobuf reference. This type can be used to import and utilize Protobuf
declarations that are not declared in TypeSpec within TypeSpec sources. When the emitter encounters an Extern
, it
will insert an import
statement for the corresponding Path
and refer to the type by Name
.
Usage
If you have a file called test.proto
that declares a package named test
and a message named Widget
, you can
use the Extern
type to declare a model in TypeSpec that refers to your external definition of test.Widget
. See
the example below.
When the TypeSpec definition of Widget
is encountered, the Protobuf emitter will represent it as a reference to
test.Widget
and insert an import for it, rather than attempt to convert the model to an equivalent message.
Template Parameters
Name | Description |
---|---|
Path | the relative path to a .proto file to import |
Name | the fully-qualified reference to the type this model represents within the .proto file |
Examples
Properties
Name | Type | Description |
---|---|---|
_extern | never |
Map
A type representing a Protobuf map
. Instances of this type in models will be converted to the built-in map
type
in Protobuf.
The key type of a Protobuf map
must be any integral type or string
. The value type can be any type other than
another Map
.
Template Parameters
Name | Description |
---|---|
Key | the key type (any integral type or string) |
Value | the value type (any type other than another map) |
Properties
None
PackageDetails
Details applied to a package definition by the [@package
](./decorators#
Properties
Name | Type | Description |
---|---|---|
name? | string | The packageās name. By default, the packageās name is constructed from the namespace it is applied to. |
options? | Record<string | boolean | numeric> | The packageās top-level options. See the Protobuf Language Guide - Options for more information. Currently, only string, boolean, and numeric options are supported. |
StreamMode
The streaming mode of an operation. One of:
Duplex
: both the input and output of the operation are streaming.In
: the input of the operation is streaming.Out
: the output of the operation is streaming.None
: neither the input nor the output are streaming.
See the [@stream
](./decorators#
Name | Value | Description |
---|---|---|
Duplex | Both the input and output of the operation are streaming. Both the client and service will stream messages to each other until the connections are closed. | |
In | The input of the operation is streaming. The client will send a stream of events; and, once the stream is closed, the service will respond with a message. | |
Out | The output of the operation is streaming. The client will send a message to the service, and the service will send a stream of events back to the client. | |
None | Neither the input nor the output are streaming. This is the default mode of an operation without the @stream decorator. |
fixed32
An unsigned 32-bit integer that will use the fixed32
encoding when used in a Protobuf message.
Protobuf binary format
Always four bytes. More efficient than uint32
if values are often greater than 228.
fixed64
An unsigned 64-bit integer that will use the fixed64
encoding when used in a Protobuf message.
Protobuf binary format
Always eight bytes. More efficient than uint64
if values are often greater than 256.
sfixed32
A signed 32-bit integer that will use the sfixed32
encoding when used in a Protobuf message.
Protobuf binary format
Always four bytes.
sfixed64
A signed 64-bit integer that will use the sfixed64
encoding when used in a Protobuf message.
Protobuf binary format
Always eight bytes.
sint32
A signed 32-bit integer that will use the sint32
encoding when used in a Protobuf message.
Protobuf binary format
Uses variable-length encoding. These more efficiently encode negative numbers than regular int32s.
sint64
A signed 64-bit integer that will use the sint64
encoding when used in a Protobuf message.
Protobuf binary format
Uses variable-length encoding. These more efficiently encode negative numbers than regular int64s
.
TypeSpec.Protobuf.WellKnown
Any
Any value.
This model references google.protobuf.Any
from google/protobuf/any.proto
.
Properties
Name | Type | Description |
---|---|---|
_extern | never |
Empty
An empty message.
This model references google.protobuf.Empty
from google/protobuf/empty.proto
.
Properties
Name | Type | Description |
---|---|---|
_extern | never |
LatLng
A latitude and longitude.
This model references google.type.LatLng
from google/type/latlng.proto
.
Properties
Name | Type | Description |
---|---|---|
_extern | never |
Timestamp
A timestamp.
This model references google.protobuf.Timestamp
from google/protobuf/timestamp.proto
.
Properties
Name | Type | Description |
---|---|---|
_extern | never |