Skip to content

protobuf.wkt

Protobuf Well-Known types.

ext_csharp module-attribute

ext_csharp = Extension()
extend google.protobuf.FeatureSet { optional pb.CSharpFeatures csharp = 1004 [json_name = "[pb.csharp]"] }

ext_cpp module-attribute

ext_cpp = Extension()
extend google.protobuf.FeatureSet { optional pb.CppFeatures cpp = 1000 [json_name = "[pb.cpp]"] }

ext_go module-attribute

ext_go = Extension()
extend google.protobuf.FeatureSet { optional pb.GoFeatures go = 1002 [json_name = "[pb.go]"] }

ext_java module-attribute

ext_java = Extension()
extend google.protobuf.FeatureSet { optional pb.JavaFeatures java = 1001 [json_name = "[pb.java]"] }

Any

Any(*, type_url='', value=b'')

Bases: Message[_AnyFields], AnyMixin

Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.

In its binary encoding, an Any is an ordinary message; but in other wire forms like JSON, it has a special encoding. The format of the type URL is described on the type_url field.

Protobuf APIs provide utilities to interact with Any values:

  • A 'pack' operation accepts a message and constructs a generic Any wrapper around it.
  • An 'unpack' operation reads the content of an Any message, either into an existing message or a new one. Unpack operations must check the type of the value they unpack against the declared type_url.
  • An 'is' operation decides whether an Any contains a message of the given type, i.e. whether it can 'unpack' that type.

