weave-python 0.32.0__tar.gz → 0.33.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {weave_python-0.32.0 → weave_python-0.33.0}/.github/workflows/generate.yaml +6 -7
- {weave_python-0.32.0 → weave_python-0.33.0}/.github/workflows/release.yaml +0 -1
- {weave_python-0.32.0 → weave_python-0.33.0}/PKG-INFO +1 -1
- {weave_python-0.32.0 → weave_python-0.33.0}/uv.lock +48 -48
- weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2.py +70 -0
- weave_python-0.33.0/weave/weaveapi/atc/v1/event_pb2.pyi +446 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/service_pb2.py +67 -9
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/service_pb2.pyi +319 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/service_pb2_grpc.py +143 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/service_pb2_grpc.pyi +67 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2.py +70 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2.pyi +412 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2.py +154 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2.pyi +518 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2_grpc.py +322 -0
- weave_python-0.33.0/weave/weaveapi/provider/v1/service_pb2_grpc.pyi +155 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2_grpc.py +2 -0
- weave_python-0.33.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi +21 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weavesql/atcdb/event.py +322 -1
- weave_python-0.33.0/weave/weavesql/atcdb/inspection.py +613 -0
- weave_python-0.33.0/weave/weavesql/atcdb/models.py +102 -0
- weave_python-0.33.0/weave/weavesql/atcdb/run_template.py +432 -0
- weave_python-0.33.0/weave/weavesql/atcdb/snapshot.py +249 -0
- weave_python-0.33.0/weave/weavesql/atcdb/team.py +464 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weavesql/weavedb/models.py +27 -0
- weave_python-0.33.0/weave/weavesql/weavedb/provider.py +683 -0
- weave_python-0.32.0/weave/weaveapi/atc/v1/event_pb2.py +0 -40
- weave_python-0.32.0/weave/weaveapi/atc/v1/event_pb2.pyi +0 -94
- weave_python-0.32.0/weave/weavesql/atcdb/models.py +0 -28
- {weave_python-0.32.0 → weave_python-0.33.0}/.github/runs-on.yml +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/.github/workflows/format-lint.yaml +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/.gitignore +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/.python-version +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/LICENSE +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/README.md +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/Taskfile.yaml +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/buf.gen.yaml +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/pyproject.toml +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/renovate.json +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/tools/sqlcgen/README.md +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/tools/sqlcgen/sqlcgen.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/tools/sqlcgen/test_sqlcgen.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/event_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/event_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/message_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/message_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/message_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/message_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/process_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/process_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/process_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/process_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/run_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/run_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/run_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/atc/v1/run_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/project_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/project/v1/service_pb2_grpc.pyi +0 -0
- /weave_python-0.32.0/weave/weaveapi/task/v1/task_pb2_grpc.py → /weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py +0 -0
- /weave_python-0.32.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi → /weave_python-0.33.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/service_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/service_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/service_pb2_grpc.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/task_pb2.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weaveapi/task/v1/task_pb2.pyi +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weavesql/atcdb/mailbox.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weavesql/weavedb/project.py +0 -0
- {weave_python-0.32.0 → weave_python-0.33.0}/weave/weavesql/weavedb/task.py +0 -0
|
@@ -17,12 +17,11 @@ jobs:
|
|
|
17
17
|
- name: Configure RunsOn features
|
|
18
18
|
uses: runs-on/action@v2
|
|
19
19
|
|
|
20
|
-
- id:
|
|
21
|
-
uses: actions/
|
|
20
|
+
- id: stitch_auth
|
|
21
|
+
uses: weave-labs/ci/.github/actions/stitch-auth@main
|
|
22
22
|
with:
|
|
23
|
-
|
|
23
|
+
client-id: ${{ vars.STITCH_CLIENT_ID }}
|
|
24
24
|
private-key: ${{ secrets.STITCH_PRIVATE_KEY }}
|
|
25
|
-
owner: weave-labs
|
|
26
25
|
|
|
27
26
|
- uses: actions/checkout@v6
|
|
28
27
|
with:
|
|
@@ -53,7 +52,7 @@ jobs:
|
|
|
53
52
|
persist-credentials: 'false'
|
|
54
53
|
repository: weave-labs/schema
|
|
55
54
|
ref: ${{ github.event.client_payload.ref }}
|
|
56
|
-
token: ${{ steps.
|
|
55
|
+
token: ${{ steps.stitch_auth.outputs.token }}
|
|
57
56
|
|
|
58
57
|
- name: Setup sqlc
|
|
59
58
|
uses: sqlc-dev/setup-sqlc@v5
|
|
@@ -165,12 +164,12 @@ jobs:
|
|
|
165
164
|
branch: "update-schema-${{ github.event.client_payload.schema_version }}"
|
|
166
165
|
commit-message: "schema(codegen): update generated code from schema ${{ github.event.client_payload.schema_version }}"
|
|
167
166
|
title: "schema(codegen): update generated code from schema ${{ github.event.client_payload.schema_version }}"
|
|
168
|
-
token: ${{ steps.
|
|
167
|
+
token: ${{ steps.stitch_auth.outputs.token }}
|
|
169
168
|
|
|
170
169
|
- name: Push to feature branch
|
|
171
170
|
if: steps.mode.outputs.is_branch == 'true' && steps.check_changes.outputs.has_changes == 'true'
|
|
172
171
|
run: |
|
|
173
|
-
git remote set-url origin "https://x-access-token:${{ steps.
|
|
172
|
+
git remote set-url origin "https://x-access-token:${{ steps.stitch_auth.outputs.token }}@github.com/${{ github.repository }}.git"
|
|
174
173
|
git config user.name "weavelabs-stitch[bot]"
|
|
175
174
|
git config user.email "204946046+weavelabs-stitch[bot]@users.noreply.github.com"
|
|
176
175
|
git add -A
|
|
@@ -4,56 +4,56 @@ requires-python = ">=3.10"
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "greenlet"
|
|
7
|
-
version = "3.
|
|
7
|
+
version = "3.4.0"
|
|
8
8
|
source = { registry = "https://pypi.org/simple" }
|
|
9
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
9
|
+
sdist = { url = "https://files.pythonhosted.org/packages/86/94/a5935717b307d7c71fe877b52b884c6af707d2d2090db118a03fbd799369/greenlet-3.4.0.tar.gz", hash = "sha256:f50a96b64dafd6169e595a5c56c9146ef80333e67d4476a65a9c55f400fc22ff", size = 195913, upload-time = "2026-04-08T17:08:00.863Z" }
|
|
10
10
|
wheels = [
|
|
11
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
12
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
13
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
14
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
15
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
16
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
17
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
18
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
19
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
20
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
21
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
22
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
23
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
24
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
25
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
26
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
27
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
28
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
29
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
30
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
31
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
32
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
33
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
34
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
35
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
36
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
37
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
38
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
39
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
40
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
41
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
42
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
43
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
44
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
45
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
46
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
47
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
48
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
49
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
50
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
51
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
52
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
53
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
54
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
55
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
56
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
11
|
+
{ url = "https://files.pythonhosted.org/packages/0c/bc/e30e1e3d5e8860b0e0ce4d2b16b2681b77fd13542fc0d72f7e3c22d16eff/greenlet-3.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d18eae9a7fb0f499efcd146b8c9750a2e1f6e0e93b5a382b3481875354a430e6", size = 284315, upload-time = "2026-04-08T17:02:52.322Z" },
|
|
12
|
+
{ url = "https://files.pythonhosted.org/packages/5b/cc/e023ae1967d2a26737387cac083e99e47f65f58868bd155c4c80c01ec4e0/greenlet-3.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:636d2f95c309e35f650e421c23297d5011716be15d966e6328b367c9fc513a82", size = 601916, upload-time = "2026-04-08T16:24:35.533Z" },
|
|
13
|
+
{ url = "https://files.pythonhosted.org/packages/67/32/5be1677954b6d8810b33abe94e3eb88726311c58fa777dc97e390f7caf5a/greenlet-3.4.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234582c20af9742583c3b2ddfbdbb58a756cfff803763ffaae1ac7990a9fac31", size = 616399, upload-time = "2026-04-08T16:30:54.536Z" },
|
|
14
|
+
{ url = "https://files.pythonhosted.org/packages/74/bf/2d58d5ea515704f83e34699128c9072a34bea27d2b6a556e102105fe62a5/greenlet-3.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:523677e69cd4711b5a014e37bc1fb3a29947c3e3a5bb6a527e1cc50312e5a398", size = 611978, upload-time = "2026-04-08T15:56:31.335Z" },
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/bd/69/6525049b6c179d8a923256304d8387b8bdd4acab1acf0407852463c6d514/greenlet-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b45e45fe47a19051a396abb22e19e7836a59ee6c5a90f3be427343c37908d65b", size = 1571957, upload-time = "2026-04-08T16:26:17.041Z" },
|
|
16
|
+
{ url = "https://files.pythonhosted.org/packages/4e/6c/bbfb798b05fec736a0d24dc23e81b45bcee87f45a83cfb39db031853bddc/greenlet-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5434271357be07f3ad0936c312645853b7e689e679e29310e2de09a9ea6c3adf", size = 1637223, upload-time = "2026-04-08T15:57:27.556Z" },
|
|
17
|
+
{ url = "https://files.pythonhosted.org/packages/b7/7d/981fe0e7c07bd9d5e7eb18decb8590a11e3955878291f7a7de2e9c668eb7/greenlet-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:a19093fbad824ed7c0f355b5ff4214bffda5f1a7f35f29b31fcaa240cc0135ab", size = 237902, upload-time = "2026-04-08T17:03:14.16Z" },
|
|
18
|
+
{ url = "https://files.pythonhosted.org/packages/fb/c6/dba32cab7e3a625b011aa5647486e2d28423a48845a2998c126dd69c85e1/greenlet-3.4.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:805bebb4945094acbab757d34d6e1098be6de8966009ab9ca54f06ff492def58", size = 285504, upload-time = "2026-04-08T15:52:14.071Z" },
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/54/f4/7cb5c2b1feb9a1f50e038be79980dfa969aa91979e5e3a18fdbcfad2c517/greenlet-3.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:439fc2f12b9b512d9dfa681c5afe5f6b3232c708d13e6f02c845e0d9f4c2d8c6", size = 605476, upload-time = "2026-04-08T16:24:37.064Z" },
|
|
20
|
+
{ url = "https://files.pythonhosted.org/packages/d6/af/b66ab0b2f9a4c5a867c136bf66d9599f34f21a1bcca26a2884a29c450bd9/greenlet-3.4.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a70ed1cb0295bee1df57b63bf7f46b4e56a5c93709eea769c1fec1bb23a95875", size = 618336, upload-time = "2026-04-08T16:30:56.59Z" },
|
|
21
|
+
{ url = "https://files.pythonhosted.org/packages/e5/5c/8c5633ece6ba611d64bf2770219a98dd439921d6424e4e8cf16b0ac74ea5/greenlet-3.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c660bce1940a1acae5f51f0a064f1bc785d07ea16efcb4bc708090afc4d69e83", size = 613515, upload-time = "2026-04-08T15:56:32.478Z" },
|
|
22
|
+
{ url = "https://files.pythonhosted.org/packages/a9/df/950d15bca0d90a0e7395eb777903060504cdb509b7b705631e8fb69ff415/greenlet-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ee407d4d1ca9dc632265aee1c8732c4a2d60adff848057cdebfe5fe94eb2c8a2", size = 1574623, upload-time = "2026-04-08T16:26:18.596Z" },
|
|
23
|
+
{ url = "https://files.pythonhosted.org/packages/1a/e7/0839afab829fcb7333c9ff6d80c040949510055d2d4d63251f0d1c7c804e/greenlet-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:956215d5e355fffa7c021d168728321fd4d31fd730ac609b1653b450f6a4bc71", size = 1639579, upload-time = "2026-04-08T15:57:29.231Z" },
|
|
24
|
+
{ url = "https://files.pythonhosted.org/packages/d9/2b/b4482401e9bcaf9f5c97f67ead38db89c19520ff6d0d6699979c6efcc200/greenlet-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:5cb614ace7c27571270354e9c9f696554d073f8aa9319079dcba466bbdead711", size = 238233, upload-time = "2026-04-08T17:02:54.286Z" },
|
|
25
|
+
{ url = "https://files.pythonhosted.org/packages/0c/4d/d8123a4e0bcd583d5cfc8ddae0bbe29c67aab96711be331a7cc935a35966/greenlet-3.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:04403ac74fe295a361f650818de93be11b5038a78f49ccfb64d3b1be8fbf1267", size = 235045, upload-time = "2026-04-08T17:04:05.072Z" },
|
|
26
|
+
{ url = "https://files.pythonhosted.org/packages/65/8b/3669ad3b3f247a791b2b4aceb3aa5a31f5f6817bf547e4e1ff712338145a/greenlet-3.4.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:1a54a921561dd9518d31d2d3db4d7f80e589083063ab4d3e2e950756ef809e1a", size = 286902, upload-time = "2026-04-08T15:52:12.138Z" },
|
|
27
|
+
{ url = "https://files.pythonhosted.org/packages/38/3e/3c0e19b82900873e2d8469b590a6c4b3dfd2b316d0591f1c26b38a4879a5/greenlet-3.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:16dec271460a9a2b154e3b1c2fa1050ce6280878430320e85e08c166772e3f97", size = 606099, upload-time = "2026-04-08T16:24:38.408Z" },
|
|
28
|
+
{ url = "https://files.pythonhosted.org/packages/b5/33/99fef65e7754fc76a4ed14794074c38c9ed3394a5bd129d7f61b705f3168/greenlet-3.4.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:90036ce224ed6fe75508c1907a77e4540176dcf0744473627785dd519c6f9996", size = 618837, upload-time = "2026-04-08T16:30:58.298Z" },
|
|
29
|
+
{ url = "https://files.pythonhosted.org/packages/36/f7/229f3aed6948faa20e0616a0b8568da22e365ede6a54d7d369058b128afd/greenlet-3.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a1c4f6b453006efb8310affb2d132832e9bbb4fc01ce6df6b70d810d38f1f6dc", size = 615062, upload-time = "2026-04-08T15:56:33.766Z" },
|
|
30
|
+
{ url = "https://files.pythonhosted.org/packages/08/97/d988180011aa40135c46cd0d0cf01dd97f7162bae14139b4a3ef54889ba5/greenlet-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9b2d9a138ffa0e306d0e2b72976d2fb10b97e690d40ab36a472acaab0838e2de", size = 1573511, upload-time = "2026-04-08T16:26:20.058Z" },
|
|
31
|
+
{ url = "https://files.pythonhosted.org/packages/d4/0f/a5a26fe152fb3d12e6a474181f6e9848283504d0afd095f353d85726374b/greenlet-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8424683caf46eb0eb6f626cb95e008e8cc30d0cb675bdfa48200925c79b38a08", size = 1640396, upload-time = "2026-04-08T15:57:30.88Z" },
|
|
32
|
+
{ url = "https://files.pythonhosted.org/packages/42/cf/bb2c32d9a100e36ee9f6e38fad6b1e082b8184010cb06259b49e1266ca01/greenlet-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0a53fb071531d003b075c444014ff8f8b1a9898d36bb88abd9ac7b3524648a2", size = 238892, upload-time = "2026-04-08T17:03:10.094Z" },
|
|
33
|
+
{ url = "https://files.pythonhosted.org/packages/b7/47/6c41314bac56e71436ce551c7fbe3cc830ed857e6aa9708dbb9c65142eb6/greenlet-3.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:f38b81880ba28f232f1f675893a39cf7b6db25b31cc0a09bb50787ecf957e85e", size = 235599, upload-time = "2026-04-08T15:52:54.3Z" },
|
|
34
|
+
{ url = "https://files.pythonhosted.org/packages/7a/75/7e9cd1126a1e1f0cd67b0eda02e5221b28488d352684704a78ed505bd719/greenlet-3.4.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:43748988b097f9c6f09364f260741aa73c80747f63389824435c7a50bfdfd5c1", size = 285856, upload-time = "2026-04-08T15:52:45.82Z" },
|
|
35
|
+
{ url = "https://files.pythonhosted.org/packages/9d/c4/3e2df392e5cb199527c4d9dbcaa75c14edcc394b45040f0189f649631e3c/greenlet-3.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5566e4e2cd7a880e8c27618e3eab20f3494452d12fd5129edef7b2f7aa9a36d1", size = 610208, upload-time = "2026-04-08T16:24:39.674Z" },
|
|
36
|
+
{ url = "https://files.pythonhosted.org/packages/da/af/750cdfda1d1bd30a6c28080245be8d0346e669a98fdbae7f4102aa95fff3/greenlet-3.4.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1054c5a3c78e2ab599d452f23f7adafef55062a783a8e241d24f3b633ba6ff82", size = 621269, upload-time = "2026-04-08T16:30:59.767Z" },
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/54/78/0cbc693622cd54ebe25207efbb3a0eb07c2639cb8594f6e3aaaa0bb077a8/greenlet-3.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f82cb6cddc27dd81c96b1506f4aa7def15070c3b2a67d4e46fd19016aacce6cf", size = 617549, upload-time = "2026-04-08T15:56:34.893Z" },
|
|
38
|
+
{ url = "https://files.pythonhosted.org/packages/ba/c0/8966767de01343c1ff47e8b855dc78e7d1a8ed2b7b9c83576a57e289f81d/greenlet-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:227a46251ecba4ff46ae742bc5ce95c91d5aceb4b02f885487aff269c127a729", size = 1575310, upload-time = "2026-04-08T16:26:21.671Z" },
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/b8/38/bcdc71ba05e9a5fda87f63ffc2abcd1f15693b659346df994a48c968003d/greenlet-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5b99e87be7eba788dd5b75ba1cde5639edffdec5f91fe0d734a249535ec3408c", size = 1640435, upload-time = "2026-04-08T15:57:32.572Z" },
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/a1/c2/19b664b7173b9e4ef5f77e8cef9f14c20ec7fce7920dc1ccd7afd955d093/greenlet-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:849f8bc17acd6295fcb5de8e46d55cc0e52381c56eaf50a2afd258e97bc65940", size = 238760, upload-time = "2026-04-08T17:04:03.878Z" },
|
|
41
|
+
{ url = "https://files.pythonhosted.org/packages/9b/96/795619651d39c7fbd809a522f881aa6f0ead504cc8201c3a5b789dfaef99/greenlet-3.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:9390ad88b652b1903814eaabd629ca184db15e0eeb6fe8a390bbf8b9106ae15a", size = 235498, upload-time = "2026-04-08T17:05:00.584Z" },
|
|
42
|
+
{ url = "https://files.pythonhosted.org/packages/78/02/bde66806e8f169cf90b14d02c500c44cdbe02c8e224c9c67bafd1b8cadd1/greenlet-3.4.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:10a07aca6babdd18c16a3f4f8880acfffc2b88dfe431ad6aa5f5740759d7d75e", size = 286291, upload-time = "2026-04-08T17:09:34.307Z" },
|
|
43
|
+
{ url = "https://files.pythonhosted.org/packages/05/1f/39da1c336a87d47c58352fb8a78541ce63d63ae57c5b9dae1fe02801bbc2/greenlet-3.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:076e21040b3a917d3ce4ad68fb5c3c6b32f1405616c4a57aa83120979649bd3d", size = 656749, upload-time = "2026-04-08T16:24:41.721Z" },
|
|
44
|
+
{ url = "https://files.pythonhosted.org/packages/d3/6c/90ee29a4ee27af7aa2e2ec408799eeb69ee3fcc5abcecac6ddd07a5cd0f2/greenlet-3.4.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e82689eea4a237e530bb5cb41b180ef81fa2160e1f89422a67be7d90da67f615", size = 669084, upload-time = "2026-04-08T16:31:01.372Z" },
|
|
45
|
+
{ url = "https://files.pythonhosted.org/packages/07/49/d4cad6e5381a50947bb973d2f6cf6592621451b09368b8c20d9b8af49c5b/greenlet-3.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4df3b0b2289ec686d3c821a5fee44259c05cfe824dd5e6e12c8e5f5df23085cf", size = 665621, upload-time = "2026-04-08T15:56:35.995Z" },
|
|
46
|
+
{ url = "https://files.pythonhosted.org/packages/37/31/d1edd54f424761b5d47718822f506b435b6aab2f3f93b465441143ea5119/greenlet-3.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8bff29d586ea415688f4cec96a591fcc3bf762d046a796cdadc1fdb6e7f2d5bf", size = 1622259, upload-time = "2026-04-08T16:26:23.201Z" },
|
|
47
|
+
{ url = "https://files.pythonhosted.org/packages/b0/c6/6d3f9cdcb21c4e12a79cb332579f1c6aa1af78eb68059c5a957c7812d95e/greenlet-3.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8a569c2fb840c53c13a2b8967c63621fafbd1a0e015b9c82f408c33d626a2fda", size = 1686916, upload-time = "2026-04-08T15:57:34.282Z" },
|
|
48
|
+
{ url = "https://files.pythonhosted.org/packages/63/45/c1ca4a1ad975de4727e52d3ffe641ae23e1d7a8ffaa8ff7a0477e1827b92/greenlet-3.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:207ba5b97ea8b0b60eb43ffcacf26969dd83726095161d676aac03ff913ee50d", size = 239821, upload-time = "2026-04-08T17:03:48.423Z" },
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/71/c4/6f621023364d7e85a4769c014c8982f98053246d142420e0328980933ceb/greenlet-3.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:f8296d4e2b92af34ebde81085a01690f26a51eb9ac09a0fcadb331eb36dbc802", size = 236932, upload-time = "2026-04-08T17:04:33.551Z" },
|
|
50
|
+
{ url = "https://files.pythonhosted.org/packages/d4/8f/18d72b629783f5e8d045a76f5325c1e938e659a9e4da79c7dcd10169a48d/greenlet-3.4.0-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:d70012e51df2dbbccfaf63a40aaf9b40c8bed37c3e3a38751c926301ce538ece", size = 294681, upload-time = "2026-04-08T15:52:35.778Z" },
|
|
51
|
+
{ url = "https://files.pythonhosted.org/packages/9e/ad/5fa86ec46769c4153820d58a04062285b3b9e10ba3d461ee257b68dcbf53/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a58bec0751f43068cd40cff31bb3ca02ad6000b3a51ca81367af4eb5abc480c8", size = 658899, upload-time = "2026-04-08T16:24:43.32Z" },
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/43/f0/4e8174ca0e87ae748c409f055a1ba161038c43cc0a5a6f1433a26ac2e5bf/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:05fa0803561028f4b2e3b490ee41216a842eaee11aed004cc343a996d9523aa2", size = 665284, upload-time = "2026-04-08T16:31:02.833Z" },
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/19/da/991cf7cd33662e2df92a1274b7eb4d61769294d38a1bba8a45f31364845e/greenlet-3.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e60d38719cb80b3ab5e85f9f1aed4960acfde09868af6762ccb27b260d68f4ed", size = 661861, upload-time = "2026-04-08T15:56:37.269Z" },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/36/c5/6c2c708e14db3d9caea4b459d8464f58c32047451142fe2cfd90e7458f41/greenlet-3.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7f50c804733b43eded05ae694691c9aa68bca7d0a867d67d4a3f514742a2d53f", size = 1622182, upload-time = "2026-04-08T16:26:24.777Z" },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/7a/4c/50c5fed19378e11a29fabab1f6be39ea95358f4a0a07e115a51ca93385d8/greenlet-3.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2d4f0635dc4aa638cda4b2f5a07ae9a2cff9280327b581a3fcb6f317b4fbc38a", size = 1685050, upload-time = "2026-04-08T15:57:36.453Z" },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/db/72/85ae954d734703ab48e622c59d4ce35d77ce840c265814af9c078cacc7aa/greenlet-3.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:1a4a48f24681300c640f143ba7c404270e1ebbbcf34331d7104a4ff40f8ea705", size = 245554, upload-time = "2026-04-08T17:03:50.044Z" },
|
|
57
57
|
]
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: weaveapi/atc/v1/event.proto
|
|
5
|
+
# Protobuf Python Version: 7.34.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
|
|
8
|
+
from google.protobuf import descriptor as _descriptor
|
|
9
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
10
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
11
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
12
|
+
from google.protobuf.internal import builder as _builder
|
|
13
|
+
|
|
14
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
15
|
+
_runtime_version.Domain.PUBLIC, 7, 34, 1, "", "weaveapi/atc/v1/event.proto"
|
|
16
|
+
)
|
|
17
|
+
# @@protoc_insertion_point(imports)
|
|
18
|
+
|
|
19
|
+
_sym_db = _symbol_database.Default()
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
|
|
23
|
+
b'\n\x1bweaveapi/atc/v1/event.proto\x12\x0fweaveapi.atc.v1\x1a\x1fgoogle/protobuf/timestamp.proto"\x93\x02\n\x05\x45vent\x12\x19\n\x08\x65vent_id\x18\x01 \x01(\tR\x07\x65ventId\x12\x15\n\x06run_id\x18\x02 \x01(\tR\x05runId\x12\x1d\n\nevent_type\x18\x03 \x01(\tR\teventType\x12\x1a\n\x08sequence\x18\x04 \x01(\x04R\x08sequence\x12\x12\n\x04\x64\x61ta\x18\x05 \x01(\x0cR\x04\x64\x61ta\x12!\n\x0c\x63\x61usation_id\x18\x06 \x01(\tR\x0b\x63\x61usationId\x12%\n\x0e\x63orrelation_id\x18\x07 \x01(\tR\rcorrelationId\x12?\n\x0boccurred_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\noccurredAt"_\n\x11InspectionSubject\x12:\n\x04kind\x18\x01 \x01(\x0e\x32&.weaveapi.atc.v1.InspectionSubjectKindR\x04kind\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id"[\n\x0fInspectionActor\x12\x38\n\x04kind\x18\x01 \x01(\x0e\x32$.weaveapi.atc.v1.InspectionActorKindR\x04kind\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id"\x8f\x06\n\x0fInspectionEvent\x12\x19\n\x08\x65vent_id\x18\x01 \x01(\tR\x07\x65ventId\x12\x1b\n\ttenant_id\x18\x02 \x01(\tR\x08tenantId\x12\x1d\n\nevent_type\x18\x03 \x01(\tR\teventType\x12?\n\x08\x63\x61tegory\x18\x04 \x01(\x0e\x32#.weaveapi.atc.v1.InspectionCategoryR\x08\x63\x61tegory\x12@\n\x07subject\x18\x05 \x01(\x0b\x32".weaveapi.atc.v1.InspectionSubjectB\x02(\x01R\x07subject\x12:\n\x05\x61\x63tor\x18\x06 \x01(\x0b\x32 .weaveapi.atc.v1.InspectionActorB\x02(\x01R\x05\x61\x63tor\x12\x15\n\x06run_id\x18\x07 \x01(\tR\x05runId\x12\x1d\n\nprocess_id\x18\x08 \x01(\tR\tprocessId\x12\x39\n\x06\x61\x63tion\x18\t \x01(\x0e\x32!.weaveapi.atc.v1.InspectionActionR\x06\x61\x63tion\x12<\n\x07outcome\x18\n \x01(\x0e\x32".weaveapi.atc.v1.InspectionOutcomeR\x07outcome\x12\x16\n\x06reason\x18\x0b \x01(\tR\x06reason\x12%\n\x0e\x63orrelation_id\x18\x0c \x01(\tR\rcorrelationId\x12!\n\x0c\x63\x61usation_id\x18\r \x01(\tR\x0b\x63\x61usationId\x12\x12\n\x04\x64\x61ta\x18\x0e \x01(\x0cR\x04\x64\x61ta\x12%\n\x0eschema_version\x18\x0f \x01(\x05R\rschemaVersion\x12\x1a\n\x08sequence\x18\x10 \x01(\x04R\x08sequence\x12?\n\x0boccurred_at\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\noccurredAt\x12=\n\nexpires_at\x18\x12 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\texpiresAt*\x9a\x02\n\x12InspectionCategory\x12#\n\x1fINSPECTION_CATEGORY_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_CATEGORY_MEMORY\x10\x01\x12 \n\x1cINSPECTION_CATEGORY_ARTIFACT\x10\x02\x12\x1e\n\x1aINSPECTION_CATEGORY_SECRET\x10\x03\x12\x1e\n\x1aINSPECTION_CATEGORY_POLICY\x10\x04\x12\x1b\n\x17INSPECTION_CATEGORY_API\x10\x05\x12\x1f\n\x1bINSPECTION_CATEGORY_STORAGE\x10\x06\x12\x1f\n\x1bINSPECTION_CATEGORY_PROCESS\x10\x07*\xa3\x02\n\x10InspectionAction\x12!\n\x1dINSPECTION_ACTION_UNSPECIFIED\x10\x00\x12\x1a\n\x16INSPECTION_ACTION_READ\x10\x01\x12\x1b\n\x17INSPECTION_ACTION_WRITE\x10\x02\x12\x1b\n\x17INSPECTION_ACTION_QUERY\x10\x03\x12\x1d\n\x19INSPECTION_ACTION_REQUEST\x10\x04\x12\x1d\n\x19INSPECTION_ACTION_RESPOND\x10\x05\x12\x1c\n\x18INSPECTION_ACTION_STREAM\x10\x06\x12\x1a\n\x16INSPECTION_ACTION_SCAN\x10\x07\x12\x1e\n\x1aINSPECTION_ACTION_EVALUATE\x10\x08*\xd4\x01\n\x11InspectionOutcome\x12"\n\x1eINSPECTION_OUTCOME_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_OUTCOME_ALLOWED\x10\x01\x12\x1d\n\x19INSPECTION_OUTCOME_DENIED\x10\x02\x12\x1c\n\x18INSPECTION_OUTCOME_ERROR\x10\x03\x12\x1e\n\x1aINSPECTION_OUTCOME_SUCCESS\x10\x04\x12\x1e\n\x1aINSPECTION_OUTCOME_PARTIAL\x10\x05*\xe8\x03\n\x15InspectionSubjectKind\x12\'\n#INSPECTION_SUBJECT_KIND_UNSPECIFIED\x10\x00\x12\x1f\n\x1bINSPECTION_SUBJECT_KIND_RUN\x10\x01\x12#\n\x1fINSPECTION_SUBJECT_KIND_PROCESS\x10\x02\x12,\n(INSPECTION_SUBJECT_KIND_MEMORY_NAMESPACE\x10\x03\x12$\n INSPECTION_SUBJECT_KIND_ARTIFACT\x10\x04\x12*\n&INSPECTION_SUBJECT_KIND_ARTIFACT_SPACE\x10\x05\x12"\n\x1eINSPECTION_SUBJECT_KIND_SECRET\x10\x06\x12"\n\x1eINSPECTION_SUBJECT_KIND_POLICY\x10\x07\x12*\n&INSPECTION_SUBJECT_KIND_POLICY_VERSION\x10\x08\x12"\n\x1eINSPECTION_SUBJECT_KIND_TENANT\x10\t\x12$\n INSPECTION_SUBJECT_KIND_TOOL_RUN\x10\n\x12"\n\x1eINSPECTION_SUBJECT_KIND_REVIEW\x10\x0b*\xf3\x01\n\x13InspectionActorKind\x12%\n!INSPECTION_ACTOR_KIND_UNSPECIFIED\x10\x00\x12\x1e\n\x1aINSPECTION_ACTOR_KIND_USER\x10\x01\x12\'\n#INSPECTION_ACTOR_KIND_AGENT_PROCESS\x10\x02\x12 \n\x1cINSPECTION_ACTOR_KIND_SYSTEM\x10\x03\x12$\n INSPECTION_ACTOR_KIND_API_CALLER\x10\x04\x12$\n INSPECTION_ACTOR_KIND_SUPERVISOR\x10\x05\x42\xb3\x01\n\x13\x63om.weaveapi.atc.v1B\nEventProtoP\x01Z2github.com/weave-labs/weave-go/weaveapi/atc/v1;atc\xa2\x02\x03WAX\xaa\x02\x0fWeaveapi.Atc.V1\xca\x02\x0fWeaveapi\\Atc\\V1\xe2\x02\x1bWeaveapi\\Atc\\V1\\GPBMetadata\xea\x02\x11Weaveapi::Atc::V1b\x08\x65\x64itionsp\xe8\x07'
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
_globals = globals()
|
|
27
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
28
|
+
_builder.BuildTopDescriptorsAndMessages(
|
|
29
|
+
DESCRIPTOR, "weaveapi.atc.v1.event_pb2", _globals
|
|
30
|
+
)
|
|
31
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
32
|
+
_globals["DESCRIPTOR"]._loaded_options = None
|
|
33
|
+
_globals[
|
|
34
|
+
"DESCRIPTOR"
|
|
35
|
+
]._serialized_options = b"\n\023com.weaveapi.atc.v1B\nEventProtoP\001Z2github.com/weave-labs/weave-go/weaveapi/atc/v1;atc\242\002\003WAX\252\002\017Weaveapi.Atc.V1\312\002\017Weaveapi\\Atc\\V1\342\002\033Weaveapi\\Atc\\V1\\GPBMetadata\352\002\021Weaveapi::Atc::V1"
|
|
36
|
+
_globals["_EVENT"].fields_by_name["occurred_at"]._loaded_options = None
|
|
37
|
+
_globals["_EVENT"].fields_by_name["occurred_at"]._serialized_options = b"(\001"
|
|
38
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["subject"]._loaded_options = None
|
|
39
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
40
|
+
"subject"
|
|
41
|
+
]._serialized_options = b"(\001"
|
|
42
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["actor"]._loaded_options = None
|
|
43
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["actor"]._serialized_options = b"(\001"
|
|
44
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["occurred_at"]._loaded_options = None
|
|
45
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
46
|
+
"occurred_at"
|
|
47
|
+
]._serialized_options = b"(\001"
|
|
48
|
+
_globals["_INSPECTIONEVENT"].fields_by_name["expires_at"]._loaded_options = None
|
|
49
|
+
_globals["_INSPECTIONEVENT"].fields_by_name[
|
|
50
|
+
"expires_at"
|
|
51
|
+
]._serialized_options = b"(\001"
|
|
52
|
+
_globals["_INSPECTIONCATEGORY"]._serialized_start = 1336
|
|
53
|
+
_globals["_INSPECTIONCATEGORY"]._serialized_end = 1618
|
|
54
|
+
_globals["_INSPECTIONACTION"]._serialized_start = 1621
|
|
55
|
+
_globals["_INSPECTIONACTION"]._serialized_end = 1912
|
|
56
|
+
_globals["_INSPECTIONOUTCOME"]._serialized_start = 1915
|
|
57
|
+
_globals["_INSPECTIONOUTCOME"]._serialized_end = 2127
|
|
58
|
+
_globals["_INSPECTIONSUBJECTKIND"]._serialized_start = 2130
|
|
59
|
+
_globals["_INSPECTIONSUBJECTKIND"]._serialized_end = 2618
|
|
60
|
+
_globals["_INSPECTIONACTORKIND"]._serialized_start = 2621
|
|
61
|
+
_globals["_INSPECTIONACTORKIND"]._serialized_end = 2864
|
|
62
|
+
_globals["_EVENT"]._serialized_start = 82
|
|
63
|
+
_globals["_EVENT"]._serialized_end = 357
|
|
64
|
+
_globals["_INSPECTIONSUBJECT"]._serialized_start = 359
|
|
65
|
+
_globals["_INSPECTIONSUBJECT"]._serialized_end = 454
|
|
66
|
+
_globals["_INSPECTIONACTOR"]._serialized_start = 456
|
|
67
|
+
_globals["_INSPECTIONACTOR"]._serialized_end = 547
|
|
68
|
+
_globals["_INSPECTIONEVENT"]._serialized_start = 550
|
|
69
|
+
_globals["_INSPECTIONEVENT"]._serialized_end = 1333
|
|
70
|
+
# @@protoc_insertion_point(module_scope)
|