Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [google-maps-fleetengine-delivery] add trace_id to Fleet Engine headers #12120

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.2" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.2" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ class DeliveryRequestHeader(proto.Message):
android_api_level (int):
Android API level of the calling SDK, only applicable for
the Android SDKs. Field value example: ``23``.
trace_id (str):
Optional ID that can be provided for logging
purposes in order to identify the request.
"""

class SdkType(proto.Enum):
Expand Down Expand Up @@ -156,6 +159,10 @@ class Platform(proto.Enum):
proto.INT32,
number=11,
)
trace_id: str = proto.Field(
proto.STRING,
number=12,
)


__all__ = tuple(sorted(__protobuf__.manifest))
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-maps-fleetengine-delivery",
"version": "0.1.2"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
Loading