The JSON format representation of an Any follows one of these cases:

  • For types without special-cased JSON encodings, the JSON format representation of the Any is the same as that of the message, with an additional @type field which contains the type URL.
  • For types with special-cased JSON encodings (typically called 'well-known' types, listed in https://protobuf.dev/programming-guides/json/#any), the JSON format representation has a key @type which contains the type URL and a key value which contains the JSON-serialized value.

The text format representation of an Any is like a message with one field whose name is the type URL in brackets. For example, an Any containing a foo.Bar message may be written [type.googleapis.com/foo.Bar] { a: 2 }.

message google.protobuf.Any

Attributes:

Name Type Description
type_url str

Identifies the type of the serialized Protobuf message with a URI reference consisting of a prefix ending in a slash and the fully-qualified type name.

Example: type.googleapis.com/google.protobuf.StringValue

This string must contain at least one / character, and the content after the last / must be the fully-qualified name of the type in canonical form, without a leading dot. Do not write a scheme on these URI references so that clients do not attempt to contact them.

The prefix is arbitrary and Protobuf implementations are expected to simply strip off everything up to and including the last / to identify the type. type.googleapis.com/ is a common default prefix that some legacy implementations require. This prefix does not indicate the origin of the type, and URIs containing it are not expected to respond to any requests.

All type URL strings must be legal URI references with the additional restriction (for the text format) that the content of the reference must consist only of alphanumeric characters, percent-encoded escapes, and characters in the following set (not including the outer backticks): /-.~_!$&()*+,;=. Despite our allowing percent encodings, implementations should not unescape them to prevent confusion with existing parsers. For example, type.googleapis.com%2FFoo should be rejected.

In the original design of Any, the possibility of launching a type resolution service at these type URLs was considered but Protobuf never implemented one and considers contacting these URLs to be problematic and a potential security issue. Do not attempt to contact type URLs.

string type_url = 1;
value bytes

Holds a Protobuf serialization of the type described by type_url.

bytes value = 2;

pack classmethod

pack(message)

Creates an Any from a message.

is_type

is_type(type_info)

Returns true if the Any contains the type given by schema or type name.

unpack

unpack(type_info)

Unpacks the message the Any represents.

Returns:

Type Description
T | None

Returns None if the Any is empty, or if it does not contain the type

T | None

given by schema. Otherwise, the unpacked message.

Api

Api(
    *,
    name="",
    methods=None,
    options=None,
    version="",
    source_context=None,
    mixins=None,
    syntax=None,
    edition="",
)

Bases: Message[_ApiFields]

Api is a light-weight descriptor for an API Interface.

Interfaces are also described as "protocol buffer services" in some contexts, such as by the "service" keyword in a .proto file, but they are different from API Services, which represent a concrete implementation of an interface as opposed to simply a description of methods and bindings. They are also sometimes simply referred to as "APIs" in other contexts, such as the name of this message itself. See https://cloud.google.com/apis/design/glossary for detailed terminology.

New usages of this message as an alternative to ServiceDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.Api

Attributes:

Name Type Description
name str

The fully qualified name of this interface, including package name followed by the interface's simple name.

string name = 1;
methods list[Method]

The methods of this interface, in unspecified order.

repeated google.protobuf.Method methods = 2;
options list[Option]

Any metadata attached to the interface.

repeated google.protobuf.Option options = 3;
version str

A version string for this interface. If specified, must have the form major-version.minor-version, as in 1.10. If the minor version is omitted, it defaults to zero. If the entire version field is empty, the major version is derived from the package name, as outlined below. If the field is not empty, the version in the package name will be verified to be consistent with what is provided here.

The versioning schema uses semantic versioning where the major version number indicates a breaking change and the minor version an additive, non-breaking change. Both version numbers are signals to users what to expect from different versions, and should be carefully chosen based on the product plan.

The major version is also reflected in the package name of the interface, which must end in v<major-version>, as in google.feature.v1. For major versions 0 and 1, the suffix can be omitted. Zero major versions must only be used for experimental, non-GA interfaces.

string version = 4;
source_context SourceContext | None

Source context for the protocol buffer service represented by this message.

optional google.protobuf.SourceContext source_context = 5;
mixins list[Mixin]

Included interfaces. See [Mixin][].

repeated google.protobuf.Mixin mixins = 6;
syntax Syntax

The source syntax of the service.

google.protobuf.Syntax syntax = 7;
edition str

The source edition string, only valid when syntax is SYNTAX_EDITIONS.

string edition = 8;

Method

Method(
    *,
    name="",
    request_type_url="",
    request_streaming=False,
    response_type_url="",
    response_streaming=False,
    options=None,
    syntax=None,
    edition="",
)

Bases: Message[_MethodFields]

Method represents a method of an API interface.

New usages of this message as an alternative to MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.Method

Attributes:

Name Type Description
name str

The simple name of this method.

string name = 1;
request_type_url str

A URL of the input message type.

string request_type_url = 2;
request_streaming bool

If true, the request is streamed.

bool request_streaming = 3;
response_type_url str

The URL of the output message type.

string response_type_url = 4;
response_streaming bool

If true, the response is streamed.

bool response_streaming = 5;
options list[Option]

Any metadata attached to the method.

repeated google.protobuf.Option options = 6;
syntax Syntax

The source syntax of this method.

This field should be ignored, instead the syntax should be inherited from Api. This is similar to Field and EnumValue.

google.protobuf.Syntax syntax = 7 [deprecated = true];
edition str

The source edition string, only valid when syntax is SYNTAX_EDITIONS.

This field should be ignored, instead the edition should be inherited from Api. This is similar to Field and EnumValue.

string edition = 8 [deprecated = true];

Mixin

Mixin(*, name='', root='')

Bases: Message[_MixinFields]

Declares an API Interface to be included in this interface. The including interface must redeclare all the methods from the included interface, but documentation and options are inherited as follows:

  • If after comment and whitespace stripping, the documentation string of the redeclared method is empty, it will be inherited from the original method.

  • Each annotation belonging to the service config (http, visibility) which is not set in the redeclared method will be inherited.

  • If an http annotation is inherited, the path pattern will be modified as follows. Any version prefix will be replaced by the version of the including interface plus the [root][] path if specified.

Example of a simple mixin:

package google.acl.v1;
service AccessControl {
  // Get the underlying ACL object.
  rpc GetAcl(GetAclRequest) returns (Acl) {
    option (google.api.http).get = "/v1/{resource=**}:getAcl";
  }
}

package google.storage.v2;
service Storage {
  rpc GetAcl(GetAclRequest) returns (Acl);

  // Get a data record.
  rpc GetData(GetDataRequest) returns (Data) {
    option (google.api.http).get = "/v2/{resource=**}";
  }
}

Example of a mixin configuration:

apis:
- name: google.storage.v2.Storage
  mixins:
  - name: google.acl.v1.AccessControl

The mixin construct implies that all methods in AccessControl are also declared with same name and request/response types in Storage. A documentation generator or annotation processor will see the effective Storage.GetAcl method after inheriting documentation and annotations as follows:

service Storage {
  // Get the underlying ACL object.
  rpc GetAcl(GetAclRequest) returns (Acl) {
    option (google.api.http).get = "/v2/{resource=**}:getAcl";
  }
  ...
}

Note how the version in the path pattern changed from v1 to v2.

If the root field in the mixin is specified, it should be a relative path under which inherited HTTP paths are placed. Example:

apis:
- name: google.storage.v2.Storage
  mixins:
  - name: google.acl.v1.AccessControl
    root: acls

This implies the following inherited HTTP annotation:

service Storage {
  // Get the underlying ACL object.
  rpc GetAcl(GetAclRequest) returns (Acl) {
    option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
  }
  ...
}
message google.protobuf.Mixin

Attributes:

Name Type Description
name str

The fully qualified name of the interface which is included.

string name = 1;
root str

If non-empty specifies a path under which inherited HTTP paths are rooted.

string root = 2;

CSharpFeatures

CSharpFeatures()

Bases: Message[_CSharpFeaturesFields]

message pb.CSharpFeatures

CodeGeneratorRequest

CodeGeneratorRequest(
    *,
    file_to_generate=None,
    parameter=None,
    proto_file=None,
    source_file_descriptors=None,
    compiler_version=None,
)

Bases: Message[_CodeGeneratorRequestFields]

An encoded CodeGeneratorRequest is written to the plugin's stdin.

message google.protobuf.compiler.CodeGeneratorRequest

Attributes:

Name Type Description
file_to_generate list[str]

The .proto files that were explicitly listed on the command-line. The code generator should generate code only for these files. Each file's descriptor will be included in proto_file, below.

repeated string file_to_generate = 1;
parameter str

The generator parameter passed on the command-line.

optional string parameter = 2;
proto_file list[FileDescriptorProto]

FileDescriptorProtos for all files in files_to_generate and everything they import. The files will appear in topological order, so each file appears before any file that imports it.

Note: the files listed in files_to_generate will include runtime-retention options only, but all other files will include source-retention options. The source_file_descriptors field below is available in case you need source-retention options for files_to_generate.

protoc guarantees that all proto_files will be written after the fields above, even though this is not technically guaranteed by the protobuf wire format. This theoretically could allow a plugin to stream in the FileDescriptorProtos and handle them one by one rather than read the entire set into memory at once. However, as of this writing, this is not similarly optimized on protoc's end -- it will store all fields in memory at once before sending them to the plugin.

Type names of fields and extensions in the FileDescriptorProto are always fully qualified.

repeated google.protobuf.FileDescriptorProto proto_file = 15;
source_file_descriptors list[FileDescriptorProto]

File descriptors with all options, including source-retention options. These descriptors are only provided for the files listed in files_to_generate.

repeated google.protobuf.FileDescriptorProto source_file_descriptors = 17;
compiler_version Version | None

The version number of protocol compiler.

optional google.protobuf.compiler.Version compiler_version = 3;

CodeGeneratorResponse

CodeGeneratorResponse(
    *,
    error=None,
    supported_features=None,
    minimum_edition=None,
    maximum_edition=None,
    file=None,
)

Bases: Message[_CodeGeneratorResponseFields]

The plugin writes an encoded CodeGeneratorResponse to stdout.

message google.protobuf.compiler.CodeGeneratorResponse

Attributes:

Name Type Description
error str

Error message. If non-empty, code generation failed. The plugin process should exit with status code zero even if it reports an error in this way.

This should be used to indicate errors in .proto files which prevent the code generator from generating correct code. Errors which indicate a problem in protoc itself -- such as the input CodeGeneratorRequest being unparseable -- should be reported by writing a message to stderr and exiting with a non-zero status code.

optional string error = 1;
supported_features int

A bitmask of supported features that the code generator supports. This is a bitwise "or" of values from the Feature enum.

optional uint64 supported_features = 2;
minimum_edition int

The minimum edition this plugin supports. This will be treated as an Edition enum, but we want to allow unknown values. It should be specified according the edition enum value, not the edition number. Only takes effect for plugins that have FEATURE_SUPPORTS_EDITIONS set.

optional int32 minimum_edition = 3;
maximum_edition int

The maximum edition this plugin supports. This will be treated as an Edition enum, but we want to allow unknown values. It should be specified according the edition enum value, not the edition number. Only takes effect for plugins that have FEATURE_SUPPORTS_EDITIONS set.

optional int32 maximum_edition = 4;
file list[File]
repeated google.protobuf.compiler.CodeGeneratorResponse.File file = 15;

File

File(
    *,
    name=None,
    insertion_point=None,
    content=None,
    generated_code_info=None,
)

Bases: Message[_FileFields]

Represents a single generated file.

message google.protobuf.compiler.CodeGeneratorResponse.File

Attributes:

Name Type Description
name str

The file name, relative to the output directory. The name must not contain "." or ".." components and must be relative, not be absolute (so, the file cannot lie outside the output directory). "/" must be used as the path separator, not "\".

If the name is omitted, the content will be appended to the previous file. This allows the generator to break large files into small chunks, and allows the generated text to be streamed back to protoc so that large files need not reside completely in memory at one time. Note that as of this writing protoc does not optimize for this -- it will read the entire CodeGeneratorResponse before writing files to disk.

optional string name = 1;
insertion_point str

If non-empty, indicates that the named file should already exist, and the content here is to be inserted into that file at a defined insertion point. This feature allows a code generator to extend the output produced by another code generator. The original generator may provide insertion points by placing special annotations in the file that look like: @@protoc_insertion_point(NAME) The annotation can have arbitrary text before and after it on the line, which allows it to be placed in a comment. NAME should be replaced with an identifier naming the point -- this is what other generators will use as the insertion_point. Code inserted at this point will be placed immediately above the line containing the insertion point (thus multiple insertions to the same point will come out in the order they were added). The double-@ is intended to make it unlikely that the generated code could contain things that look like insertion points by accident.

For example, the C++ code generator places the following line in the .pb.h files that it generates: // @@protoc_insertion_point(namespace_scope) This line appears within the scope of the file's package namespace, but outside of any particular class. Another plugin can then specify the insertion_point "namespace_scope" to generate additional classes or other declarations that should be placed in this scope.

Note that if the line containing the insertion point begins with whitespace, the same whitespace will be added to every line of the inserted text. This is useful for languages like Python, where indentation matters. In these languages, the insertion point comment should be indented the same amount as any inserted code will need to be in order to work correctly in that context.

The code generator that generates the initial file and the one which inserts into it must both run as part of a single invocation of protoc. Code generators are executed in the order in which they appear on the command line.

If |insertion_point| is present, |name| must also be present.

optional string insertion_point = 2;
content str

The file contents.

optional string content = 15;
generated_code_info GeneratedCodeInfo | None

Information describing the file content being inserted. If an insertion point is used, this information will be appropriately offset and inserted into the code generation metadata for the generated files.

optional google.protobuf.GeneratedCodeInfo generated_code_info = 16;

Feature

Bases: Enum

Sync with code_generator.h.

enum google.protobuf.compiler.CodeGeneratorResponse.Feature

Attributes:

Name Type Description
NONE
FEATURE_NONE = 0
PROTO3_OPTIONAL
FEATURE_PROTO3_OPTIONAL = 1
SUPPORTS_EDITIONS
FEATURE_SUPPORTS_EDITIONS = 2

Version

Version(*, major=None, minor=None, patch=None, suffix=None)

Bases: Message[_VersionFields]

The version number of protocol compiler.

message google.protobuf.compiler.Version

Attributes:

Name Type Description
major int
optional int32 major = 1;
minor int
optional int32 minor = 2;
patch int
optional int32 patch = 3;
suffix str

A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should be empty for mainline stable releases.

optional string suffix = 4;

CppFeatures

CppFeatures(
    *,
    legacy_closed_enum=None,
    string_type=None,
    enum_name_uses_string_view=None,
    repeated_type=None,
)

Bases: Message[_CppFeaturesFields]

message pb.CppFeatures

Attributes:

Name Type Description
legacy_closed_enum bool

Whether or not to treat an enum field as closed. This option is only applicable to enum fields, and will be removed in the future. It is consistent with the legacy behavior of using proto3 enum types for proto2 fields.

optional bool legacy_closed_enum = 1;
string_type StringType
optional pb.CppFeatures.StringType string_type = 2;
enum_name_uses_string_view bool
optional bool enum_name_uses_string_view = 3;
repeated_type RepeatedType
optional pb.CppFeatures.RepeatedType repeated_type = 4;

StringType

Bases: Enum

enum pb.CppFeatures.StringType

Attributes:

Name Type Description
UNKNOWN
STRING_TYPE_UNKNOWN = 0
VIEW
VIEW = 1
CORD
CORD = 2
STRING
STRING = 3

RepeatedType

Bases: Enum

enum pb.CppFeatures.RepeatedType

Attributes:

Name Type Description
UNKNOWN
REPEATED_TYPE_UNKNOWN = 0
LEGACY

The repeated field will be backed by proto2::Repeated(Ptr)Field, and accessors will return a reference/pointer to this type.

LEGACY = 1
PROXY

The repeated field has an opaque backing type, and accessors will return a RepeatedFieldProxy.

PROXY = 2

DescriptorProto

DescriptorProto(
    *,
    name=None,
    field=None,
    extension=None,
    nested_type=None,
    enum_type=None,
    extension_range=None,
    oneof_decl=None,
    options=None,
    reserved_range=None,
    reserved_name=None,
    visibility=None,
)

Bases: Message[_DescriptorProtoFields]

Describes a message type.

message google.protobuf.DescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
field list[FieldDescriptorProto]
repeated google.protobuf.FieldDescriptorProto field = 2;
extension list[FieldDescriptorProto]
repeated google.protobuf.FieldDescriptorProto extension = 6;
nested_type list[DescriptorProto]
repeated google.protobuf.DescriptorProto nested_type = 3;
enum_type list[EnumDescriptorProto]
repeated google.protobuf.EnumDescriptorProto enum_type = 4;
extension_range list[ExtensionRange]
repeated google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;
oneof_decl list[OneofDescriptorProto]
repeated google.protobuf.OneofDescriptorProto oneof_decl = 8;
options MessageOptions | None
optional google.protobuf.MessageOptions options = 7;
reserved_range list[ReservedRange]
repeated google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;
reserved_name list[str]

Reserved field names, which may not be used by fields in the same message. A given name may only be reserved once.

repeated string reserved_name = 10;
visibility SymbolVisibility

Support for export and local keywords on enums.

optional google.protobuf.SymbolVisibility visibility = 11;

ExtensionRange

ExtensionRange(*, start=None, end=None, options=None)

Bases: Message[_ExtensionRangeFields]

message google.protobuf.DescriptorProto.ExtensionRange

Attributes:

Name Type Description
start int

Inclusive.

optional int32 start = 1;
end int

Exclusive.

optional int32 end = 2;
options ExtensionRangeOptions | None
optional google.protobuf.ExtensionRangeOptions options = 3;

ReservedRange

ReservedRange(*, start=None, end=None)

Bases: Message[_ReservedRangeFields]

Range of reserved tag numbers. Reserved tag numbers may not be used by fields or extension ranges in the same message. Reserved ranges may not overlap.

message google.protobuf.DescriptorProto.ReservedRange

Attributes:

Name Type Description
start int

Inclusive.

optional int32 start = 1;
end int

Exclusive.

optional int32 end = 2;

Edition

Bases: Enum

The full set of known editions.

enum google.protobuf.Edition

Attributes:

Name Type Description
UNKNOWN

A placeholder for an unknown edition value.

EDITION_UNKNOWN = 0
LEGACY

A placeholder edition for specifying default behaviors before a feature was first introduced. This is effectively an "infinite past".

EDITION_LEGACY = 900
PROTO2

Legacy syntax "editions". These pre-date editions, but behave much like distinct editions. These can't be used to specify the edition of proto files, but feature definitions must supply proto2/proto3 defaults for backwards compatibility.

EDITION_PROTO2 = 998
PROTO3
EDITION_PROTO3 = 999
EDITION_2023

Editions that have been released. The specific values are arbitrary and should not be depended on, but they will always be time-ordered for easy comparison.

EDITION_2023 = 1000
EDITION_2024
EDITION_2024 = 1001
EDITION_2026
EDITION_2026 = 1002
UNSTABLE

A placeholder edition for developing and testing unscheduled features.

EDITION_UNSTABLE = 9999
EDITION_1_TEST_ONLY

Placeholder editions for testing feature resolution. These should not be used or relied on outside of tests.

EDITION_1_TEST_ONLY = 1
EDITION_2_TEST_ONLY
EDITION_2_TEST_ONLY = 2
EDITION_99997_TEST_ONLY
EDITION_99997_TEST_ONLY = 99997
EDITION_99998_TEST_ONLY
EDITION_99998_TEST_ONLY = 99998
EDITION_99999_TEST_ONLY
EDITION_99999_TEST_ONLY = 99999
MAX

Placeholder for specifying unbounded edition support. This should only ever be used by plugins that can expect to never require any changes to support a new edition.

EDITION_MAX = 2147483647

EnumDescriptorProto

EnumDescriptorProto(
    *,
    name=None,
    value=None,
    options=None,
    reserved_range=None,
    reserved_name=None,
    visibility=None,
)

Bases: Message[_EnumDescriptorProtoFields]

Describes an enum type.

message google.protobuf.EnumDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
value list[EnumValueDescriptorProto]
repeated google.protobuf.EnumValueDescriptorProto value = 2;
options EnumOptions | None
optional google.protobuf.EnumOptions options = 3;
reserved_range list[EnumReservedRange]

Range of reserved numeric values. Reserved numeric values may not be used by enum values in the same enum declaration. Reserved ranges may not overlap.

repeated google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;
reserved_name list[str]

Reserved enum value names, which may not be reused. A given name may only be reserved once.

repeated string reserved_name = 5;
visibility SymbolVisibility

Support for export and local keywords on enums.

optional google.protobuf.SymbolVisibility visibility = 6;

EnumReservedRange

EnumReservedRange(*, start=None, end=None)

Bases: Message[_EnumReservedRangeFields]

Range of reserved numeric values. Reserved values may not be used by entries in the same enum. Reserved ranges may not overlap.

Note that this is distinct from DescriptorProto.ReservedRange in that it is inclusive such that it can appropriately represent the entire int32 domain.

message google.protobuf.EnumDescriptorProto.EnumReservedRange

Attributes:

Name Type Description
start int

Inclusive.

optional int32 start = 1;
end int

Inclusive.

optional int32 end = 2;

EnumOptions

EnumOptions(
    *,
    allow_alias=None,
    deprecated=None,
    deprecated_legacy_json_field_conflicts=None,
    features=None,
    uninterpreted_option=None,
)

Bases: Message[_EnumOptionsFields]

message google.protobuf.EnumOptions

Attributes:

Name Type Description
allow_alias bool

Set this option to true to allow mapping different tag names to the same value.

optional bool allow_alias = 2;
deprecated bool

Is this enum deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum, or it will be completely ignored; in the very least, this is a formalization for deprecating enums.

optional bool deprecated = 3 [default = false];
deprecated_legacy_json_field_conflicts bool

Enable the legacy handling of JSON field name conflicts. This lowercases and strips underscored from the fields before comparison in proto3 only. The new behavior takes json_name into account and applies to proto2 as well. TODO Remove this legacy behavior once downstream teams have had time to migrate.

optional bool deprecated_legacy_json_field_conflicts = 6 [deprecated = true];
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 7;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

EnumValueDescriptorProto

EnumValueDescriptorProto(
    *, name=None, number=None, options=None
)

Bases: Message[_EnumValueDescriptorProtoFields]

Describes a value within an enum.

message google.protobuf.EnumValueDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
number int
optional int32 number = 2;
options EnumValueOptions | None
optional google.protobuf.EnumValueOptions options = 3;

EnumValueOptions

EnumValueOptions(
    *,
    deprecated=None,
    features=None,
    debug_redact=None,
    feature_support=None,
    uninterpreted_option=None,
)

Bases: Message[_EnumValueOptionsFields]

message google.protobuf.EnumValueOptions

Attributes:

Name Type Description
deprecated bool

Is this enum value deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum value, or it will be completely ignored; in the very least, this is a formalization for deprecating enum values.

optional bool deprecated = 1 [default = false];
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 2;
debug_redact bool

Indicate that fields annotated with this enum value should not be printed out when using debug formats, e.g. when the field contains sensitive credentials.

optional bool debug_redact = 3 [default = false];
feature_support FeatureSupport | None

Information about the support window of a feature value.

optional google.protobuf.FieldOptions.FeatureSupport feature_support = 4;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

ExtensionRangeOptions

ExtensionRangeOptions(
    *,
    uninterpreted_option=None,
    declaration=None,
    features=None,
    verification=None,
)

Bases: Message[_ExtensionRangeOptionsFields]

message google.protobuf.ExtensionRangeOptions

Attributes:

Name Type Description
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
declaration list[Declaration]

For external users: DO NOT USE. We are in the process of open sourcing extension declaration and executing internal cleanups before it can be used externally.

repeated google.protobuf.ExtensionRangeOptions.Declaration declaration = 2;
features FeatureSet | None

Any features defined in the specific edition.

optional google.protobuf.FeatureSet features = 50;
verification VerificationState

The verification state of the range. TODO: flip the default to DECLARATION once all empty ranges are marked as UNVERIFIED.

optional google.protobuf.ExtensionRangeOptions.VerificationState verification = 3 [default = UNVERIFIED];

Declaration

Declaration(
    *,
    number=None,
    full_name=None,
    type=None,
    reserved=None,
    repeated=None,
)

Bases: Message[_DeclarationFields]

message google.protobuf.ExtensionRangeOptions.Declaration

Attributes:

Name Type Description
number int

The extension number declared within the extension range.

optional int32 number = 1;
full_name str

The fully-qualified name of the extension field. There must be a leading dot in front of the full name.

optional string full_name = 2;
type str

The fully-qualified type name of the extension field. Unlike Metadata.type, Declaration.type must have a leading dot for messages and enums.

optional string type = 3;
reserved bool

If true, indicates that the number is reserved in the extension range, and any extension field with the number will fail to compile. Set this when a declared extension field is deleted.

optional bool reserved = 5;
repeated bool

If true, indicates that the extension must be defined as repeated. Otherwise the extension must be defined as optional.

optional bool repeated = 6;

VerificationState

Bases: Enum

The verification state of the extension range.

enum google.protobuf.ExtensionRangeOptions.VerificationState

Attributes:

Name Type Description
DECLARATION

All the extensions of the range must be declared.

DECLARATION = 0
UNVERIFIED
UNVERIFIED = 1

FeatureSet

FeatureSet(
    *,
    field_presence=None,
    enum_type=None,
    repeated_field_encoding=None,
    utf8_validation=None,
    message_encoding=None,
    json_format=None,
    enforce_naming_style=None,
    default_symbol_visibility=None,
)

Bases: Message[_FeatureSetFields]

TODO Enums in C++ gencode (and potentially other languages) are not well scoped. This means that each of the feature enums below can clash with each other. The short names we've chosen maximize call-site readability, but leave us very open to this scenario. A future feature will be designed and implemented to handle this, hopefully before we ever hit a conflict here.

message google.protobuf.FeatureSet

Attributes:

Name Type Description
field_presence FieldPresence
optional google.protobuf.FeatureSet.FieldPresence field_presence = 1;
enum_type EnumType
optional google.protobuf.FeatureSet.EnumType enum_type = 2;
repeated_field_encoding RepeatedFieldEncoding
optional google.protobuf.FeatureSet.RepeatedFieldEncoding repeated_field_encoding = 3;
utf8_validation Utf8Validation
optional google.protobuf.FeatureSet.Utf8Validation utf8_validation = 4;
message_encoding MessageEncoding
optional google.protobuf.FeatureSet.MessageEncoding message_encoding = 5;
json_format JsonFormat
optional google.protobuf.FeatureSet.JsonFormat json_format = 6;
enforce_naming_style EnforceNamingStyle
optional google.protobuf.FeatureSet.EnforceNamingStyle enforce_naming_style = 7;
default_symbol_visibility DefaultSymbolVisibility
optional google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility default_symbol_visibility = 8;

VisibilityFeature

VisibilityFeature()

Bases: Message[_VisibilityFeatureFields]

message google.protobuf.FeatureSet.VisibilityFeature

DefaultSymbolVisibility

Bases: Enum

enum google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility

Attributes:

Name Type Description
UNKNOWN
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0
EXPORT_ALL

Default pre-EDITION_2024, all UNSET visibility are export.

EXPORT_ALL = 1
EXPORT_TOP_LEVEL

All top-level symbols default to export, nested default to local.

EXPORT_TOP_LEVEL = 2
LOCAL_ALL

All symbols default to local.

LOCAL_ALL = 3
STRICT

All symbols local by default. Nested types cannot be exported. With special case caveat for message { enum {} reserved 1 to max; } This is the recommended setting for new protos.

STRICT = 4

FieldPresence

Bases: Enum

enum google.protobuf.FeatureSet.FieldPresence

Attributes:

Name Type Description
UNKNOWN
FIELD_PRESENCE_UNKNOWN = 0
EXPLICIT
EXPLICIT = 1
IMPLICIT
IMPLICIT = 2
LEGACY_REQUIRED
LEGACY_REQUIRED = 3

EnumType

Bases: Enum

enum google.protobuf.FeatureSet.EnumType

Attributes:

Name Type Description
UNKNOWN
ENUM_TYPE_UNKNOWN = 0
OPEN
OPEN = 1
CLOSED
CLOSED = 2

RepeatedFieldEncoding

Bases: Enum

enum google.protobuf.FeatureSet.RepeatedFieldEncoding

Attributes:

Name Type Description
UNKNOWN
REPEATED_FIELD_ENCODING_UNKNOWN = 0
PACKED
PACKED = 1
EXPANDED
EXPANDED = 2

Utf8Validation

Bases: Enum

enum google.protobuf.FeatureSet.Utf8Validation

Attributes:

Name Type Description
UNKNOWN
UTF8_VALIDATION_UNKNOWN = 0
VERIFY
VERIFY = 2
NONE
NONE = 3

MessageEncoding

Bases: Enum

enum google.protobuf.FeatureSet.MessageEncoding

Attributes:

Name Type Description
UNKNOWN
MESSAGE_ENCODING_UNKNOWN = 0
LENGTH_PREFIXED
LENGTH_PREFIXED = 1
DELIMITED
DELIMITED = 2

JsonFormat

Bases: Enum

enum google.protobuf.FeatureSet.JsonFormat

Attributes:

Name Type Description
UNKNOWN
JSON_FORMAT_UNKNOWN = 0
ALLOW
ALLOW = 1
LEGACY_BEST_EFFORT
LEGACY_BEST_EFFORT = 2

EnforceNamingStyle

Bases: Enum

enum google.protobuf.FeatureSet.EnforceNamingStyle

Attributes:

Name Type Description
UNKNOWN
ENFORCE_NAMING_STYLE_UNKNOWN = 0
STYLE2024
STYLE2024 = 1
STYLE_LEGACY
STYLE_LEGACY = 2
STYLE2026
STYLE2026 = 3

FeatureSetDefaults

FeatureSetDefaults(
    *,
    defaults=None,
    minimum_edition=None,
    maximum_edition=None,
)

Bases: Message[_FeatureSetDefaultsFields]

A compiled specification for the defaults of a set of features. These messages are generated from FeatureSet extensions and can be used to seed feature resolution. The resolution with this object becomes a simple search for the closest matching edition, followed by proto merges.

message google.protobuf.FeatureSetDefaults

Attributes:

Name Type Description
defaults list[FeatureSetEditionDefault]
repeated google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault defaults = 1;
minimum_edition Edition

The minimum supported edition (inclusive) when this was constructed. Editions before this will not have defaults.

optional google.protobuf.Edition minimum_edition = 4;
maximum_edition Edition

The maximum known edition (inclusive) when this was constructed. Editions after this will not have reliable defaults.

optional google.protobuf.Edition maximum_edition = 5;

FeatureSetEditionDefault

FeatureSetEditionDefault(
    *,
    edition=None,
    overridable_features=None,
    fixed_features=None,
)

Bases: Message[_FeatureSetEditionDefaultFields]

A map from every known edition with a unique set of defaults to its defaults. Not all editions may be contained here. For a given edition, the defaults at the closest matching edition ordered at or before it should be used. This field must be in strict ascending order by edition.

message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault

Attributes:

Name Type Description
edition Edition
optional google.protobuf.Edition edition = 3;
overridable_features FeatureSet | None

Defaults of features that can be overridden in this edition.

optional google.protobuf.FeatureSet overridable_features = 4;
fixed_features FeatureSet | None

Defaults of features that can't be overridden in this edition.

optional google.protobuf.FeatureSet fixed_features = 5;

FieldDescriptorProto

FieldDescriptorProto(
    *,
    name=None,
    number=None,
    label=None,
    type=None,
    type_name=None,
    extendee=None,
    default_value=None,
    oneof_index=None,
    json_name=None,
    options=None,
    proto3_optional=None,
)

Bases: Message[_FieldDescriptorProtoFields]

Describes a field within a message.

message google.protobuf.FieldDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
number int
optional int32 number = 3;
label Label
optional google.protobuf.FieldDescriptorProto.Label label = 4;
type Type

If type_name is set, this need not be set. If both this and type_name are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.

optional google.protobuf.FieldDescriptorProto.Type type = 5;
type_name str

For message and enum types, this is the name of the type. If the name starts with a '.', it is fully-qualified. Otherwise, C++-like scoping rules are used to find the type (i.e. first the nested types within this message are searched, then within the parent, on up to the root namespace).

optional string type_name = 6;
extendee str

For extensions, this is the name of the type being extended. It is resolved in the same manner as type_name.

optional string extendee = 2;
default_value str

For numeric types, contains the original text representation of the value. For booleans, "true" or "false". For strings, contains the default text contents (not escaped in any way). For bytes, contains the C escaped value. All bytes >= 128 are escaped.

optional string default_value = 7;
oneof_index int

If set, gives the index of a oneof in the containing type's oneof_decl list. This field is a member of that oneof.

optional int32 oneof_index = 9;
json_name str

JSON name of this field. The value is set by protocol compiler. If the user has set a "json_name" option on this field, that option's value will be used. Otherwise, it's deduced from the field's name by converting it to camelCase.

optional string json_name = 10;
options FieldOptions | None
optional google.protobuf.FieldOptions options = 8;
proto3_optional bool

If true, this is a proto3 "optional". When a proto3 field is optional, it tracks presence regardless of field type.

When proto3_optional is true, this field must belong to a oneof to signal to old proto3 clients that presence is tracked for this field. This oneof is known as a "synthetic" oneof, and this field must be its sole member (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs exist in the descriptor only, and do not generate any API. Synthetic oneofs must be ordered after all "real" oneofs.

For message fields, proto3_optional doesn't create any semantic change, since non-repeated message fields always track presence. However it still indicates the semantic detail of whether the user wrote "optional" or not. This can be useful for round-tripping the .proto file. For consistency we give message fields a synthetic oneof also, even though it is not required to track presence. This is especially important because the parser can't tell if a field is a message or an enum, so it must always create a synthetic oneof.

Proto2 optional fields do not set this flag, because they already indicate optional with LABEL_OPTIONAL.

optional bool proto3_optional = 17;

Type

Bases: Enum

enum google.protobuf.FieldDescriptorProto.Type

Attributes:

Name Type Description
DOUBLE

0 is reserved for errors. Order is weird for historical reasons.

TYPE_DOUBLE = 1
FLOAT
TYPE_FLOAT = 2
INT64

Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if negative values are likely.

TYPE_INT64 = 3
UINT64
TYPE_UINT64 = 4
INT32

Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if negative values are likely.

TYPE_INT32 = 5
FIXED64
TYPE_FIXED64 = 6
FIXED32
TYPE_FIXED32 = 7
BOOL
TYPE_BOOL = 8
STRING
TYPE_STRING = 9
GROUP

Tag-delimited aggregate. Group type is deprecated and not supported after google.protobuf. However, Proto3 implementations should still be able to parse the group wire format and treat group fields as unknown fields. In Editions, the group wire format can be enabled via the message_encoding feature.

TYPE_GROUP = 10
MESSAGE

Length-delimited aggregate.

TYPE_MESSAGE = 11
BYTES

New in version 2.

TYPE_BYTES = 12
UINT32
TYPE_UINT32 = 13
ENUM
TYPE_ENUM = 14
SFIXED32
TYPE_SFIXED32 = 15
SFIXED64
TYPE_SFIXED64 = 16
SINT32

Uses ZigZag encoding.

TYPE_SINT32 = 17
SINT64

Uses ZigZag encoding.

TYPE_SINT64 = 18

Label

Bases: Enum

enum google.protobuf.FieldDescriptorProto.Label

Attributes:

Name Type Description
OPTIONAL

0 is reserved for errors

LABEL_OPTIONAL = 1
REPEATED
LABEL_REPEATED = 3
REQUIRED

The required label is only allowed in google.protobuf. In proto3 and Editions it's explicitly prohibited. In Editions, the field_presence feature can be used to get this behavior.

LABEL_REQUIRED = 2

FieldOptions

FieldOptions(
    *,
    ctype=None,
    packed=None,
    jstype=None,
    lazy=None,
    unverified_lazy=None,
    deprecated=None,
    weak=None,
    debug_redact=None,
    retention=None,
    targets=None,
    edition_defaults=None,
    features=None,
    feature_support=None,
    uninterpreted_option=None,
)

Bases: Message[_FieldOptionsFields]

message google.protobuf.FieldOptions

Attributes:

Name Type Description
ctype CType

NOTE: ctype is deprecated. Use features.(pb.cpp).string_type instead. The ctype option instructs the C++ code generator to use a different representation of the field than it normally would. See the specific options below. This option is only implemented to support use of [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of type "bytes" in the open source release. TODO: make ctype actually deprecated.

optional google.protobuf.FieldOptions.CType ctype = 1 [default = STRING];
packed bool

The packed option can be enabled for repeated primitive fields to enable a more efficient representation on the wire. Rather than repeatedly writing the tag and type for each element, the entire array is encoded as a single length-delimited blob. In proto3, only explicit setting it to false will avoid using packed encoding. This option is prohibited in Editions, but the repeated_field_encoding feature can be used to control the behavior.

optional bool packed = 2;
jstype JSType

The jstype option determines the JavaScript type used for values of the field. The option is permitted only for 64 bit integral and fixed types (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING is represented as JavaScript string, which avoids loss of precision that can happen when a large value is converted to a floating point JavaScript. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to use the JavaScript "number" type. The behavior of the default option JS_NORMAL is implementation dependent.

This option is an enum to permit additional types to be added, e.g. goog.math.Integer.

optional google.protobuf.FieldOptions.JSType jstype = 6 [default = JS_NORMAL];
lazy bool

Should this field be parsed lazily? Lazy applies only to message-type fields. It means that when the outer message is initially parsed, the inner message's contents will not be parsed but instead stored in encoded form. The inner message will actually be parsed when it is first accessed.

This is only a hint. Implementations are free to choose whether to use eager or lazy parsing regardless of the value of this option. However, setting this option true suggests that the protocol author believes that using lazy parsing on this field is worth the additional bookkeeping overhead typically needed to implement it.

This option does not affect the public interface of any generated code; all method signatures remain the same. Furthermore, thread-safety of the interface is not affected by this option; const methods remain safe to call from multiple threads concurrently, while non-const methods continue to require exclusive access.

Note that lazy message fields are still eagerly verified to check ill-formed wireformat or missing required fields. Calling IsInitialized() on the outer message would fail if the inner message has missing required fields. Failed verification would result in parsing failure (except when uninitialized messages are acceptable).

optional bool lazy = 5 [default = false];
unverified_lazy bool

unverified_lazy does no correctness checks on the byte stream. This should only be used where lazy with verification is prohibitive for performance reasons.

optional bool unverified_lazy = 15 [default = false];
deprecated bool

Is this field deprecated? Depending on the target platform, this can emit Deprecated annotations for accessors, or it will be completely ignored; in the very least, this is a formalization for deprecating fields.

optional bool deprecated = 3 [default = false];
weak bool

DEPRECATED. DO NOT USE! For Google-internal migration only. Do not use.

optional bool weak = 10 [default = false, deprecated = true];
debug_redact bool

Indicate that the field value should not be printed out when using debug formats, e.g. when the field contains sensitive credentials.

optional bool debug_redact = 16 [default = false];
retention OptionRetention
optional google.protobuf.FieldOptions.OptionRetention retention = 17;
targets list[OptionTargetType]
repeated google.protobuf.FieldOptions.OptionTargetType targets = 19 [packed = false];
edition_defaults list[EditionDefault]
repeated google.protobuf.FieldOptions.EditionDefault edition_defaults = 20;
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 21;
feature_support FeatureSupport | None
optional google.protobuf.FieldOptions.FeatureSupport feature_support = 22;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

EditionDefault

EditionDefault(*, edition=None, value=None)

Bases: Message[_EditionDefaultFields]

message google.protobuf.FieldOptions.EditionDefault

Attributes:

Name Type Description
edition Edition
optional google.protobuf.Edition edition = 3;
value str

Textproto value.

optional string value = 2;

FeatureSupport

FeatureSupport(
    *,
    edition_introduced=None,
    edition_deprecated=None,
    deprecation_warning=None,
    edition_removed=None,
    removal_error=None,
)

Bases: Message[_FeatureSupportFields]

Information about the support window of a feature.

message google.protobuf.FieldOptions.FeatureSupport

Attributes:

Name Type Description
edition_introduced Edition

The edition that this feature was first available in. In editions earlier than this one, the default assigned to EDITION_LEGACY will be used, and proto files will not be able to override it.

optional google.protobuf.Edition edition_introduced = 1;
edition_deprecated Edition

The edition this feature becomes deprecated in. Using this after this edition may trigger warnings.

optional google.protobuf.Edition edition_deprecated = 2;
deprecation_warning str

The deprecation warning text if this feature is used after the edition it was marked deprecated in.

optional string deprecation_warning = 3;
edition_removed Edition

The edition this feature is no longer available in. In editions after this one, the last default assigned will be used, and proto files will not be able to override it.

optional google.protobuf.Edition edition_removed = 4;
removal_error str

The removal error text if this feature is used after the edition it was removed in.

optional string removal_error = 5;

CType

Bases: Enum

enum google.protobuf.FieldOptions.CType

Attributes:

Name Type Description
STRING

Default mode.

STRING = 0
CORD

The option [ctype=CORD] may be applied to a non-repeated field of type "bytes". It indicates that in C++, the data should be stored in a Cord instead of a string. For very large strings, this may reduce memory fragmentation. It may also allow better performance when parsing from a Cord, or when parsing with aliasing enabled, as the parsed Cord may then alias the original buffer.

CORD = 1
STRING_PIECE
STRING_PIECE = 2

JSType

Bases: Enum

enum google.protobuf.FieldOptions.JSType

Attributes:

Name Type Description
JS_NORMAL

Use the default type.

JS_NORMAL = 0
JS_STRING

Use JavaScript strings.

JS_STRING = 1
JS_NUMBER

Use JavaScript numbers.

JS_NUMBER = 2

OptionRetention

Bases: Enum

If set to RETENTION_SOURCE, the option will be omitted from the binary.

enum google.protobuf.FieldOptions.OptionRetention

Attributes:

Name Type Description
RETENTION_UNKNOWN
RETENTION_UNKNOWN = 0
RETENTION_RUNTIME
RETENTION_RUNTIME = 1
RETENTION_SOURCE
RETENTION_SOURCE = 2

OptionTargetType

Bases: Enum

This indicates the types of entities that the field may apply to when used as an option. If it is unset, then the field may be freely used as an option on any kind of entity.

enum google.protobuf.FieldOptions.OptionTargetType

Attributes:

Name Type Description
TARGET_TYPE_UNKNOWN
TARGET_TYPE_UNKNOWN = 0
TARGET_TYPE_FILE
TARGET_TYPE_FILE = 1
TARGET_TYPE_EXTENSION_RANGE
TARGET_TYPE_EXTENSION_RANGE = 2
TARGET_TYPE_MESSAGE
TARGET_TYPE_MESSAGE = 3
TARGET_TYPE_FIELD
TARGET_TYPE_FIELD = 4
TARGET_TYPE_ONEOF
TARGET_TYPE_ONEOF = 5
TARGET_TYPE_ENUM
TARGET_TYPE_ENUM = 6
TARGET_TYPE_ENUM_ENTRY
TARGET_TYPE_ENUM_ENTRY = 7
TARGET_TYPE_SERVICE
TARGET_TYPE_SERVICE = 8
TARGET_TYPE_METHOD
TARGET_TYPE_METHOD = 9

FileDescriptorProto

FileDescriptorProto(
    *,
    name=None,
    package=None,
    dependency=None,
    public_dependency=None,
    weak_dependency=None,
    option_dependency=None,
    message_type=None,
    enum_type=None,
    service=None,
    extension=None,
    options=None,
    source_code_info=None,
    syntax=None,
    edition=None,
)

Bases: Message[_FileDescriptorProtoFields]

Describes a complete .proto file.

message google.protobuf.FileDescriptorProto

Attributes:

Name Type Description
name str

file name, relative to root of source tree

optional string name = 1;
package str

e.g. "foo", "foo.bar", etc.

optional string package = 2;
dependency list[str]

Names of files imported by this file.

repeated string dependency = 3;
public_dependency list[int]

Indexes of the public imported files in the dependency list above.

repeated int32 public_dependency = 10 [packed = false];
weak_dependency list[int]

Indexes of the weak imported files in the dependency list. For Google-internal migration only. Do not use.

repeated int32 weak_dependency = 11 [packed = false];
option_dependency list[str]

Names of files imported by this file purely for the purpose of providing option extensions. These are excluded from the dependency list above.

repeated string option_dependency = 15;
message_type list[DescriptorProto]

All top-level definitions in this file.

repeated google.protobuf.DescriptorProto message_type = 4;
enum_type list[EnumDescriptorProto]
repeated google.protobuf.EnumDescriptorProto enum_type = 5;
service list[ServiceDescriptorProto]
repeated google.protobuf.ServiceDescriptorProto service = 6;
extension list[FieldDescriptorProto]
repeated google.protobuf.FieldDescriptorProto extension = 7;
options FileOptions | None
optional google.protobuf.FileOptions options = 8;
source_code_info SourceCodeInfo | None

This field contains optional information about the original source code. You may safely remove this entire field without harming runtime functionality of the descriptors -- the information is needed only by development tools.

optional google.protobuf.SourceCodeInfo source_code_info = 9;
syntax str

The syntax of the proto file. The supported values are "proto2", "proto3", and "editions".

If edition is present, this value must be "editions". WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional string syntax = 12;
edition Edition

The edition of the proto file. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.Edition edition = 14;

FileDescriptorSet

FileDescriptorSet(*, file=None)

Bases: Message[_FileDescriptorSetFields], FileDescriptorSetMixin

The protocol compiler can output a FileDescriptorSet containing the .proto files it parses.

message google.protobuf.FileDescriptorSet

Attributes:

Name Type Description
file list[FileDescriptorProto]
repeated google.protobuf.FileDescriptorProto file = 1;

to_registry

to_registry()

Converts the file descriptors in this set into a Registry.

FileOptions

FileOptions(
    *,
    java_package=None,
    java_outer_classname=None,
    java_multiple_files=None,
    java_generate_equals_and_hash=None,
    java_string_check_utf8=None,
    optimize_for=None,
    go_package=None,
    cc_generic_services=None,
    java_generic_services=None,
    py_generic_services=None,
    deprecated=None,
    cc_enable_arenas=None,
    objc_class_prefix=None,
    csharp_namespace=None,
    swift_prefix=None,
    php_class_prefix=None,
    php_namespace=None,
    php_metadata_namespace=None,
    ruby_package=None,
    features=None,
    uninterpreted_option=None,
)

Bases: Message[_FileOptionsFields]

message google.protobuf.FileOptions

Attributes:

Name Type Description
java_package str

Sets the Java package where classes generated from this .proto will be placed. By default, the proto package is used, but this is often inappropriate because proto packages do not normally start with backwards domain names.

optional string java_package = 1;
java_outer_classname str

Controls the name of the wrapper Java class generated for the .proto file. That class will always contain the .proto file's getDescriptor() method as well as any top-level extensions defined in the .proto file. If java_multiple_files is disabled, then all the other classes from the .proto file will be nested inside the single wrapper outer class.

optional string java_outer_classname = 8;
java_multiple_files bool

If enabled, then the Java code generator will generate a separate .java file for each top-level message, enum, and service defined in the .proto file. Thus, these types will not be nested inside the wrapper class named by java_outer_classname. However, the wrapper class will still be generated to contain the file's getDescriptor() method as well as any top-level extensions defined in the file.

optional bool java_multiple_files = 10 [default = false];
java_generate_equals_and_hash bool

This option does nothing.

optional bool java_generate_equals_and_hash = 20 [deprecated = true];
java_string_check_utf8 bool

A proto2 file can set this to true to opt in to UTF-8 checking for Java, which will throw an exception if invalid UTF-8 is parsed from the wire or assigned to a string field.

TODO: clarify exactly what kinds of field types this option applies to, and update these docs accordingly.

Proto3 files already perform these checks. Setting the option explicitly to false has no effect: it cannot be used to opt proto3 files out of UTF-8 checks.

optional bool java_string_check_utf8 = 27 [default = false];
optimize_for OptimizeMode
optional google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];
go_package str

Sets the Go package where structs generated from this .proto will be placed. If omitted, the Go package will be derived from the following: - The basename of the package import path, if provided. - Otherwise, the package statement in the .proto file, if present. - Otherwise, the basename of the .proto file, without extension.

optional string go_package = 11;
cc_generic_services bool

Should generic services be generated in each language? "Generic" services are not specific to any particular RPC system. They are generated by the main code generators in each language (without additional plugins). Generic services were the only kind of service generation supported by early versions of google.protobuf.

Generic services are now considered deprecated in favor of using plugins that generate code specific to your particular RPC system. Therefore, these default to false. Old code which depends on generic services should explicitly set them to true.

optional bool cc_generic_services = 16 [default = false];
java_generic_services bool
optional bool java_generic_services = 17 [default = false];
py_generic_services bool
optional bool py_generic_services = 18 [default = false];
deprecated bool

Is this file deprecated? Depending on the target platform, this can emit Deprecated annotations for everything in the file, or it will be completely ignored; in the very least, this is a formalization for deprecating files.

optional bool deprecated = 23 [default = false];
cc_enable_arenas bool

Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.

optional bool cc_enable_arenas = 31 [default = true];
objc_class_prefix str

Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.

optional string objc_class_prefix = 36;
csharp_namespace str

Namespace for generated classes; defaults to the package.

optional string csharp_namespace = 37;
swift_prefix str

By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined. When this options is provided, they will use this value instead to prefix the types/symbols defined.

optional string swift_prefix = 39;
php_class_prefix str

Sets the php class prefix which is prepended to all php generated classes from this .proto. Default is empty.

optional string php_class_prefix = 40;
php_namespace str

Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace.

optional string php_namespace = 41;
php_metadata_namespace str

Use this option to change the namespace of php generated metadata classes. Default is empty. When this option is empty, the proto file name will be used for determining the namespace.

optional string php_metadata_namespace = 44;
ruby_package str

Use this option to change the package of ruby generated classes. Default is empty. When this option is not set, the package name will be used for determining the ruby package.

optional string ruby_package = 45;
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 50;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See the documentation for the "Options" section above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

OptimizeMode

Bases: Enum

Generated classes can be optimized for speed or code size.

enum google.protobuf.FileOptions.OptimizeMode

Attributes:

Name Type Description
SPEED

Generate complete code for parsing, serialization,

SPEED = 1
CODE_SIZE

etc.

Use ReflectionOps to implement these methods.

CODE_SIZE = 2
LITE_RUNTIME

Generate code using MessageLite and the lite runtime.

LITE_RUNTIME = 3

GeneratedCodeInfo

GeneratedCodeInfo(*, annotation=None)

Bases: Message[_GeneratedCodeInfoFields]

Describes the relationship between generated code and its original source file. A GeneratedCodeInfo message is associated with only one generated source file, but may contain references to different source .proto files.

message google.protobuf.GeneratedCodeInfo

Attributes:

Name Type Description
annotation list[Annotation]

An Annotation connects some span of text in generated code to an element of its generating .proto file.

repeated google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;

Annotation

Annotation(
    *,
    path=None,
    source_file=None,
    begin=None,
    end=None,
    semantic=None,
)

Bases: Message[_AnnotationFields]

message google.protobuf.GeneratedCodeInfo.Annotation

Attributes:

Name Type Description
path list[int]

Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.

repeated int32 path = 1 [packed = true];
source_file str

Identifies the filesystem path to the original source .proto.

optional string source_file = 2;
begin int

Identifies the starting offset in bytes in the generated code that relates to the identified object.

optional int32 begin = 3;
end int

Identifies the ending offset in bytes in the generated code that relates to the identified object. The end offset should be one past the last relevant byte (so the length of the text = end - begin).

optional int32 end = 4;
semantic Semantic
optional google.protobuf.GeneratedCodeInfo.Annotation.Semantic semantic = 5;

Semantic

Bases: Enum

Represents the identified object's effect on the element in the original .proto file.

enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic

Attributes:

Name Type Description
NONE

There is no effect or the effect is indescribable.

NONE = 0
SET

The element is set or otherwise mutated.

SET = 1
ALIAS

An alias to the element is returned.

ALIAS = 2

MessageOptions

MessageOptions(
    *,
    message_set_wire_format=None,
    no_standard_descriptor_accessor=None,
    deprecated=None,
    map_entry=None,
    deprecated_legacy_json_field_conflicts=None,
    features=None,
    uninterpreted_option=None,
)

Bases: Message[_MessageOptionsFields]

message google.protobuf.MessageOptions

Attributes:

Name Type Description
message_set_wire_format bool

Set true to use the old proto1 MessageSet wire format for extensions. This is provided for backwards-compatibility with the MessageSet wire format. You should not use this for any other reason: It's less efficient, has fewer features, and is more complicated.

The message must be defined exactly as follows: message Foo { option message_set_wire_format = true; extensions 4 to max; } Note that the message cannot have any defined fields; MessageSets only have extensions.

All extensions of your type must be singular messages; e.g. they cannot be int32s, enums, or repeated messages.

Because this is an option, the above two restrictions are not enforced by the protocol compiler.

optional bool message_set_wire_format = 1 [default = false];
no_standard_descriptor_accessor bool

Disables the generation of the standard "descriptor()" accessor, which can conflict with a field of the same name. This is meant to make migration from proto1 easier; new code should avoid fields named "descriptor".

optional bool no_standard_descriptor_accessor = 2 [default = false];
deprecated bool

Is this message deprecated? Depending on the target platform, this can emit Deprecated annotations for the message, or it will be completely ignored; in the very least, this is a formalization for deprecating messages.

optional bool deprecated = 3 [default = false];
map_entry bool

Whether the message is an automatically generated map entry type for the maps field.

For maps fields: map map_field = 1; The parsed descriptor looks like: message MapFieldEntry { option map_entry = true; optional KeyType key = 1; optional ValueType value = 2; } repeated MapFieldEntry map_field = 1;

Implementations may choose not to generate the map_entry=true message, but use a native map in the target language to hold the keys and values. The reflection APIs in such implementations still need to work as if the field is a repeated message field.

NOTE: Do not set the option in .proto files. Always use the maps syntax instead. The option should only be implicitly set by the proto compiler parser.

optional bool map_entry = 7;
deprecated_legacy_json_field_conflicts bool

Enable the legacy handling of JSON field name conflicts. This lowercases and strips underscored from the fields before comparison in proto3 only. The new behavior takes json_name into account and applies to proto2 as well.

This should only be used as a temporary measure against broken builds due to the change in behavior for JSON field name conflicts.

TODO This is legacy behavior we plan to remove once downstream teams have had time to migrate.

optional bool deprecated_legacy_json_field_conflicts = 11 [deprecated = true];
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 12;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

MethodDescriptorProto

MethodDescriptorProto(
    *,
    name=None,
    input_type=None,
    output_type=None,
    options=None,
    client_streaming=None,
    server_streaming=None,
)

Bases: Message[_MethodDescriptorProtoFields]

Describes a method of a service.

message google.protobuf.MethodDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
input_type str

Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.

optional string input_type = 2;
output_type str
optional string output_type = 3;
options MethodOptions | None
optional google.protobuf.MethodOptions options = 4;
client_streaming bool

Identifies if client streams multiple client messages

optional bool client_streaming = 5 [default = false];
server_streaming bool

Identifies if server streams multiple server messages

optional bool server_streaming = 6 [default = false];

MethodOptions

MethodOptions(
    *,
    deprecated=None,
    idempotency_level=None,
    features=None,
    uninterpreted_option=None,
)

Bases: Message[_MethodOptionsFields]

message google.protobuf.MethodOptions

Attributes:

Name Type Description
deprecated bool

Is this method deprecated? Depending on the target platform, this can emit Deprecated annotations for the method, or it will be completely ignored; in the very least, this is a formalization for deprecating methods.

optional bool deprecated = 33 [default = false];
idempotency_level IdempotencyLevel
optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34 [default = IDEMPOTENCY_UNKNOWN];
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 35;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

IdempotencyLevel

Bases: Enum

Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.

enum google.protobuf.MethodOptions.IdempotencyLevel

Attributes:

Name Type Description
IDEMPOTENCY_UNKNOWN
IDEMPOTENCY_UNKNOWN = 0
NO_SIDE_EFFECTS

implies idempotent

NO_SIDE_EFFECTS = 1
IDEMPOTENT

idempotent, but may have side effects

IDEMPOTENT = 2

OneofDescriptorProto

OneofDescriptorProto(*, name=None, options=None)

Bases: Message[_OneofDescriptorProtoFields]

Describes a oneof.

message google.protobuf.OneofDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
options OneofOptions | None
optional google.protobuf.OneofOptions options = 2;

OneofOptions

OneofOptions(*, features=None, uninterpreted_option=None)

Bases: Message[_OneofOptionsFields]

message google.protobuf.OneofOptions

Attributes:

Name Type Description
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 1;
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

ServiceDescriptorProto

ServiceDescriptorProto(
    *, name=None, method=None, options=None
)

Bases: Message[_ServiceDescriptorProtoFields]

Describes a service.

message google.protobuf.ServiceDescriptorProto

Attributes:

Name Type Description
name str
optional string name = 1;
method list[MethodDescriptorProto]
repeated google.protobuf.MethodDescriptorProto method = 2;
options ServiceOptions | None
optional google.protobuf.ServiceOptions options = 3;

ServiceOptions

ServiceOptions(
    *,
    features=None,
    deprecated=None,
    uninterpreted_option=None,
)

Bases: Message[_ServiceOptionsFields]

message google.protobuf.ServiceOptions

Attributes:

Name Type Description
features FeatureSet | None

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

optional google.protobuf.FeatureSet features = 34;
deprecated bool

Is this service deprecated? Depending on the target platform, this can emit Deprecated annotations for the service, or it will be completely ignored; in the very least, this is a formalization for deprecating services.

optional bool deprecated = 33 [default = false];
uninterpreted_option list[UninterpretedOption]

The parser stores options it doesn't recognize here. See above.

repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;

SourceCodeInfo

SourceCodeInfo(*, location=None)

Bases: Message[_SourceCodeInfoFields]

Encapsulates information about the original source file from which a FileDescriptorProto was generated.

message google.protobuf.SourceCodeInfo

Attributes:

Name Type Description
location list[Location]

A Location identifies a piece of source code in a .proto file which corresponds to a particular definition. This information is intended to be useful to IDEs, code indexers, documentation generators, and similar tools.

For example, say we have a file like: message Foo { optional string foo = 1; } Let's look at just the field definition: optional string foo = 1; ^ ^^ ^^ ^ ^^^ a bc de f ghi We have the following locations: span path represents [a,i) [ 4, 0, 2, 0 ] The whole field definition. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). [c,d) [ 4, 0, 2, 0, 5 ] The type (string). [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). [g,h) [ 4, 0, 2, 0, 3 ] The number (1).

Notes: - A location may refer to a repeated field itself (i.e. not to any particular index within it). This is used whenever a set of elements are logically enclosed in a single code segment. For example, an entire extend block (possibly containing multiple extension definitions) will have an outer location whose path refers to the "extensions" repeated field without an index. - Multiple locations may have the same path. This happens when a single logical declaration is spread out across multiple places. The most obvious example is the "extend" block again -- there may be multiple extend blocks in the same scope, each of which will have the same path. - A location's span is not always a subset of its parent's span. For example, the "extendee" of an extension declaration appears at the beginning of the "extend" block and is shared by all extensions within the block. - Just because a location's span is a subset of some other location's span does not mean that it is a descendant. For example, a "group" defines both a type and a field in a single declaration. Thus, the locations corresponding to the type and field and their components will overlap. - Code which tries to interpret locations should probably be designed to ignore those that it doesn't understand, as more types of locations could be recorded in the future.

repeated google.protobuf.SourceCodeInfo.Location location = 1;

Location

Location(
    *,
    path=None,
    span=None,
    leading_comments=None,
    trailing_comments=None,
    leading_detached_comments=None,
)

Bases: Message[_LocationFields]

message google.protobuf.SourceCodeInfo.Location

Attributes:

Name Type Description
path list[int]

Identifies which part of the FileDescriptorProto was defined at this location.

Each element is a field number or an index. They form a path from the root FileDescriptorProto to the place where the definition appears. For example, this path: [ 4, 3, 2, 7, 1 ] refers to: file.message_type(3) // 4, 3 .field(7) // 2, 7 .name() // 1 This is because FileDescriptorProto.message_type has field number 4: repeated DescriptorProto message_type = 4; and DescriptorProto.field has field number 2: repeated FieldDescriptorProto field = 2; and FieldDescriptorProto.name has field number 1: optional string name = 1;

Thus, the above path gives the location of a field name. If we removed the last element: [ 4, 3, 2, 7 ] this path refers to the whole field declaration (from the beginning of the label to the terminating semicolon).

repeated int32 path = 1 [packed = true];
span list[int]

Always has exactly three or four elements: start line, start column, end line (optional, otherwise assumed same as start line), end column. These are packed into a single field for efficiency. Note that line and column numbers are zero-based -- typically you will want to add 1 to each before displaying to a user.

repeated int32 span = 2 [packed = true];
leading_comments str

If this SourceCodeInfo represents a complete declaration, these are any comments appearing before and after the declaration which appear to be attached to the declaration.

A series of line comments appearing on consecutive lines, with no other tokens appearing on those lines, will be treated as a single comment.

leading_detached_comments will keep paragraphs of comments that appear before (but not connected to) the current element. Each paragraph, separated by empty lines, will be one comment element in the repeated field.

Only the comment content is provided; comment markers (e.g. //) are stripped out. For block comments, leading whitespace and an asterisk will be stripped from the beginning of each line other than the first. Newlines are included in the output.

Examples:

optional int32 foo = 1; // Comment attached to foo. // Comment attached to bar. optional int32 bar = 2;

optional string baz = 3; // Comment attached to baz. // Another line attached to baz.

// Comment attached to moo. // // Another line attached to moo. optional double moo = 4;

// Detached comment for corge. This is not leading or trailing comments // to moo or corge because there are blank lines separating it from // both.

// Detached comment for corge paragraph 2.

optional string corge = 5; / Block comment attached * to corge. Leading asterisks * will be removed. / / Block comment attached to * grault. / optional int32 grault = 6;

// ignored detached comments.

optional string leading_comments = 3;
trailing_comments str
optional string trailing_comments = 4;
leading_detached_comments list[str]
repeated string leading_detached_comments = 6;

SymbolVisibility

Bases: Enum

Describes the 'visibility' of a symbol with respect to the proto import system. Symbols can only be imported when the visibility rules do not prevent it (ex: local symbols cannot be imported). Visibility modifiers can only set on message and enum as they are the only types available to be referenced from other files.

enum google.protobuf.SymbolVisibility

Attributes:

Name Type Description
VISIBILITY_UNSET
VISIBILITY_UNSET = 0
VISIBILITY_LOCAL
VISIBILITY_LOCAL = 1
VISIBILITY_EXPORT
VISIBILITY_EXPORT = 2

UninterpretedOption

UninterpretedOption(
    *,
    name=None,
    identifier_value=None,
    positive_int_value=None,
    negative_int_value=None,
    double_value=None,
    string_value=None,
    aggregate_value=None,
)

Bases: Message[_UninterpretedOptionFields]

A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

message google.protobuf.UninterpretedOption

Attributes:

Name Type Description
name list[NamePart]
repeated google.protobuf.UninterpretedOption.NamePart name = 2;
identifier_value str

The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.

optional string identifier_value = 3;
positive_int_value int
optional uint64 positive_int_value = 4;
negative_int_value int
optional int64 negative_int_value = 5;
double_value float
optional double double_value = 6;
string_value bytes
optional bytes string_value = 7;
aggregate_value str
optional string aggregate_value = 8;

NamePart

NamePart(*, name_part=None, is_extension=None)

Bases: Message[_NamePartFields]

The name of the uninterpreted option. Each string represents a segment in a dot-separated name. is_extension is true iff a segment represents an extension (denoted with parentheses in options specs in .proto files). E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents "foo.(bar.baz).moo".

message google.protobuf.UninterpretedOption.NamePart

Attributes:

Name Type Description
name_part str
required string name_part = 1;
is_extension bool
required bool is_extension = 2;

Duration

Duration(*, seconds=0, nanos=0)

Bases: Message[_DurationFields], DurationMixin

A Duration represents a signed, fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution. It is independent of any calendar and concepts like "day" or "month". It is related to Timestamp in that the difference between two Timestamp values is a Duration and it can be added or subtracted from a Timestamp. Range is approximately +-10,000 years.

Examples

Example 1: Compute Duration from two Timestamps in pseudo code.

Timestamp start = ...;
Timestamp end = ...;
Duration duration = ...;

duration.seconds = end.seconds - start.seconds;
duration.nanos = end.nanos - start.nanos;

if (duration.seconds < 0 && duration.nanos > 0) {
  duration.seconds += 1;
  duration.nanos -= 1000000000;
} else if (duration.seconds > 0 && duration.nanos < 0) {
  duration.seconds -= 1;
  duration.nanos += 1000000000;
}

Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.

Timestamp start = ...;
Duration duration = ...;
Timestamp end = ...;

end.seconds = start.seconds + duration.seconds;
end.nanos = start.nanos + duration.nanos;

if (end.nanos < 0) {
  end.seconds -= 1;
  end.nanos += 1000000000;
} else if (end.nanos >= 1000000000) {
  end.seconds += 1;
  end.nanos -= 1000000000;
}

Example 3: Compute Duration from datetime.timedelta in Python.

td = datetime.timedelta(days=3, minutes=10)
duration = Duration()
duration.FromTimedelta(td)

JSON Mapping

In JSON format, the Duration type is encoded as a string rather than an object, where the string ends in the suffix "s" (indicating seconds) and is preceded by the number of seconds, with nanoseconds expressed as fractional seconds. For example, 3 seconds with 0 nanoseconds should be encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should be expressed in JSON format as "3.000000001s", and 3 seconds and 1 microsecond should be expressed in JSON format as "3.000001s".

message google.protobuf.Duration

Attributes:

Name Type Description
seconds int

Signed seconds of the span of time. Must be from -315,576,000,000 to +315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years

int64 seconds = 1;
nanos int

Signed fractions of a second at nanosecond resolution of the span of time. Durations less than one second are represented with a 0 seconds field and a positive or negative nanos field. For durations of one second or more, a non-zero value for the nanos field must be of the same sign as the seconds field. Must be from -999,999,999 to +999,999,999 inclusive.

int32 nanos = 2;

from_nanos classmethod

from_nanos(nanos)

Create from a duration in nanoseconds.

from_timedelta classmethod

from_timedelta(td)

Create from the given timedelta.

to_timedelta

to_timedelta()

Convert to a timedelta.

to_nanos

to_nanos()

Convert to the number of nanoseconds.

Examples:

>>> from protobuf.wkt import Duration
>>> Duration(nanos=1_000).to_nanos()
1000
>>> Duration(seconds=10, nanos=100).to_nanos()
10000000100

to_seconds

to_seconds()

Convert to a number of seconds.

Parts of a second are expressed as fractional values.

Examples:

>>> from protobuf.wkt import Duration
>>> Duration(seconds=10).to_seconds()
10.0
>>> Duration(nanos=100).to_seconds()
1e-07
>>> Duration(seconds=10, nanos=100).to_seconds()
10.0000001

from_seconds classmethod

from_seconds(seconds)

Create a new Duration from a duration in seconds.

Parts of a second are expressed as fractional values.

Examples:

>>> from protobuf.wkt import Duration
>>> Duration.from_seconds(10)
Duration(seconds=10)
>>> Duration.from_seconds(10.1)
Duration(seconds=10, nanos=100000000)

Empty

Empty()

Bases: Message[_EmptyFields]

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance:

service Foo {
  rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
}
message google.protobuf.Empty

FieldMask

FieldMask(*, paths=None)

Bases: Message[_FieldMaskFields]

FieldMask represents a set of symbolic field paths, for example:

paths: "f.a"
paths: "f.b.d"

Here f represents a field in some root message, a and b fields in the message found in f, and d a field found in the message in f.b.

Field masks are used to specify a subset of fields that should be returned by a get operation or modified by an update operation. Field masks also have a custom JSON encoding (see below).

Field Masks in Projections

When used in the context of a projection, a response message or sub-message is filtered by the API to only contain those fields as specified in the mask. For example, if the mask in the previous example is applied to a response message as follows:

f {
  a : 22
  b {
    d : 1
    x : 2
  }
  y : 13
}
z: 8

The result will not contain specific values for fields x,y and z (their value will be set to the default, and omitted in proto text output):

f {
  a : 22
  b {
    d : 1
  }
}

A repeated field is not allowed except at the last position of a paths string.

If a FieldMask object is not present in a get operation, the operation applies to all fields (as if a FieldMask of all fields had been specified).

Note that a field mask does not necessarily apply to the top-level response message. In case of a REST get operation, the field mask applies directly to the response, but in case of a REST list operation, the mask instead applies to each individual message in the returned resource list. In case of a REST custom method, other definitions may be used. Where the mask applies will be clearly documented together with its declaration in the API. In any case, the effect on the returned resource/resources is required behavior for APIs.

Field Masks in Update Operations

A field mask in update operations specifies which fields of the targeted resource are going to be updated. The API is required to only change the values of the fields as specified in the mask and leave the others untouched. If a resource is passed in to describe the updated values, the API ignores the values of all fields not covered by the mask.

If a repeated field is specified for an update operation, new values will be appended to the existing repeated field in the target resource. Note that a repeated field is only allowed in the last position of a paths string.

If a sub-message is specified in the last position of the field mask for an update operation, then new value will be merged into the existing sub-message in the target resource.

For example, given the target message:

f {
  b {
    d: 1
    x: 2
  }
  c: [1]
}

And an update message:

f {
  b {
    d: 10
  }
  c: [2]
}

then if the field mask is:

paths: ["f.b", "f.c"]

then the result will be:

f {
  b {
    d: 10
    x: 2
  }
  c: [1, 2]
}

An implementation may provide options to override this default behavior for repeated and message fields.

Note that libraries which implement FieldMask resolution have various different behaviors in the face of empty masks or the special "*" mask. When implementing a service you should confirm these cases have the appropriate behavior in the underlying FieldMask library that you desire, and you may need to special case those cases in your application code if the underlying field mask library behavior differs from your intended service semantics.

Update methods implementing https://google.aip.dev/134 - MUST support the special value * meaning "full replace" - MUST treat an omitted field mask as "replace fields which are present".

Other methods implementing https://google.aip.dev/157 - SHOULD support the special value "*" to mean "get all". - MUST treat an omitted field mask to mean "get all", unless otherwise documented.

Considerations for HTTP REST

The HTTP kind of an update operation which uses a field mask must be set to PATCH instead of PUT in order to satisfy HTTP semantics (PUT must only be used for full updates).

JSON Encoding of Field Masks

In JSON, a field mask is encoded as a single string where paths are separated by a comma. Fields name in each path are converted to/from lower-camel naming conventions.

As an example, consider the following message declarations:

message Profile {
  User user = 1;
  Photo photo = 2;
}
message User {
  string display_name = 1;
  string address = 2;
}

In proto a field mask for Profile may look as such:

mask {
  paths: "user.display_name"
  paths: "photo"
}

In JSON, the same mask is represented as below:

{
  mask: "user.displayName,photo"
}

Field Masks and Oneof Fields

Field masks treat fields in oneofs just as regular fields. Consider the following message:

message SampleMessage {
  oneof test_oneof {
    string name = 4;
    SubMessage sub_message = 9;
  }
}

The field mask can be:

mask {
  paths: "name"
}

Or:

mask {
  paths: "sub_message"
}

Note that oneof type names ("test_oneof" in this case) cannot be used in paths.

Field Mask Verification

The implementation of any API method which has a FieldMask type field in the request should verify the included field paths, and return an INVALID_ARGUMENT error if any path is unmappable.

message google.protobuf.FieldMask

Attributes:

Name Type Description
paths list[str]

The set of field mask paths.

repeated string paths = 1;

GoFeatures

GoFeatures(
    *,
    legacy_unmarshal_json_enum=None,
    api_level=None,
    strip_enum_prefix=None,
    optimize_mode=None,
)

Bases: Message[_GoFeaturesFields]

message pb.GoFeatures

Attributes:

Name Type Description
legacy_unmarshal_json_enum bool

Whether or not to generate the deprecated UnmarshalJSON method for enums. Can only be true for proto using the Open Struct api.

optional bool legacy_unmarshal_json_enum = 1;
api_level APILevel

One of OPEN, HYBRID or OPAQUE.

optional pb.GoFeatures.APILevel api_level = 2;
strip_enum_prefix StripEnumPrefix
optional pb.GoFeatures.StripEnumPrefix strip_enum_prefix = 3;
optimize_mode OptimizeMode
optional pb.GoFeatures.OptimizeModeFeature.OptimizeMode optimize_mode = 4;

OptimizeModeFeature

OptimizeModeFeature()

Bases: Message[_OptimizeModeFeatureFields]

Wrap the OptimizeMode enum in a message for scoping: This way, users can type shorter names (SPEED, CODE_SIZE).

message pb.GoFeatures.OptimizeModeFeature

OptimizeMode

Bases: Enum

The name of this enum matches OptimizeMode in descriptor.proto.

enum pb.GoFeatures.OptimizeModeFeature.OptimizeMode

Attributes:

Name Type Description
UNSPECIFIED

OPTIMIZE_MODE_UNSPECIFIED results in falling back to the default (optimize for code size), but needs to be a separate value to distinguish between an explicitly set optimize mode or a missing optimize mode.

OPTIMIZE_MODE_UNSPECIFIED = 0
SPEED
SPEED = 1
CODE_SIZE

There is no enum entry for LITE_RUNTIME (descriptor.proto), because Go Protobuf does not have the concept of a lite runtime.

CODE_SIZE = 2

APILevel

Bases: Enum

enum pb.GoFeatures.APILevel

Attributes:

Name Type Description
UNSPECIFIED

API_LEVEL_UNSPECIFIED results in selecting the OPEN API, but needs to be a separate value to distinguish between an explicitly set api level or a missing api level.

API_LEVEL_UNSPECIFIED = 0
API_OPEN
API_OPEN = 1
API_HYBRID
API_HYBRID = 2
API_OPAQUE
API_OPAQUE = 3

StripEnumPrefix

Bases: Enum

enum pb.GoFeatures.StripEnumPrefix

Attributes:

Name Type Description
UNSPECIFIED
STRIP_ENUM_PREFIX_UNSPECIFIED = 0
KEEP
STRIP_ENUM_PREFIX_KEEP = 1
GENERATE_BOTH
STRIP_ENUM_PREFIX_GENERATE_BOTH = 2
STRIP
STRIP_ENUM_PREFIX_STRIP = 3

JavaFeatures

JavaFeatures(
    *,
    legacy_closed_enum=None,
    utf8_validation=None,
    large_enum=None,
    use_old_outer_classname_default=None,
    nest_in_file_class=None,
)

Bases: Message[_JavaFeaturesFields]

message pb.JavaFeatures

Attributes:

Name Type Description
legacy_closed_enum bool

Whether or not to treat an enum field as closed. This option is only applicable to enum fields, and will be removed in the future. It is consistent with the legacy behavior of using proto3 enum types for proto2 fields.

optional bool legacy_closed_enum = 1;
utf8_validation Utf8Validation
optional pb.JavaFeatures.Utf8Validation utf8_validation = 2;
large_enum bool

Allows creation of large Java enums, extending beyond the standard constant limits imposed by the Java language.

optional bool large_enum = 3;
use_old_outer_classname_default bool

Whether to use the old default outer class name scheme, or the new feature which adds a "Proto" suffix to the outer class name.

Users will not be able to set this option, because we removed it in the same edition that it was introduced. But we use it to determine which naming scheme to use for outer class name defaults.

optional bool use_old_outer_classname_default = 4;
nest_in_file_class NestInFileClass

Whether to nest the generated class in the generated file class. This is only applicable to top-level messages, enums, and services.

optional pb.JavaFeatures.NestInFileClassFeature.NestInFileClass nest_in_file_class = 5;

NestInFileClassFeature

NestInFileClassFeature()

Bases: Message[_NestInFileClassFeatureFields]

message pb.JavaFeatures.NestInFileClassFeature

NestInFileClass

Bases: Enum

enum pb.JavaFeatures.NestInFileClassFeature.NestInFileClass

Attributes:

Name Type Description
UNKNOWN

Invalid default, which should never be used.

NEST_IN_FILE_CLASS_UNKNOWN = 0
NO

Do not nest the generated class in the file class.

NO = 1
YES

Nest the generated class in the file class.

YES = 2
LEGACY

Fall back to the java_multiple_files option. Users won't be able to set this option.

LEGACY = 3

Utf8Validation

Bases: Enum

The UTF8 validation strategy to use.

enum pb.JavaFeatures.Utf8Validation

Attributes:

Name Type Description
UNKNOWN

Invalid default, which should never be used.

UTF8_VALIDATION_UNKNOWN = 0
DEFAULT

Respect the UTF8 validation behavior specified by the global utf8_validation feature.

DEFAULT = 1
VERIFY

Verifies UTF8 validity overriding the global utf8_validation feature. This represents the legacy java_string_check_utf8 option.

VERIFY = 2

SourceContext

SourceContext(*, file_name='')

Bases: Message[_SourceContextFields]

SourceContext represents information about the source of a protobuf element, like the file in which it is defined.

message google.protobuf.SourceContext

Attributes:

Name Type Description
file_name str

The path-qualified name of the .proto file that contained the associated protobuf element. For example: "google/protobuf/source_context.proto".

string file_name = 1;

ListValue

ListValue(*, values=None)

Bases: Message[_ListValueFields], ListValueMixin

Represents a JSON array.

message google.protobuf.ListValue

Attributes:

Name Type Description
values list[Value]

Repeated field of dynamically typed values.

repeated google.protobuf.Value values = 1;

from_python classmethod

from_python(values)

Create a ListValue from a list of Python values.

Examples:

>>> from protobuf.wkt import ListValue
>>> ListValue.from_python([1, "foo"])
ListValue(values=[Value(kind=Oneof(field='number_value', value=1.0)), Value(kind=Oneof(field='string_value', value='foo'))])

to_python

to_python()

Convert this ListValue to a list of Python values.

Examples:

>>> from protobuf import Oneof
>>> from protobuf.wkt import ListValue, Value
>>> ListValue(
...     values=[
...         Value(kind=Oneof(field="number_value", value=1.0)),
...         Value(kind=Oneof(field="string_value", value="foo")),
...     ]
... ).to_python()
[1.0, 'foo']

NullValue

Bases: Enum

Represents a JSON null.

NullValue is a sentinel, using an enum with only one value to represent the null value for the Value type union.

A field of type NullValue with any value other than 0 is considered invalid. Most ProtoJSON serializers will emit a Value with a null_value set as a JSON null regardless of the integer value, and so will round trip to a 0 value.

enum google.protobuf.NullValue

Attributes:

Name Type Description
NULL_VALUE

Null value.

NULL_VALUE = 0

Struct

Struct(*, fields=None)

Bases: Message[_StructFields], StructMixin

Represents a JSON object.

An unordered key-value map, intending to perfectly capture the semantics of a JSON object. This enables parsing any arbitrary JSON payload as a message field in ProtoJSON format.

This follows RFC 8259 guidelines for interoperable JSON: notably this type cannot represent large Int64 values or NaN/Infinity numbers, since the JSON format generally does not support those values in its number type.

If you do not intend to parse arbitrary JSON into your message, a custom typed message should be preferred instead of using this type.

message google.protobuf.Struct

Attributes:

Name Type Description
fields dict[str, Value]

Unordered map of dynamically typed values.

map<string, google.protobuf.Value> fields = 1;

from_python classmethod

from_python(data)

Create a Struct from a Python dict.

Examples:

>>> from protobuf.wkt import Struct
>>> Struct.from_python({"a": 1, "b": "bear"})
Struct(fields={'a': Value(kind=Oneof(field='number_value', value=1.0)), 'b': Value(kind=Oneof(field='string_value', value='bear'))})

to_python

to_python()

Convert this Struct to a Python dict.

Examples:

>>> from protobuf import Oneof
>>> from protobuf.wkt import Struct, Value
>>> Struct(
...     fields={
...         "a": Value(kind=Oneof(field="number_value", value=1.0)),
...         "b": Value(kind=Oneof(field="string_value", value="bear")),
...     }
... ).to_python()
{'a': 1.0, 'b': 'bear'}

Value

Value(*, kind=None)

Bases: Message[_ValueFields], ValueMixin

Represents a JSON value.

Value represents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values. A producer of value is expected to set one of these variants. Absence of any variant is an invalid state.

message google.protobuf.Value

Attributes:

Name Type Description
kind Oneof[Literal['null_value'], NullValue] | Oneof[Literal['number_value'], float] | Oneof[Literal['string_value'], str] | Oneof[Literal['bool_value'], bool] | Oneof[Literal['struct_value'], Struct] | Oneof[Literal['list_value'], ListValue] | None

The kind of value.

oneof kind

from_python classmethod

from_python(value)

Create a Value from a Python value.

Parameters:

Name Type Description Default
value ValueTypeParam

The Python value to convert. int values are converted to float.

required

Returns:

Type Description
SelfValue

A Value representing the given Python value.

Raises:

Type Description
TypeError

If the value is of an unsupported type, including bytes.

Examples:

>>> from protobuf.wkt import Value
>>> Value.from_python(None)
Value(kind=Oneof(field='null_value', value=NullValue.NULL_VALUE))
>>> Value.from_python(True)
Value(kind=Oneof(field='bool_value', value=True))
>>> Value.from_python(2)
Value(kind=Oneof(field='number_value', value=2.0))
>>> Value.from_python(3.14)
Value(kind=Oneof(field='number_value', value=3.14))
>>> Value.from_python("hello")
Value(kind=Oneof(field='string_value', value='hello'))
>>> Value.from_python([1, "foo"])
Value(kind=Oneof(field='list_value', value=ListValue(values=[Value(kind=Oneof(field='number_value', value=1.0)), Value(kind=Oneof(field='string_value', value='foo'))])))
>>> Value.from_python({"a": 1, "b": "bear"})
Value(kind=Oneof(field='struct_value', value=Struct(fields={'a': Value(kind=Oneof(field='number_value', value=1.0)), 'b': Value(kind=Oneof(field='string_value', value='bear'))})))

to_python

to_python()

Convert this Value to a Python value.

Examples:

>>> from protobuf import Oneof
>>> from protobuf.wkt import ListValue, NullValue, Struct, Value
>>> Value(
...     kind=Oneof(field="null_value", value=NullValue.NULL_VALUE)
... ).to_python()
>>> Value(kind=Oneof(field="bool_value", value=True)).to_python()
True
>>> Value(kind=Oneof(field="number_value", value=3.14)).to_python()
3.14
>>> Value(kind=Oneof(field="string_value", value="hello")).to_python()
'hello'
>>> Value(
...     kind=Oneof(
...         field="list_value",
...         value=ListValue(
...             values=[
...                 Value(kind=Oneof(field="number_value", value=1.0)),
...                 Value(kind=Oneof(field="string_value", value="foo")),
...             ]
...         ),
...     )
... ).to_python()
[1.0, 'foo']
>>> Value(
...     kind=Oneof(
...         field="struct_value",
...         value=Struct(
...             fields={
...                 "a": Value(kind=Oneof(field="number_value", value=1.0)),
...                 "b": Value(
...                     kind=Oneof(field="string_value", value="bear")
...                 ),
...             }
...         ),
...     )
... ).to_python()
{'a': 1.0, 'b': 'bear'}

Timestamp

Timestamp(*, seconds=0, nanos=0)

Bases: Message[_TimestampFields], TimestampMixin

A Timestamp represents a point in time independent of any time zone or local calendar, encoded as a count of seconds and fractions of seconds at nanosecond resolution. The count is relative to an epoch at UTC midnight on January 1, 1970, in the proleptic Gregorian calendar which extends the Gregorian calendar backwards to year one.

All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap second table is needed for interpretation, using a 24-hour linear smear.

The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By restricting to that range, we ensure that we can convert to and from RFC 3339 date strings.

Examples

Example 1: Compute Timestamp from POSIX time().

Timestamp timestamp;
timestamp.set_seconds(time(NULL));
timestamp.set_nanos(0);

Example 2: Compute Timestamp from POSIX gettimeofday().

struct timeval tv;
gettimeofday(&tv, NULL);

Timestamp timestamp;
timestamp.set_seconds(tv.tv_sec);
timestamp.set_nanos(tv.tv_usec * 1000);

Example 3: Compute Timestamp from Win32 GetSystemTimeAsFileTime().

FILETIME ft;
GetSystemTimeAsFileTime(&ft);
UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;

// A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
// is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
Timestamp timestamp;
timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));

Example 4: Compute Timestamp from Java System.currentTimeMillis().

long millis = System.currentTimeMillis();

Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
    .setNanos((int) ((millis % 1000) * 1000000)).build();

Example 5: Compute Timestamp from Java Instant.now().

Instant now = Instant.now();

Timestamp timestamp =
    Timestamp.newBuilder().setSeconds(now.getEpochSecond())
        .setNanos(now.getNano()).build();

Example 6: Compute Timestamp from current time in Python.

timestamp = Timestamp()
timestamp.GetCurrentTime()

JSON Mapping

In JSON format, the Timestamp type is encoded as a string in the RFC 3339 format. That is, the format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" where {year} is always expressed using four digits while {month}, {day}, {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone is required. A ProtoJSON serializer should always use UTC (as indicated by "Z") when printing the Timestamp type and a ProtoJSON parser should be able to accept both UTC and other timezones (as indicated by an offset).

For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past 01:30 UTC on January 15, 2017.

In JavaScript, one can convert a Date object to this format using the standard toISOString() method. In Python, a standard datetime.datetime object can be converted to this format using strftime with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use the Joda Time's ISODateTimeFormat.dateTime() to obtain a formatter capable of generating timestamps in this format.

message google.protobuf.Timestamp

Attributes:

Name Type Description
seconds int

Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be between -62135596800 and 253402300799 inclusive (which corresponds to 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z).

int64 seconds = 1;
nanos int

Non-negative fractions of a second at nanosecond resolution. This field is the nanosecond portion of the duration, not an alternative to seconds. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be between 0 and 999,999,999 inclusive.

int32 nanos = 2;

now classmethod

now()

Create for the current time.

from_nanos classmethod

from_nanos(nanos)

Create from a Unix timestamp in nanoseconds.

from_datetime classmethod

from_datetime(dt)

Create from the given datetime.

to_datetime

to_datetime()

Convert to a datetime.

to_nanos

to_nanos()

Convert to the number of nanoseconds since Unix epoch 1970-01-01T00:00:00Z.

Examples:

>>> from protobuf.wkt import Timestamp
>>> Timestamp(nanos=1_000).to_nanos()
1000
>>> Timestamp(seconds=10, nanos=100).to_nanos()
10000000100

to_seconds

to_seconds()

Convert to a number of seconds since Unix epoch 1970-01-01T00:00:00Z.

Parts of a second are expressed as fractional values.

Examples:

>>> from protobuf.wkt import Timestamp
>>> Timestamp(seconds=10).to_seconds()
10.0
>>> Timestamp(nanos=100).to_seconds()
1e-07
>>> Timestamp(seconds=10, nanos=100).to_seconds()
10.0000001

from_seconds classmethod

from_seconds(seconds)

Create a new Timestamp from a timestamp expressed in seconds since Unix epoch 1970-01-01T00:00:00Z.

Parts of a second are expressed as fractional values.

Examples:

>>> from protobuf.wkt import Timestamp
>>> Timestamp.from_seconds(10)
Timestamp(seconds=10)
>>> Timestamp.from_seconds(10.1)
Timestamp(seconds=10, nanos=100000000)
>>> Timestamp.from_seconds(-10.1)
Timestamp(seconds=-11, nanos=900000000)

Enum

Enum(
    *,
    name="",
    enumvalue=None,
    options=None,
    source_context=None,
    syntax=None,
    edition="",
)

Bases: Message[_EnumFields]

Enum type definition.

New usages of this message as an alternative to EnumDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.Enum

Attributes:

Name Type Description
name str

Enum type name.

string name = 1;
enumvalue list[EnumValue]

Enum value definitions.

repeated google.protobuf.EnumValue enumvalue = 2;
options list[Option]

Protocol buffer options.

repeated google.protobuf.Option options = 3;
source_context SourceContext | None

The source context.

optional google.protobuf.SourceContext source_context = 4;
syntax Syntax

The source syntax.

google.protobuf.Syntax syntax = 5;
edition str

The source edition string, only valid when syntax is SYNTAX_EDITIONS.

string edition = 6;

EnumValue

EnumValue(*, name='', number=0, options=None)

Bases: Message[_EnumValueFields]

Enum value definition.

New usages of this message as an alternative to EnumValueDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.EnumValue

Attributes:

Name Type Description
name str

Enum value name.

string name = 1;
number int

Enum value number.

int32 number = 2;
options list[Option]

Protocol buffer options.

repeated google.protobuf.Option options = 3;

Field

Field(
    *,
    kind=None,
    cardinality=None,
    number=0,
    name="",
    type_url="",
    oneof_index=0,
    packed=False,
    options=None,
    json_name="",
    default_value="",
)

Bases: Message[_FieldFields]

A single field of a message type.

New usages of this message as an alternative to FieldDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.Field

Attributes:

Name Type Description
kind Kind

The field type.

google.protobuf.Field.Kind kind = 1;
cardinality Cardinality

The field cardinality.

google.protobuf.Field.Cardinality cardinality = 2;
number int

The field number.

int32 number = 3;
name str

The field name.

string name = 4;
type_url str

The field type URL, without the scheme, for message or enumeration types. Example: "type.googleapis.com/google.protobuf.Timestamp".

string type_url = 6;
oneof_index int

The index of the field type in Type.oneofs, for message or enumeration types. The first type has index 1; zero means the type is not in the list.

int32 oneof_index = 7;
packed bool

Whether to use alternative packed wire representation.

bool packed = 8;
options list[Option]

The protocol buffer options.

repeated google.protobuf.Option options = 9;
json_name str

The field JSON name.

string json_name = 10;
default_value str

The string value of the default value of this field. Proto2 syntax only.

string default_value = 11;

Kind

Bases: Enum

Basic field types.

enum google.protobuf.Field.Kind

Attributes:

Name Type Description
TYPE_UNKNOWN

Field type unknown.

TYPE_UNKNOWN = 0
TYPE_DOUBLE

Field type double.

TYPE_DOUBLE = 1
TYPE_FLOAT

Field type float.

TYPE_FLOAT = 2
TYPE_INT64

Field type int64.

TYPE_INT64 = 3
TYPE_UINT64

Field type uint64.

TYPE_UINT64 = 4
TYPE_INT32

Field type int32.

TYPE_INT32 = 5
TYPE_FIXED64

Field type fixed64.

TYPE_FIXED64 = 6
TYPE_FIXED32

Field type fixed32.

TYPE_FIXED32 = 7
TYPE_BOOL

Field type bool.

TYPE_BOOL = 8
TYPE_STRING

Field type string.

TYPE_STRING = 9
TYPE_GROUP

Field type group. Proto2 syntax only, and deprecated.

TYPE_GROUP = 10
TYPE_MESSAGE

Field type message.

TYPE_MESSAGE = 11
TYPE_BYTES

Field type bytes.

TYPE_BYTES = 12
TYPE_UINT32

Field type uint32.

TYPE_UINT32 = 13
TYPE_ENUM

Field type enum.

TYPE_ENUM = 14
TYPE_SFIXED32

Field type sfixed32.

TYPE_SFIXED32 = 15
TYPE_SFIXED64

Field type sfixed64.

TYPE_SFIXED64 = 16
TYPE_SINT32

Field type sint32.

TYPE_SINT32 = 17
TYPE_SINT64

Field type sint64.

TYPE_SINT64 = 18

Cardinality

Bases: Enum

Whether a field is optional, required, or repeated.

enum google.protobuf.Field.Cardinality

Attributes:

Name Type Description
UNKNOWN

For fields with unknown cardinality.

CARDINALITY_UNKNOWN = 0
OPTIONAL

For optional fields.

CARDINALITY_OPTIONAL = 1
REQUIRED

For required fields. Proto2 syntax only.

CARDINALITY_REQUIRED = 2
REPEATED

For repeated fields.

CARDINALITY_REPEATED = 3

Option

Option(*, name='', value=None)

Bases: Message[_OptionFields]

A protocol buffer option, which can be attached to a message, field, enumeration, etc.

New usages of this message as an alternative to FileOptions, MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions, or MethodOptions are strongly discouraged.

message google.protobuf.Option

Attributes:

Name Type Description
name str

The option's name. For protobuf built-in options (options defined in descriptor.proto), this is the short name. For example, "map_entry". For custom options, it should be the fully-qualified name. For example, "google.api.http".

string name = 1;
value Any | None

The option's value packed in an Any message. If the value is a primitive, the corresponding wrapper type defined in google/protobuf/wrappers.proto should be used. If the value is an enum, it should be stored as an int32 value using the google.protobuf.Int32Value type.

optional google.protobuf.Any value = 2;

Syntax

Bases: Enum

The syntax in which a protocol buffer element is defined.

enum google.protobuf.Syntax

Attributes:

Name Type Description
PROTO2

Syntax proto2.

SYNTAX_PROTO2 = 0
PROTO3

Syntax proto3.

SYNTAX_PROTO3 = 1
EDITIONS

Syntax editions.

SYNTAX_EDITIONS = 2

Type

Type(
    *,
    name="",
    fields=None,
    oneofs=None,
    options=None,
    source_context=None,
    syntax=None,
    edition="",
)

Bases: Message[_TypeFields]

A protocol buffer message type.

New usages of this message as an alternative to DescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.

message google.protobuf.Type

Attributes:

Name Type Description
name str

The fully qualified message name.

string name = 1;
fields list[Field]

The list of fields.

repeated google.protobuf.Field fields = 2;
oneofs list[str]

The list of types appearing in oneof definitions in this type.

repeated string oneofs = 3;
options list[Option]

The protocol buffer options.

repeated google.protobuf.Option options = 4;
source_context SourceContext | None

The source context.

optional google.protobuf.SourceContext source_context = 5;
syntax Syntax

The source syntax.

google.protobuf.Syntax syntax = 6;
edition str

The source edition string, only valid when syntax is SYNTAX_EDITIONS.

string edition = 7;

BoolValue

BoolValue(*, value=False)

Bases: Message[_BoolValueFields]

Wrapper message for bool.

The JSON representation for BoolValue is JSON true and false.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.BoolValue

Attributes:

Name Type Description
value bool

The bool value.

bool value = 1;

BytesValue

BytesValue(*, value=b'')

Bases: Message[_BytesValueFields]

Wrapper message for bytes.

The JSON representation for BytesValue is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.BytesValue

Attributes:

Name Type Description
value bytes

The bytes value.

bytes value = 1;

DoubleValue

DoubleValue(*, value=0)

Bases: Message[_DoubleValueFields]

Wrapper message for double.

The JSON representation for DoubleValue is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.DoubleValue

Attributes:

Name Type Description
value float

The double value.

double value = 1;

FloatValue

FloatValue(*, value=0)

Bases: Message[_FloatValueFields]

Wrapper message for float.

The JSON representation for FloatValue is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.FloatValue

Attributes:

Name Type Description
value float

The float value.

float value = 1;

Int32Value

Int32Value(*, value=0)

Bases: Message[_Int32ValueFields]

Wrapper message for int32.

The JSON representation for Int32Value is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.Int32Value

Attributes:

Name Type Description
value int

The int32 value.

int32 value = 1;

Int64Value

Int64Value(*, value=0)

Bases: Message[_Int64ValueFields]

Wrapper message for int64.

The JSON representation for Int64Value is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.Int64Value

Attributes:

Name Type Description
value int

The int64 value.

int64 value = 1;

StringValue

StringValue(*, value='')

Bases: Message[_StringValueFields]

Wrapper message for string.

The JSON representation for StringValue is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.StringValue

Attributes:

Name Type Description
value str

The string value.

string value = 1;

UInt32Value

UInt32Value(*, value=0)

Bases: Message[_UInt32ValueFields]

Wrapper message for uint32.

The JSON representation for UInt32Value is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.UInt32Value

Attributes:

Name Type Description
value int

The uint32 value.

uint32 value = 1;

UInt64Value

UInt64Value(*, value=0)

Bases: Message[_UInt64ValueFields]

Wrapper message for uint64.

The JSON representation for UInt64Value is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

message google.protobuf.UInt64Value

Attributes:

Name Type Description
value int

The uint64 value.

uint64 value = 1;