sift-stack-py 0.17.0.dev2__py3-none-any.whl → 0.17.0.dev3__py3-none-any.whl

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.
Files changed (74) hide show
  1. sift/api_keys/v2/api_keys_pb2.pyi +6 -0
  2. sift/assets/v1/assets_pb2.py +27 -15
  3. sift/assets/v1/assets_pb2.pyi +51 -0
  4. sift/assets/v1/assets_pb2_grpc.py +34 -0
  5. sift/assets/v1/assets_pb2_grpc.pyi +20 -0
  6. sift/calculated_channels/v2/calculated_channels_pb2.py +66 -66
  7. sift/calculated_channels/v2/calculated_channels_pb2.pyi +7 -1
  8. sift/data_imports/v2/data_imports_pb2.py +86 -72
  9. sift/data_imports/v2/data_imports_pb2.pyi +134 -6
  10. sift/ingest/v1/ingest_pb2.pyi +10 -0
  11. sift/metadata/v1/metadata_pb2.py +59 -53
  12. sift/metadata/v1/metadata_pb2.pyi +29 -3
  13. sift/panel_configurations/v1/panel_configuration_pb2.py +28 -25
  14. sift/panel_configurations/v1/panel_configuration_pb2.pyi +20 -4
  15. sift/policies/__init__.py +0 -0
  16. sift/policies/v1/__init__.py +0 -0
  17. sift/policies/v1/policies_pb2.py +154 -0
  18. sift/policies/v1/policies_pb2.pyi +436 -0
  19. sift/policies/v1/policies_pb2_grpc.py +271 -0
  20. sift/policies/v1/policies_pb2_grpc.pyi +164 -0
  21. sift/principal_attributes/__init__.py +0 -0
  22. sift/principal_attributes/v1/__init__.py +0 -0
  23. sift/principal_attributes/v1/principal_attributes_pb2.py +388 -0
  24. sift/principal_attributes/v1/principal_attributes_pb2.pyi +1223 -0
  25. sift/principal_attributes/v1/principal_attributes_pb2_grpc.py +746 -0
  26. sift/principal_attributes/v1/principal_attributes_pb2_grpc.pyi +441 -0
  27. sift/reports/v1/reports_pb2.py +163 -57
  28. sift/reports/v1/reports_pb2.pyi +364 -0
  29. sift/reports/v1/reports_pb2_grpc.py +102 -0
  30. sift/reports/v1/reports_pb2_grpc.pyi +60 -0
  31. sift/resource_attribute/__init__.py +0 -0
  32. sift/resource_attribute/v1/__init__.py +0 -0
  33. sift/resource_attribute/v1/resource_attribute_pb2.py +412 -0
  34. sift/resource_attribute/v1/resource_attribute_pb2.pyi +1322 -0
  35. sift/resource_attribute/v1/resource_attribute_pb2_grpc.py +904 -0
  36. sift/resource_attribute/v1/resource_attribute_pb2_grpc.pyi +505 -0
  37. sift/rules/v1/rules_pb2.py +156 -156
  38. sift/rules/v1/rules_pb2.pyi +8 -1
  39. sift_client/_internal/grpc_transport/_retry.py +29 -3
  40. sift_client/_internal/grpc_transport/transport.py +8 -1
  41. sift_client/_internal/low_level_wrappers/__init__.py +2 -0
  42. sift_client/_internal/low_level_wrappers/_test_results_log.py +101 -38
  43. sift_client/_internal/low_level_wrappers/channels.py +55 -4
  44. sift_client/_internal/low_level_wrappers/test_results.py +96 -33
  45. sift_client/_internal/low_level_wrappers/units.py +120 -0
  46. sift_client/_internal/pytest_plugin/__init__.py +0 -0
  47. sift_client/_internal/pytest_plugin/audit_log.py +291 -0
  48. sift_client/_internal/pytest_plugin/modes.py +68 -0
  49. sift_client/_internal/pytest_plugin/options.py +636 -0
  50. sift_client/_internal/pytest_plugin/report.py +639 -0
  51. sift_client/_internal/pytest_plugin/steps.py +820 -0
  52. sift_client/_internal/pytest_plugin/terminal.py +244 -0
  53. sift_client/_internal/sync_wrapper.py +16 -1
  54. sift_client/_internal/util/file.py +1 -2
  55. sift_client/_internal/util/progress.py +44 -0
  56. sift_client/client.py +5 -0
  57. sift_client/pytest_plugin.py +504 -1748
  58. sift_client/resources/channels.py +29 -1
  59. sift_client/resources/jobs.py +1 -2
  60. sift_client/resources/sync_stubs/__init__.pyi +14 -1
  61. sift_client/scripts/import_test_result_log.py +61 -11
  62. sift_client/sift_types/__init__.py +2 -0
  63. sift_client/sift_types/_base.py +4 -0
  64. sift_client/sift_types/channel.py +86 -5
  65. sift_client/transport/grpc_transport.py +57 -6
  66. sift_client/transport/rest_transport.py +15 -0
  67. sift_client/util/test_results/bounds.py +6 -2
  68. sift_client/util/test_results/context_manager.py +272 -59
  69. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/METADATA +6 -2
  70. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/RECORD +74 -47
  71. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/LICENSE +0 -0
  72. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/WHEEL +0 -0
  73. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/entry_points.txt +0 -0
  74. {sift_stack_py-0.17.0.dev2.dist-info → sift_stack_py-0.17.0.dev3.dist-info}/top_level.txt +0 -0
@@ -172,6 +172,12 @@ class CreateApiKeyRequest(google.protobuf.message.Message):
172
172
  name: builtins.str
173
173
  """The name for the new ApiKey. Required."""
174
174
  user_id: builtins.str
175
+ """The id of the user the new key will authenticate as. Must equal the id of
176
+ the calling user; creating an API key on behalf of another user is no
177
+ longer supported and the service will return INVALID_ARGUMENT if the
178
+ values differ. The field is retained for backwards compatibility with
179
+ existing clients and may be marked deprecated in a future revision.
180
+ """
175
181
  def __init__(
176
182
  self,
177
183
  *,
@@ -20,7 +20,7 @@ from protoc_gen_openapiv2.options import annotations_pb2 as protoc__gen__openapi
20
20
  from sift.metadata.v1 import metadata_pb2 as sift_dot_metadata_dot_v1_dot_metadata__pb2
21
21
 
22
22
 
23
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bsift/assets/v1/assets.proto\x12\x0esift.assets.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.protoc-gen-openapiv2/options/annotations.proto\x1a\x1fsift/metadata/v1/metadata.proto\"\xa5\x04\n\x05\x41sset\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12\x17\n\x04name\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x04name\x12,\n\x0forganization_id\x18\x04 \x01(\tB\x03\xe0\x41\x02R\x0eorganizationId\x12\x42\n\x0c\x63reated_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0b\x63reatedDate\x12\x30\n\x12\x63reated_by_user_id\x18\x06 \x01(\tB\x03\xe0\x41\x02R\x0f\x63reatedByUserId\x12\x44\n\rmodified_date\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0cmodifiedDate\x12\x32\n\x13modified_by_user_id\x18\x08 \x01(\tB\x03\xe0\x41\x02R\x10modifiedByUserId\x12\x17\n\x04tags\x18\t \x03(\tB\x03\xe0\x41\x02R\x04tags\x12@\n\x08metadata\x18\n \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadata\x12\x44\n\rarchived_date\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01R\x0c\x61rchivedDate\x12$\n\x0bis_archived\x18\x0c \x01(\x08\x42\x03\xe0\x41\x02R\nisArchived\"\x96\x01\n\x11ListAssetsRequest\x12 \n\tpage_size\x18\x01 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12\x1e\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"k\n\x12ListAssetsResponse\x12-\n\x06\x61ssets\x18\x01 \x03(\x0b\x32\x15.sift.assets.v1.AssetR\x06\x61ssets\x12&\n\x0fnext_page_token\x18\x05 \x01(\tR\rnextPageToken\"\\\n\x12\x44\x65leteAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12&\n\x0c\x61rchive_runs\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01R\x0b\x61rchiveRuns\"\x15\n\x13\x44\x65leteAssetResponse\"1\n\x0fGetAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\"?\n\x10GetAssetResponse\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\"\x83\x01\n\x12UpdateAssetRequest\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\x12@\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02R\nupdateMask\"B\n\x13UpdateAssetResponse\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\"]\n\x13\x41rchiveAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12&\n\x0c\x61rchive_runs\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01R\x0b\x61rchiveRuns\"E\n\x14\x41rchiveAssetResponse\x12-\n\x10\x61rchived_run_ids\x18\x01 \x03(\tB\x03\xe0\x41\x01R\x0e\x61rchivedRunIds2\xb6\x07\n\x0c\x41ssetService\x12\x9f\x01\n\x0b\x44\x65leteAsset\x12\".sift.assets.v1.DeleteAssetRequest\x1a#.sift.assets.v1.DeleteAssetResponse\"G\x88\x02\x01\x92\x41 \x12\x0b\x44\x65leteAsset\x1a\x11\x44\x65letes an asset.\x82\xd3\xe4\x93\x02\x1b*\x19/api/v1/assets/{asset_id}\x12\x92\x01\n\x08GetAsset\x12\x1f.sift.assets.v1.GetAssetRequest\x1a .sift.assets.v1.GetAssetResponse\"C\x92\x41\x1f\x12\x08GetAsset\x1a\x13Retrieves an asset.\x82\xd3\xe4\x93\x02\x1b\x12\x19/api/v1/assets/{asset_id}\x12\xa6\x01\n\nListAssets\x12!.sift.assets.v1.ListAssetsRequest\x1a\".sift.assets.v1.ListAssetsResponse\"Q\x92\x41\x38\x12\nListAssets\x1a*Retrieves assets using an optional filter.\x82\xd3\xe4\x93\x02\x10\x12\x0e/api/v1/assets\x12\x9d\x01\n\x0bUpdateAsset\x12\".sift.assets.v1.UpdateAssetRequest\x1a#.sift.assets.v1.UpdateAssetResponse\"E\x92\x41)\x12\x0bUpdateAsset\x1a\x1aUpdate fields on an asset.\x82\xd3\xe4\x93\x02\x13\x32\x0e/api/v1/assets:\x01*\x12\xa9\x01\n\x0c\x41rchiveAsset\x12#.sift.assets.v1.ArchiveAssetRequest\x1a$.sift.assets.v1.ArchiveAssetResponse\"N\x92\x41\"\x12\x0c\x41rchiveAsset\x1a\x12\x41rchives an asset.\x82\xd3\xe4\x93\x02#\"!/api/v1/assets/{asset_id}/archive\x1az\x92\x41w\x12\x44Service to programmatically interact with [assets](/glossary#asset).\x1a/\n Read more about what assets are.\x12\x0b/data-modelB\x8f\x01\n\x12\x63om.sift.assets.v1B\x0b\x41ssetsProtoP\x01\xa2\x02\x03SAX\xaa\x02\x0eSift.Assets.V1\xca\x02\x0eSift\\Assets\\V1\xe2\x02\x1aSift\\Assets\\V1\\GPBMetadata\xea\x02\x10Sift::Assets::V1\x92\x41\x11\x12\x0f\n\rAsset Serviceb\x06proto3')
23
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bsift/assets/v1/assets.proto\x12\x0esift.assets.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.protoc-gen-openapiv2/options/annotations.proto\x1a\x1fsift/metadata/v1/metadata.proto\"\xa5\x04\n\x05\x41sset\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12\x17\n\x04name\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x04name\x12,\n\x0forganization_id\x18\x04 \x01(\tB\x03\xe0\x41\x02R\x0eorganizationId\x12\x42\n\x0c\x63reated_date\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0b\x63reatedDate\x12\x30\n\x12\x63reated_by_user_id\x18\x06 \x01(\tB\x03\xe0\x41\x02R\x0f\x63reatedByUserId\x12\x44\n\rmodified_date\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0cmodifiedDate\x12\x32\n\x13modified_by_user_id\x18\x08 \x01(\tB\x03\xe0\x41\x02R\x10modifiedByUserId\x12\x17\n\x04tags\x18\t \x03(\tB\x03\xe0\x41\x02R\x04tags\x12@\n\x08metadata\x18\n \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadata\x12\x44\n\rarchived_date\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01R\x0c\x61rchivedDate\x12$\n\x0bis_archived\x18\x0c \x01(\x08\x42\x03\xe0\x41\x02R\nisArchived\"\x96\x01\n\x11ListAssetsRequest\x12 \n\tpage_size\x18\x01 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12\x1e\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"k\n\x12ListAssetsResponse\x12-\n\x06\x61ssets\x18\x01 \x03(\x0b\x32\x15.sift.assets.v1.AssetR\x06\x61ssets\x12&\n\x0fnext_page_token\x18\x05 \x01(\tR\rnextPageToken\"\\\n\x12\x44\x65leteAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12&\n\x0c\x61rchive_runs\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01R\x0b\x61rchiveRuns\"\x15\n\x13\x44\x65leteAssetResponse\"\x88\x01\n\x12\x43reateAssetRequest\x12\x17\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x04name\x12\x17\n\x04tags\x18\x02 \x03(\tB\x03\xe0\x41\x01R\x04tags\x12@\n\x08metadata\x18\x03 \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x01R\x08metadata\"B\n\x13\x43reateAssetResponse\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\"1\n\x0fGetAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\"?\n\x10GetAssetResponse\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\"\x83\x01\n\x12UpdateAssetRequest\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\x12@\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02R\nupdateMask\"B\n\x13UpdateAssetResponse\x12+\n\x05\x61sset\x18\x01 \x01(\x0b\x32\x15.sift.assets.v1.AssetR\x05\x61sset\"]\n\x13\x41rchiveAssetRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12&\n\x0c\x61rchive_runs\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01R\x0b\x61rchiveRuns\"E\n\x14\x41rchiveAssetResponse\x12-\n\x10\x61rchived_run_ids\x18\x01 \x03(\tB\x03\xe0\x41\x01R\x0e\x61rchivedRunIds2\xd7\x08\n\x0c\x41ssetService\x12\x9f\x01\n\x0b\x44\x65leteAsset\x12\".sift.assets.v1.DeleteAssetRequest\x1a#.sift.assets.v1.DeleteAssetResponse\"G\x88\x02\x01\x92\x41 \x12\x0b\x44\x65leteAsset\x1a\x11\x44\x65letes an asset.\x82\xd3\xe4\x93\x02\x1b*\x19/api/v1/assets/{asset_id}\x12\x9e\x01\n\x0b\x43reateAsset\x12\".sift.assets.v1.CreateAssetRequest\x1a#.sift.assets.v1.CreateAssetResponse\"F\x92\x41*\x12\x0b\x43reateAsset\x1a\x1b\x43reates a new, empty asset.\x82\xd3\xe4\x93\x02\x13\"\x0e/api/v1/assets:\x01*\x12\x92\x01\n\x08GetAsset\x12\x1f.sift.assets.v1.GetAssetRequest\x1a .sift.assets.v1.GetAssetResponse\"C\x92\x41\x1f\x12\x08GetAsset\x1a\x13Retrieves an asset.\x82\xd3\xe4\x93\x02\x1b\x12\x19/api/v1/assets/{asset_id}\x12\xa6\x01\n\nListAssets\x12!.sift.assets.v1.ListAssetsRequest\x1a\".sift.assets.v1.ListAssetsResponse\"Q\x92\x41\x38\x12\nListAssets\x1a*Retrieves assets using an optional filter.\x82\xd3\xe4\x93\x02\x10\x12\x0e/api/v1/assets\x12\x9d\x01\n\x0bUpdateAsset\x12\".sift.assets.v1.UpdateAssetRequest\x1a#.sift.assets.v1.UpdateAssetResponse\"E\x92\x41)\x12\x0bUpdateAsset\x1a\x1aUpdate fields on an asset.\x82\xd3\xe4\x93\x02\x13\x32\x0e/api/v1/assets:\x01*\x12\xa9\x01\n\x0c\x41rchiveAsset\x12#.sift.assets.v1.ArchiveAssetRequest\x1a$.sift.assets.v1.ArchiveAssetResponse\"N\x92\x41\"\x12\x0c\x41rchiveAsset\x1a\x12\x41rchives an asset.\x82\xd3\xe4\x93\x02#\"!/api/v1/assets/{asset_id}/archive\x1az\x92\x41w\x12\x44Service to programmatically interact with [assets](/glossary#asset).\x1a/\n Read more about what assets are.\x12\x0b/data-modelB\x8f\x01\n\x12\x63om.sift.assets.v1B\x0b\x41ssetsProtoP\x01\xa2\x02\x03SAX\xaa\x02\x0eSift.Assets.V1\xca\x02\x0eSift\\Assets\\V1\xe2\x02\x1aSift\\Assets\\V1\\GPBMetadata\xea\x02\x10Sift::Assets::V1\x92\x41\x11\x12\x0f\n\rAsset Serviceb\x06proto3')
24
24
 
25
25
  _globals = globals()
26
26
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -62,6 +62,12 @@ if not _descriptor._USE_C_DESCRIPTORS:
62
62
  _globals['_DELETEASSETREQUEST'].fields_by_name['asset_id']._serialized_options = b'\340A\002'
63
63
  _globals['_DELETEASSETREQUEST'].fields_by_name['archive_runs']._loaded_options = None
64
64
  _globals['_DELETEASSETREQUEST'].fields_by_name['archive_runs']._serialized_options = b'\340A\001'
65
+ _globals['_CREATEASSETREQUEST'].fields_by_name['name']._loaded_options = None
66
+ _globals['_CREATEASSETREQUEST'].fields_by_name['name']._serialized_options = b'\340A\002'
67
+ _globals['_CREATEASSETREQUEST'].fields_by_name['tags']._loaded_options = None
68
+ _globals['_CREATEASSETREQUEST'].fields_by_name['tags']._serialized_options = b'\340A\001'
69
+ _globals['_CREATEASSETREQUEST'].fields_by_name['metadata']._loaded_options = None
70
+ _globals['_CREATEASSETREQUEST'].fields_by_name['metadata']._serialized_options = b'\340A\001'
65
71
  _globals['_GETASSETREQUEST'].fields_by_name['asset_id']._loaded_options = None
66
72
  _globals['_GETASSETREQUEST'].fields_by_name['asset_id']._serialized_options = b'\340A\002'
67
73
  _globals['_UPDATEASSETREQUEST'].fields_by_name['update_mask']._loaded_options = None
@@ -76,6 +82,8 @@ if not _descriptor._USE_C_DESCRIPTORS:
76
82
  _globals['_ASSETSERVICE']._serialized_options = b'\222Aw\022DService to programmatically interact with [assets](/glossary#asset).\032/\n Read more about what assets are.\022\013/data-model'
77
83
  _globals['_ASSETSERVICE'].methods_by_name['DeleteAsset']._loaded_options = None
78
84
  _globals['_ASSETSERVICE'].methods_by_name['DeleteAsset']._serialized_options = b'\210\002\001\222A \022\013DeleteAsset\032\021Deletes an asset.\202\323\344\223\002\033*\031/api/v1/assets/{asset_id}'
85
+ _globals['_ASSETSERVICE'].methods_by_name['CreateAsset']._loaded_options = None
86
+ _globals['_ASSETSERVICE'].methods_by_name['CreateAsset']._serialized_options = b'\222A*\022\013CreateAsset\032\033Creates a new, empty asset.\202\323\344\223\002\023\"\016/api/v1/assets:\001*'
79
87
  _globals['_ASSETSERVICE'].methods_by_name['GetAsset']._loaded_options = None
80
88
  _globals['_ASSETSERVICE'].methods_by_name['GetAsset']._serialized_options = b'\222A\037\022\010GetAsset\032\023Retrieves an asset.\202\323\344\223\002\033\022\031/api/v1/assets/{asset_id}'
81
89
  _globals['_ASSETSERVICE'].methods_by_name['ListAssets']._loaded_options = None
@@ -94,18 +102,22 @@ if not _descriptor._USE_C_DESCRIPTORS:
94
102
  _globals['_DELETEASSETREQUEST']._serialized_end=1164
95
103
  _globals['_DELETEASSETRESPONSE']._serialized_start=1166
96
104
  _globals['_DELETEASSETRESPONSE']._serialized_end=1187
97
- _globals['_GETASSETREQUEST']._serialized_start=1189
98
- _globals['_GETASSETREQUEST']._serialized_end=1238
99
- _globals['_GETASSETRESPONSE']._serialized_start=1240
100
- _globals['_GETASSETRESPONSE']._serialized_end=1303
101
- _globals['_UPDATEASSETREQUEST']._serialized_start=1306
102
- _globals['_UPDATEASSETREQUEST']._serialized_end=1437
103
- _globals['_UPDATEASSETRESPONSE']._serialized_start=1439
104
- _globals['_UPDATEASSETRESPONSE']._serialized_end=1505
105
- _globals['_ARCHIVEASSETREQUEST']._serialized_start=1507
106
- _globals['_ARCHIVEASSETREQUEST']._serialized_end=1600
107
- _globals['_ARCHIVEASSETRESPONSE']._serialized_start=1602
108
- _globals['_ARCHIVEASSETRESPONSE']._serialized_end=1671
109
- _globals['_ASSETSERVICE']._serialized_start=1674
110
- _globals['_ASSETSERVICE']._serialized_end=2624
105
+ _globals['_CREATEASSETREQUEST']._serialized_start=1190
106
+ _globals['_CREATEASSETREQUEST']._serialized_end=1326
107
+ _globals['_CREATEASSETRESPONSE']._serialized_start=1328
108
+ _globals['_CREATEASSETRESPONSE']._serialized_end=1394
109
+ _globals['_GETASSETREQUEST']._serialized_start=1396
110
+ _globals['_GETASSETREQUEST']._serialized_end=1445
111
+ _globals['_GETASSETRESPONSE']._serialized_start=1447
112
+ _globals['_GETASSETRESPONSE']._serialized_end=1510
113
+ _globals['_UPDATEASSETREQUEST']._serialized_start=1513
114
+ _globals['_UPDATEASSETREQUEST']._serialized_end=1644
115
+ _globals['_UPDATEASSETRESPONSE']._serialized_start=1646
116
+ _globals['_UPDATEASSETRESPONSE']._serialized_end=1712
117
+ _globals['_ARCHIVEASSETREQUEST']._serialized_start=1714
118
+ _globals['_ARCHIVEASSETREQUEST']._serialized_end=1807
119
+ _globals['_ARCHIVEASSETRESPONSE']._serialized_start=1809
120
+ _globals['_ARCHIVEASSETRESPONSE']._serialized_end=1878
121
+ _globals['_ASSETSERVICE']._serialized_start=1881
122
+ _globals['_ASSETSERVICE']._serialized_end=2992
111
123
  # @@protoc_insertion_point(module_scope)
@@ -180,6 +180,57 @@ class DeleteAssetResponse(google.protobuf.message.Message):
180
180
 
181
181
  global___DeleteAssetResponse = DeleteAssetResponse
182
182
 
183
+ @typing.final
184
+ class CreateAssetRequest(google.protobuf.message.Message):
185
+ """The request for a call to `AssetService_CreateAsset` to create a single new, empty asset."""
186
+
187
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
188
+
189
+ NAME_FIELD_NUMBER: builtins.int
190
+ TAGS_FIELD_NUMBER: builtins.int
191
+ METADATA_FIELD_NUMBER: builtins.int
192
+ name: builtins.str
193
+ """The name of the asset to create. Must be unique within the organization. Required."""
194
+ @property
195
+ def tags(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
196
+ """The names of the tags to associate with this asset. Optional."""
197
+
198
+ @property
199
+ def metadata(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[sift.metadata.v1.metadata_pb2.MetadataValue]:
200
+ """The metadata values to associate with this asset. Optional."""
201
+
202
+ def __init__(
203
+ self,
204
+ *,
205
+ name: builtins.str = ...,
206
+ tags: collections.abc.Iterable[builtins.str] | None = ...,
207
+ metadata: collections.abc.Iterable[sift.metadata.v1.metadata_pb2.MetadataValue] | None = ...,
208
+ ) -> None: ...
209
+ def ClearField(self, field_name: typing.Literal["metadata", b"metadata", "name", b"name", "tags", b"tags"]) -> None: ...
210
+
211
+ global___CreateAssetRequest = CreateAssetRequest
212
+
213
+ @typing.final
214
+ class CreateAssetResponse(google.protobuf.message.Message):
215
+ """The response of a call to `AssetService_CreateAsset`."""
216
+
217
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
218
+
219
+ ASSET_FIELD_NUMBER: builtins.int
220
+ @property
221
+ def asset(self) -> global___Asset:
222
+ """The newly created asset."""
223
+
224
+ def __init__(
225
+ self,
226
+ *,
227
+ asset: global___Asset | None = ...,
228
+ ) -> None: ...
229
+ def HasField(self, field_name: typing.Literal["asset", b"asset"]) -> builtins.bool: ...
230
+ def ClearField(self, field_name: typing.Literal["asset", b"asset"]) -> None: ...
231
+
232
+ global___CreateAssetResponse = CreateAssetResponse
233
+
183
234
  @typing.final
184
235
  class GetAssetRequest(google.protobuf.message.Message):
185
236
  """The request for a call to `AssetService_GetAsset` to retrieve a single existing asset by its asset_id."""
@@ -19,6 +19,11 @@ class AssetServiceStub(object):
19
19
  request_serializer=sift_dot_assets_dot_v1_dot_assets__pb2.DeleteAssetRequest.SerializeToString,
20
20
  response_deserializer=sift_dot_assets_dot_v1_dot_assets__pb2.DeleteAssetResponse.FromString,
21
21
  )
22
+ self.CreateAsset = channel.unary_unary(
23
+ '/sift.assets.v1.AssetService/CreateAsset',
24
+ request_serializer=sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetRequest.SerializeToString,
25
+ response_deserializer=sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetResponse.FromString,
26
+ )
22
27
  self.GetAsset = channel.unary_unary(
23
28
  '/sift.assets.v1.AssetService/GetAsset',
24
29
  request_serializer=sift_dot_assets_dot_v1_dot_assets__pb2.GetAssetRequest.SerializeToString,
@@ -52,6 +57,13 @@ class AssetServiceServicer(object):
52
57
  context.set_details('Method not implemented!')
53
58
  raise NotImplementedError('Method not implemented!')
54
59
 
60
+ def CreateAsset(self, request, context):
61
+ """Creates a new, empty asset.
62
+ """
63
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
64
+ context.set_details('Method not implemented!')
65
+ raise NotImplementedError('Method not implemented!')
66
+
55
67
  def GetAsset(self, request, context):
56
68
  """Retrieves an asset.
57
69
  """
@@ -87,6 +99,11 @@ def add_AssetServiceServicer_to_server(servicer, server):
87
99
  request_deserializer=sift_dot_assets_dot_v1_dot_assets__pb2.DeleteAssetRequest.FromString,
88
100
  response_serializer=sift_dot_assets_dot_v1_dot_assets__pb2.DeleteAssetResponse.SerializeToString,
89
101
  ),
102
+ 'CreateAsset': grpc.unary_unary_rpc_method_handler(
103
+ servicer.CreateAsset,
104
+ request_deserializer=sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetRequest.FromString,
105
+ response_serializer=sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetResponse.SerializeToString,
106
+ ),
90
107
  'GetAsset': grpc.unary_unary_rpc_method_handler(
91
108
  servicer.GetAsset,
92
109
  request_deserializer=sift_dot_assets_dot_v1_dot_assets__pb2.GetAssetRequest.FromString,
@@ -134,6 +151,23 @@ class AssetService(object):
134
151
  options, channel_credentials,
135
152
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
136
153
 
154
+ @staticmethod
155
+ def CreateAsset(request,
156
+ target,
157
+ options=(),
158
+ channel_credentials=None,
159
+ call_credentials=None,
160
+ insecure=False,
161
+ compression=None,
162
+ wait_for_ready=None,
163
+ timeout=None,
164
+ metadata=None):
165
+ return grpc.experimental.unary_unary(request, target, '/sift.assets.v1.AssetService/CreateAsset',
166
+ sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetRequest.SerializeToString,
167
+ sift_dot_assets_dot_v1_dot_assets__pb2.CreateAssetResponse.FromString,
168
+ options, channel_credentials,
169
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
170
+
137
171
  @staticmethod
138
172
  def GetAsset(request,
139
173
  target,
@@ -27,6 +27,12 @@ class AssetServiceStub:
27
27
  Deprecated: Use ArchiveAsset instead.
28
28
  """
29
29
 
30
+ CreateAsset: grpc.UnaryUnaryMultiCallable[
31
+ sift.assets.v1.assets_pb2.CreateAssetRequest,
32
+ sift.assets.v1.assets_pb2.CreateAssetResponse,
33
+ ]
34
+ """Creates a new, empty asset."""
35
+
30
36
  GetAsset: grpc.UnaryUnaryMultiCallable[
31
37
  sift.assets.v1.assets_pb2.GetAssetRequest,
32
38
  sift.assets.v1.assets_pb2.GetAssetResponse,
@@ -59,6 +65,12 @@ class AssetServiceAsyncStub:
59
65
  Deprecated: Use ArchiveAsset instead.
60
66
  """
61
67
 
68
+ CreateAsset: grpc.aio.UnaryUnaryMultiCallable[
69
+ sift.assets.v1.assets_pb2.CreateAssetRequest,
70
+ sift.assets.v1.assets_pb2.CreateAssetResponse,
71
+ ]
72
+ """Creates a new, empty asset."""
73
+
62
74
  GetAsset: grpc.aio.UnaryUnaryMultiCallable[
63
75
  sift.assets.v1.assets_pb2.GetAssetRequest,
64
76
  sift.assets.v1.assets_pb2.GetAssetResponse,
@@ -93,6 +105,14 @@ class AssetServiceServicer(metaclass=abc.ABCMeta):
93
105
  Deprecated: Use ArchiveAsset instead.
94
106
  """
95
107
 
108
+ @abc.abstractmethod
109
+ def CreateAsset(
110
+ self,
111
+ request: sift.assets.v1.assets_pb2.CreateAssetRequest,
112
+ context: _ServicerContext,
113
+ ) -> typing.Union[sift.assets.v1.assets_pb2.CreateAssetResponse, collections.abc.Awaitable[sift.assets.v1.assets_pb2.CreateAssetResponse]]:
114
+ """Creates a new, empty asset."""
115
+
96
116
  @abc.abstractmethod
97
117
  def GetAsset(
98
118
  self,
@@ -25,7 +25,7 @@ from sift.metadata.v1 import metadata_pb2 as sift_dot_metadata_dot_v1_dot_metada
25
25
  from sift.rules.v1 import rules_pb2 as sift_dot_rules_dot_v1_dot_rules__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5sift/calculated_channels/v2/calculated_channels.proto\x12\x1bsift.calculated_channels.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.protoc-gen-openapiv2/options/annotations.proto\x1a\x35sift/calculated_channels/v1/calculated_channels.proto\x1a+sift/common/type/v1/channel_data_type.proto\x1a-sift/common/type/v1/resource_identifier.proto\x1a\x30sift/common/type/v1/user_defined_functions.proto\x1a\x1fsift/metadata/v1/metadata.proto\x1a\x19sift/rules/v1/rules.proto\"\xdc\t\n\x11\x43\x61lculatedChannel\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x13\x63\x61lculatedChannelId\x12,\n\x0forganization_id\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x0eorganizationId\x12\'\n\nclient_key\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00R\tclientKey\x88\x01\x01\x12I\n\rarchived_date\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01H\x01R\x0c\x61rchivedDate\x88\x01\x01\x12\"\n\nversion_id\x18\x05 \x01(\tB\x03\xe0\x41\x02R\tversionId\x12\x1d\n\x07version\x18\x06 \x01(\rB\x03\xe0\x41\x02R\x07version\x12\x17\n\x04name\x18\x07 \x01(\tB\x03\xe0\x41\x02R\x04name\x12%\n\x0b\x64\x65scription\x18\x08 \x01(\tB\x03\xe0\x41\x02R\x0b\x64\x65scription\x12*\n\x0e\x63hange_message\x18\t \x01(\tB\x03\xe0\x41\x02R\rchangeMessage\x12\"\n\nuser_notes\x18\n \x01(\tB\x03\xe0\x41\x02R\tuserNotes\x12\x1e\n\x05units\x18\x12 \x01(\tB\x03\xe0\x41\x01H\x02R\x05units\x88\x01\x01\x12\x42\n\x0c\x63reated_date\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0b\x63reatedDate\x12\x44\n\rmodified_date\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0cmodifiedDate\x12\x8a\x01\n calculated_channel_configuration\x18\x0f \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x02R\x1e\x63\x61lculatedChannelConfiguration\x12\x30\n\x12\x63reated_by_user_id\x18\x10 \x01(\tB\x03\xe0\x41\x02R\x0f\x63reatedByUserId\x12\x32\n\x13modified_by_user_id\x18\x11 \x01(\tB\x03\xe0\x41\x02R\x10modifiedByUserId\x12\x61\n\x15\x66unction_dependencies\x18\x13 \x03(\x0b\x32\'.sift.common.type.v1.FunctionDependencyB\x03\xe0\x41\x02R\x14\x66unctionDependencies\x12@\n\x08metadata\x18\x14 \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadata\x12$\n\x0bis_archived\x18\x15 \x01(\x08\x42\x03\xe0\x41\x02R\nisArchived\x12\x85\x01\n\x1f\x63\x61lculated_channel_dependencies\x18\x16 \x03(\x0b\x32\x38.sift.calculated_channels.v2.CalculatedChannelDependencyB\x03\xe0\x41\x02R\x1d\x63\x61lculatedChannelDependenciesB\r\n\x0b_client_keyB\x10\n\x0e_archived_dateB\x08\n\x06_units\"e\n\x1b\x43\x61lculatedChannelDependency\x12\x46\n\x1d\x63\x61lculated_channel_version_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x1a\x63\x61lculatedChannelVersionId\"\x90\x02\n\x1e\x43\x61lculatedChannelConfiguration\x12v\n\x13\x61sset_configuration\x18\x01 \x01(\x0b\x32@.sift.calculated_channels.v2.CalculatedChannelAssetConfigurationB\x03\xe0\x41\x02R\x12\x61ssetConfiguration\x12v\n\x13query_configuration\x18\x02 \x01(\x0b\x32@.sift.calculated_channels.v2.CalculatedChannelQueryConfigurationB\x03\xe0\x41\x02R\x12queryConfiguration\"\x98\x02\n#CalculatedChannelAssetConfiguration\x12\x1f\n\nall_assets\x18\x01 \x01(\x08H\x00R\tallAssets\x12o\n\tselection\x18\x02 \x01(\x0b\x32O.sift.calculated_channels.v2.CalculatedChannelAssetConfiguration.AssetSelectionH\x00R\tselection\x1aP\n\x0e\x41ssetSelection\x12 \n\tasset_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02R\x08\x61ssetIds\x12\x1c\n\x07tag_ids\x18\x02 \x03(\tB\x03\xe0\x41\x02R\x06tagIdsB\r\n\x0b\x61sset_scope\"\xc7\x02\n#CalculatedChannelQueryConfiguration\x12X\n\x03sel\x18\x01 \x01(\x0b\x32\x44.sift.calculated_channels.v2.CalculatedChannelQueryConfiguration.SelH\x00R\x03sel\x1a\xbc\x01\n\x03Sel\x12#\n\nexpression\x18\x01 \x01(\tB\x03\xe0\x41\x02R\nexpression\x12\x8f\x01\n\x1d\x65xpression_channel_references\x18\x02 \x03(\x0b\x32\x46.sift.calculated_channels.v2.CalculatedChannelAbstractChannelReferenceB\x03\xe0\x41\x02R\x1b\x65xpressionChannelReferencesB\x07\n\x05query\"\xd7\x02\n)CalculatedChannelAbstractChannelReference\x12\x30\n\x11\x63hannel_reference\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x10\x63hannelReference\x12\x32\n\x12\x63hannel_identifier\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x11\x63hannelIdentifier\x12\x43\n\x1d\x63\x61lculated_channel_version_id\x18\x03 \x01(\tH\x00R\x1a\x63\x61lculatedChannelVersionId\x12_\n\x12\x63\x61lculated_channel\x18\x04 \x01(\x0b\x32..sift.calculated_channels.v1.ExpressionRequestH\x00R\x11\x63\x61lculatedChannelB\x1e\n\x1c\x63\x61lculated_channel_reference\"\xcd\x01\n!CalculatedChannelValidationResult\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12\'\n\nasset_name\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00R\tassetName\x88\x01\x01\x12 \n\ttag_names\x18\x03 \x03(\tB\x03\xe0\x41\x02R\x08tagNames\x12.\n\x10missing_channels\x18\x04 \x03(\tB\x03\xe0\x41\x02R\x0fmissingChannelsB\r\n\x0b_asset_name\"\xf0\x01\n\x1bGetCalculatedChannelRequest\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x13\x63\x61lculatedChannelId\x12\"\n\nclient_key\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tclientKey\x12,\n\x0forganization_id\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x46\n\x1d\x63\x61lculated_channel_version_id\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x1a\x63\x61lculatedChannelVersionId\"\x82\x01\n\x1cGetCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\"\xb5\x03\n\x1e\x43reateCalculatedChannelRequest\x12\x17\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x04name\x12%\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x0b\x64\x65scription\x12\"\n\nuser_notes\x18\x03 \x01(\tB\x03\xe0\x41\x01R\tuserNotes\x12\x1e\n\x05units\x18\x07 \x01(\tB\x03\xe0\x41\x01H\x00R\x05units\x88\x01\x01\x12\'\n\nclient_key\x18\x04 \x01(\tB\x03\xe0\x41\x01H\x01R\tclientKey\x88\x01\x01\x12\x8a\x01\n calculated_channel_configuration\x18\x05 \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x02R\x1e\x63\x61lculatedChannelConfiguration\x12@\n\x08metadata\x18\x08 \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadataB\x08\n\x06_unitsB\r\n\x0b_client_key\"\xfb\x01\n\x1f\x43reateCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12t\n\x13inapplicable_assets\x18\x02 \x03(\x0b\x32>.sift.calculated_channels.v2.CalculatedChannelValidationResultB\x03\xe0\x41\x02R\x12inapplicableAssets\"\xd0\x01\n\x1dListCalculatedChannelsRequest\x12 \n\tpage_size\x18\x01 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12,\n\x0forganization_id\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x1e\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xb3\x01\n\x1eListCalculatedChannelsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\x12+\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"\xfe\x01\n\x1eUpdateCalculatedChannelRequest\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12@\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02R\nupdateMask\x12\'\n\nuser_notes\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00R\tuserNotes\x88\x01\x01\x42\r\n\x0b_user_notes\"\xfb\x01\n\x1fUpdateCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12t\n\x13inapplicable_assets\x18\x02 \x03(\x0b\x32>.sift.calculated_channels.v2.CalculatedChannelValidationResultB\x03\xe0\x41\x02R\x12inapplicableAssets\"\xb4\x02\n$ListCalculatedChannelVersionsRequest\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x13\x63\x61lculatedChannelId\x12\"\n\nclient_key\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tclientKey\x12 \n\tpage_size\x18\x03 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12,\n\x0forganization_id\x18\x06 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x1e\n\x08order_by\x18\x07 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xc9\x01\n%ListCalculatedChannelVersionsResponse\x12s\n\x1b\x63\x61lculated_channel_versions\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x19\x63\x61lculatedChannelVersions\x12+\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"\xd3\x03\n\x1fResolveCalculatedChannelRequest\x12N\n\nidentifier\x18\x01 \x01(\x0b\x32\'.sift.common.type.v1.ResourceIdentifierB\x03\xe0\x41\x01H\x00R\nidentifier\x12\x8c\x01\n calculated_channel_configuration\x18\x02 \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x01H\x00R\x1e\x63\x61lculatedChannelConfiguration\x12,\n\x0forganization_id\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12@\n\x06\x61ssets\x18\x04 \x01(\x0b\x32#.sift.common.type.v1.NamedResourcesB\x03\xe0\x41\x01R\x06\x61ssets\x12\x43\n\x03run\x18\x05 \x01(\x0b\x32\'.sift.common.type.v1.ResourceIdentifierB\x03\xe0\x41\x01H\x01R\x03run\x88\x01\x01\x42\x14\n\x12\x63\x61lculated_channelB\x06\n\x04_run\"\x98\x02\n\x19ResolvedCalculatedChannel\x12\"\n\nasset_name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\tassetName\x12\x62\n\x12\x65xpression_request\x18\x02 \x01(\x0b\x32..sift.calculated_channels.v1.ExpressionRequestB\x03\xe0\x41\x02R\x11\x65xpressionRequest\x12S\n\x10output_data_type\x18\x03 \x01(\x0e\x32$.sift.common.type.v1.ChannelDataTypeB\x03\xe0\x41\x02R\x0eoutputDataType\x12\x1e\n\x08\x61sset_id\x18\x04 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\"k\n\x1bUnresolvedCalculatedChannel\x12\"\n\nasset_name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\tassetName\x12(\n\rerror_message\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x0c\x65rrorMessage\"\xb2\x02\n ResolveCalculatedChannelResponse\x12<\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00R\x13\x63\x61lculatedChannelId\x88\x01\x01\x12W\n\x08resolved\x18\x02 \x03(\x0b\x32\x36.sift.calculated_channels.v2.ResolvedCalculatedChannelB\x03\xe0\x41\x02R\x08resolved\x12]\n\nunresolved\x18\x03 \x03(\x0b\x32\x38.sift.calculated_channels.v2.UnresolvedCalculatedChannelB\x03\xe0\x41\x02R\nunresolvedB\x18\n\x16_calculated_channel_id\"\x86\x01\n%BatchResolveCalculatedChannelsRequest\x12]\n\x08requests\x18\x01 \x03(\x0b\x32<.sift.calculated_channels.v2.ResolveCalculatedChannelRequestB\x03\xe0\x41\x02R\x08requests\"\x8a\x01\n&BatchResolveCalculatedChannelsResponse\x12`\n\tresponses\x18\x01 \x03(\x0b\x32=.sift.calculated_channels.v2.ResolveCalculatedChannelResponseB\x03\xe0\x41\x02R\tresponses\"\xe6\x01\n%ListResolvedCalculatedChannelsRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x07\x61ssetId\x12\x1a\n\x06run_id\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x05runId\x12 \n\tpage_size\x18\x03 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12\x1e\n\x08order_by\x18\x06 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xd5\x02\n\x1b\x43\x61lculatedChannelResolution\x12g\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x01H\x00R\x11\x63\x61lculatedChannel\x88\x01\x01\x12W\n\x08resolved\x18\x02 \x03(\x0b\x32\x36.sift.calculated_channels.v2.ResolvedCalculatedChannelB\x03\xe0\x41\x02R\x08resolved\x12]\n\nunresolved\x18\x03 \x03(\x0b\x32\x38.sift.calculated_channels.v2.UnresolvedCalculatedChannelB\x03\xe0\x41\x02R\nunresolvedB\x15\n\x13_calculated_channel\"\xdb\x01\n&ListResolvedCalculatedChannelsResponse\x12\x83\x01\n\x1e\x63\x61lculated_channel_resolutions\x18\x01 \x03(\x0b\x32\x38.sift.calculated_channels.v2.CalculatedChannelResolutionB\x03\xe0\x41\x02R\x1c\x63\x61lculatedChannelResolutions\x12+\n\x0fnext_page_token\x18\x03 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"o\n#GetCalculatedChannelVersionsRequest\x12H\n\x1e\x63\x61lculated_channel_version_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02R\x1b\x63\x61lculatedChannelVersionIds\"\x8c\x01\n$GetCalculatedChannelVersionsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\"\xc2\x01\n%GetCalculatedChannelDependentsRequest\x12\x39\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00R\x13\x63\x61lculatedChannelId\x12H\n\x1d\x63\x61lculated_channel_version_id\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00R\x1a\x63\x61lculatedChannelVersionIdB\x14\n\x12\x63\x61lculated_channel\"\xbe\x01\n&GetCalculatedChannelDependentsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\x12.\n\x05rules\x18\x02 \x03(\x0b\x32\x13.sift.rules.v1.RuleB\x03\xe0\x41\x02R\x05rules2\xa3\x19\n\x18\x43\x61lculatedChannelService\x12\xe0\x02\n\x14GetCalculatedChannel\x12\x38.sift.calculated_channels.v2.GetCalculatedChannelRequest\x1a\x39.sift.calculated_channels.v2.GetCalculatedChannelResponse\"\xd2\x01\x92\x41L\x12\x14GetCalculatedChannel\x1a\x34Retrieve the latest version of a calculated channel.\x82\xd3\xe4\x93\x02}\x12\x33/api/v2/calculated-channels/{calculated_channel_id}ZF\x12\x44/v2/organizations/{organization_id}/calculated-channels/{client_key}\x12\xf6\x01\n\x17\x43reateCalculatedChannel\x12;.sift.calculated_channels.v2.CreateCalculatedChannelRequest\x1a<.sift.calculated_channels.v2.CreateCalculatedChannelResponse\"`\x92\x41\x37\x12\x17\x43reateCalculatedChannel\x1a\x1c\x43reate a calculated channel.\x82\xd3\xe4\x93\x02 \"\x1b/api/v2/calculated-channels:\x01*\x12\xa4\x02\n\x16ListCalculatedChannels\x12:.sift.calculated_channels.v2.ListCalculatedChannelsRequest\x1a;.sift.calculated_channels.v2.ListCalculatedChannelsResponse\"\x90\x01\x92\x41j\x12\x16ListCalculatedChannels\x1aPRetrieve the latest versions of calculated channels based on an optional filter.\x82\xd3\xe4\x93\x02\x1d\x12\x1b/api/v2/calculated-channels\x12\x92\x02\n\x17UpdateCalculatedChannel\x12;.sift.calculated_channels.v2.UpdateCalculatedChannelRequest\x1a<.sift.calculated_channels.v2.UpdateCalculatedChannelResponse\"|\x92\x41S\x12\x17UpdateCalculatedChannel\x1a\x38Update and create a new version of a calculated channel.\x82\xd3\xe4\x93\x02 2\x1b/api/v2/calculated-channels:\x01*\x12\xac\x03\n\x1dListCalculatedChannelVersions\x12\x41.sift.calculated_channels.v2.ListCalculatedChannelVersionsRequest\x1a\x42.sift.calculated_channels.v2.ListCalculatedChannelVersionsResponse\"\x83\x02\x92\x41j\x12\x1dListCalculatedChannelVersions\x1aIList versions of a particular calculated channel with an optional filter.\x82\xd3\xe4\x93\x02\x8f\x01\x12</api/v2/calculated-channels/{calculated_channel_id}/versionsZO\x12M/v2/organizations/{organization_id}/calculated-channels/{client_key}/versions\x12\xa6\x02\n\x18ResolveCalculatedChannel\x12<.sift.calculated_channels.v2.ResolveCalculatedChannelRequest\x1a=.sift.calculated_channels.v2.ResolveCalculatedChannelResponse\"\x8c\x01\x92\x41[\x12\x18ResolveCalculatedChannel\x1a?Resolve a calculated channel into an expression with references\x82\xd3\xe4\x93\x02(\"#/api/v2/calculated-channels/resolve:\x01*\x12\xcb\x02\n\x1e\x42\x61tchResolveCalculatedChannels\x12\x42.sift.calculated_channels.v2.BatchResolveCalculatedChannelsRequest\x1a\x43.sift.calculated_channels.v2.BatchResolveCalculatedChannelsResponse\"\x9f\x01\x92\x41h\x12\x1d\x42\x61tchResolveCalculatedChannel\x1aGResolve a batch of calculated channels into expressions with references\x82\xd3\xe4\x93\x02.\")/api/v2/calculated-channels/resolve:batch:\x01*\x12\xcd\x02\n\x1eListResolvedCalculatedChannels\x12\x42.sift.calculated_channels.v2.ListResolvedCalculatedChannelsRequest\x1a\x43.sift.calculated_channels.v2.ListResolvedCalculatedChannelsResponse\"\xa1\x01\x92\x41r\x12\x1eListResolvedCalculatedChannels\x1aPRetrieve the latest versions of calculated channels based on an optional filter.\x82\xd3\xe4\x93\x02&\x12$/api/v2/calculated-channels/resolved\x12\xaf\x02\n\x1cGetCalculatedChannelVersions\x12@.sift.calculated_channels.v2.GetCalculatedChannelVersionsRequest\x1a\x41.sift.calculated_channels.v2.GetCalculatedChannelVersionsResponse\"\x89\x01\x92\x41Z\x12\x1cGetCalculatedChannelVersions\x1a:Retrieve calculated channel versions by their version IDs.\x82\xd3\xe4\x93\x02&\x12$/api/v2/calculated-channels/versions\x12\xc6\x02\n\x1eGetCalculatedChannelDependents\x12\x42.sift.calculated_channels.v2.GetCalculatedChannelDependentsRequest\x1a\x43.sift.calculated_channels.v2.GetCalculatedChannelDependentsResponse\"\x9a\x01\x92\x41i\x12\x1eGetCalculatedChannelDependents\x1aGRetrieve calculated channels that depend on a given calculated channel.\x82\xd3\xe4\x93\x02(\x12&/api/v2/calculated-channels/dependentsB\xc4\x01\n\x1f\x63om.sift.calculated_channels.v2B\x17\x43\x61lculatedChannelsProtoP\x01\xa2\x02\x03SCX\xaa\x02\x1aSift.CalculatedChannels.V2\xca\x02\x1aSift\\CalculatedChannels\\V2\xe2\x02&Sift\\CalculatedChannels\\V2\\GPBMetadata\xea\x02\x1cSift::CalculatedChannels::V2b\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5sift/calculated_channels/v2/calculated_channels.proto\x12\x1bsift.calculated_channels.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.protoc-gen-openapiv2/options/annotations.proto\x1a\x35sift/calculated_channels/v1/calculated_channels.proto\x1a+sift/common/type/v1/channel_data_type.proto\x1a-sift/common/type/v1/resource_identifier.proto\x1a\x30sift/common/type/v1/user_defined_functions.proto\x1a\x1fsift/metadata/v1/metadata.proto\x1a\x19sift/rules/v1/rules.proto\"\xfb\t\n\x11\x43\x61lculatedChannel\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x13\x63\x61lculatedChannelId\x12,\n\x0forganization_id\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x0eorganizationId\x12\'\n\nclient_key\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00R\tclientKey\x88\x01\x01\x12I\n\rarchived_date\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01H\x01R\x0c\x61rchivedDate\x88\x01\x01\x12\"\n\nversion_id\x18\x05 \x01(\tB\x03\xe0\x41\x02R\tversionId\x12\x1d\n\x07version\x18\x06 \x01(\rB\x03\xe0\x41\x02R\x07version\x12\x17\n\x04name\x18\x07 \x01(\tB\x03\xe0\x41\x02R\x04name\x12%\n\x0b\x64\x65scription\x18\x08 \x01(\tB\x03\xe0\x41\x02R\x0b\x64\x65scription\x12*\n\x0e\x63hange_message\x18\t \x01(\tB\x03\xe0\x41\x02R\rchangeMessage\x12\"\n\nuser_notes\x18\n \x01(\tB\x03\xe0\x41\x02R\tuserNotes\x12\x1e\n\x05units\x18\x12 \x01(\tB\x03\xe0\x41\x01H\x02R\x05units\x88\x01\x01\x12\x42\n\x0c\x63reated_date\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0b\x63reatedDate\x12\x44\n\rmodified_date\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02R\x0cmodifiedDate\x12\x8a\x01\n calculated_channel_configuration\x18\x0f \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x02R\x1e\x63\x61lculatedChannelConfiguration\x12\x30\n\x12\x63reated_by_user_id\x18\x10 \x01(\tB\x03\xe0\x41\x02R\x0f\x63reatedByUserId\x12\x32\n\x13modified_by_user_id\x18\x11 \x01(\tB\x03\xe0\x41\x02R\x10modifiedByUserId\x12\x61\n\x15\x66unction_dependencies\x18\x13 \x03(\x0b\x32\'.sift.common.type.v1.FunctionDependencyB\x03\xe0\x41\x02R\x14\x66unctionDependencies\x12@\n\x08metadata\x18\x14 \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadata\x12$\n\x0bis_archived\x18\x15 \x01(\x08\x42\x03\xe0\x41\x02R\nisArchived\x12\x85\x01\n\x1f\x63\x61lculated_channel_dependencies\x18\x16 \x03(\x0b\x32\x38.sift.calculated_channels.v2.CalculatedChannelDependencyB\x03\xe0\x41\x02R\x1d\x63\x61lculatedChannelDependencies\x12\x1d\n\nfolder_ids\x18\x17 \x03(\tR\tfolderIdsB\r\n\x0b_client_keyB\x10\n\x0e_archived_dateB\x08\n\x06_units\"e\n\x1b\x43\x61lculatedChannelDependency\x12\x46\n\x1d\x63\x61lculated_channel_version_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x1a\x63\x61lculatedChannelVersionId\"\x90\x02\n\x1e\x43\x61lculatedChannelConfiguration\x12v\n\x13\x61sset_configuration\x18\x01 \x01(\x0b\x32@.sift.calculated_channels.v2.CalculatedChannelAssetConfigurationB\x03\xe0\x41\x02R\x12\x61ssetConfiguration\x12v\n\x13query_configuration\x18\x02 \x01(\x0b\x32@.sift.calculated_channels.v2.CalculatedChannelQueryConfigurationB\x03\xe0\x41\x02R\x12queryConfiguration\"\x98\x02\n#CalculatedChannelAssetConfiguration\x12\x1f\n\nall_assets\x18\x01 \x01(\x08H\x00R\tallAssets\x12o\n\tselection\x18\x02 \x01(\x0b\x32O.sift.calculated_channels.v2.CalculatedChannelAssetConfiguration.AssetSelectionH\x00R\tselection\x1aP\n\x0e\x41ssetSelection\x12 \n\tasset_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02R\x08\x61ssetIds\x12\x1c\n\x07tag_ids\x18\x02 \x03(\tB\x03\xe0\x41\x02R\x06tagIdsB\r\n\x0b\x61sset_scope\"\xc7\x02\n#CalculatedChannelQueryConfiguration\x12X\n\x03sel\x18\x01 \x01(\x0b\x32\x44.sift.calculated_channels.v2.CalculatedChannelQueryConfiguration.SelH\x00R\x03sel\x1a\xbc\x01\n\x03Sel\x12#\n\nexpression\x18\x01 \x01(\tB\x03\xe0\x41\x02R\nexpression\x12\x8f\x01\n\x1d\x65xpression_channel_references\x18\x02 \x03(\x0b\x32\x46.sift.calculated_channels.v2.CalculatedChannelAbstractChannelReferenceB\x03\xe0\x41\x02R\x1b\x65xpressionChannelReferencesB\x07\n\x05query\"\xd7\x02\n)CalculatedChannelAbstractChannelReference\x12\x30\n\x11\x63hannel_reference\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x10\x63hannelReference\x12\x32\n\x12\x63hannel_identifier\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x11\x63hannelIdentifier\x12\x43\n\x1d\x63\x61lculated_channel_version_id\x18\x03 \x01(\tH\x00R\x1a\x63\x61lculatedChannelVersionId\x12_\n\x12\x63\x61lculated_channel\x18\x04 \x01(\x0b\x32..sift.calculated_channels.v1.ExpressionRequestH\x00R\x11\x63\x61lculatedChannelB\x1e\n\x1c\x63\x61lculated_channel_reference\"\xcd\x01\n!CalculatedChannelValidationResult\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\x12\'\n\nasset_name\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00R\tassetName\x88\x01\x01\x12 \n\ttag_names\x18\x03 \x03(\tB\x03\xe0\x41\x02R\x08tagNames\x12.\n\x10missing_channels\x18\x04 \x03(\tB\x03\xe0\x41\x02R\x0fmissingChannelsB\r\n\x0b_asset_name\"\xf0\x01\n\x1bGetCalculatedChannelRequest\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x13\x63\x61lculatedChannelId\x12\"\n\nclient_key\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tclientKey\x12,\n\x0forganization_id\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x46\n\x1d\x63\x61lculated_channel_version_id\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x1a\x63\x61lculatedChannelVersionId\"\x82\x01\n\x1cGetCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\"\xb5\x03\n\x1e\x43reateCalculatedChannelRequest\x12\x17\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\x04name\x12%\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x0b\x64\x65scription\x12\"\n\nuser_notes\x18\x03 \x01(\tB\x03\xe0\x41\x01R\tuserNotes\x12\x1e\n\x05units\x18\x07 \x01(\tB\x03\xe0\x41\x01H\x00R\x05units\x88\x01\x01\x12\'\n\nclient_key\x18\x04 \x01(\tB\x03\xe0\x41\x01H\x01R\tclientKey\x88\x01\x01\x12\x8a\x01\n calculated_channel_configuration\x18\x05 \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x02R\x1e\x63\x61lculatedChannelConfiguration\x12@\n\x08metadata\x18\x08 \x03(\x0b\x32\x1f.sift.metadata.v1.MetadataValueB\x03\xe0\x41\x02R\x08metadataB\x08\n\x06_unitsB\r\n\x0b_client_key\"\xfb\x01\n\x1f\x43reateCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12t\n\x13inapplicable_assets\x18\x02 \x03(\x0b\x32>.sift.calculated_channels.v2.CalculatedChannelValidationResultB\x03\xe0\x41\x02R\x12inapplicableAssets\"\xd0\x01\n\x1dListCalculatedChannelsRequest\x12 \n\tpage_size\x18\x01 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12,\n\x0forganization_id\x18\x04 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x1e\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xb3\x01\n\x1eListCalculatedChannelsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\x12+\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"\xfe\x01\n\x1eUpdateCalculatedChannelRequest\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12@\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02R\nupdateMask\x12\'\n\nuser_notes\x18\x03 \x01(\tB\x03\xe0\x41\x01H\x00R\tuserNotes\x88\x01\x01\x42\r\n\x0b_user_notes\"\xfb\x01\n\x1fUpdateCalculatedChannelResponse\x12\x62\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x11\x63\x61lculatedChannel\x12t\n\x13inapplicable_assets\x18\x02 \x03(\x0b\x32>.sift.calculated_channels.v2.CalculatedChannelValidationResultB\x03\xe0\x41\x02R\x12inapplicableAssets\"\xb4\x02\n$ListCalculatedChannelVersionsRequest\x12\x37\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x13\x63\x61lculatedChannelId\x12\"\n\nclient_key\x18\x02 \x01(\tB\x03\xe0\x41\x01R\tclientKey\x12 \n\tpage_size\x18\x03 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12,\n\x0forganization_id\x18\x06 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12\x1e\n\x08order_by\x18\x07 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xc9\x01\n%ListCalculatedChannelVersionsResponse\x12s\n\x1b\x63\x61lculated_channel_versions\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x19\x63\x61lculatedChannelVersions\x12+\n\x0fnext_page_token\x18\x02 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"\xd3\x03\n\x1fResolveCalculatedChannelRequest\x12N\n\nidentifier\x18\x01 \x01(\x0b\x32\'.sift.common.type.v1.ResourceIdentifierB\x03\xe0\x41\x01H\x00R\nidentifier\x12\x8c\x01\n calculated_channel_configuration\x18\x02 \x01(\x0b\x32;.sift.calculated_channels.v2.CalculatedChannelConfigurationB\x03\xe0\x41\x01H\x00R\x1e\x63\x61lculatedChannelConfiguration\x12,\n\x0forganization_id\x18\x03 \x01(\tB\x03\xe0\x41\x01R\x0eorganizationId\x12@\n\x06\x61ssets\x18\x04 \x01(\x0b\x32#.sift.common.type.v1.NamedResourcesB\x03\xe0\x41\x01R\x06\x61ssets\x12\x43\n\x03run\x18\x05 \x01(\x0b\x32\'.sift.common.type.v1.ResourceIdentifierB\x03\xe0\x41\x01H\x01R\x03run\x88\x01\x01\x42\x14\n\x12\x63\x61lculated_channelB\x06\n\x04_run\"\x98\x02\n\x19ResolvedCalculatedChannel\x12\"\n\nasset_name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\tassetName\x12\x62\n\x12\x65xpression_request\x18\x02 \x01(\x0b\x32..sift.calculated_channels.v1.ExpressionRequestB\x03\xe0\x41\x02R\x11\x65xpressionRequest\x12S\n\x10output_data_type\x18\x03 \x01(\x0e\x32$.sift.common.type.v1.ChannelDataTypeB\x03\xe0\x41\x02R\x0eoutputDataType\x12\x1e\n\x08\x61sset_id\x18\x04 \x01(\tB\x03\xe0\x41\x02R\x07\x61ssetId\"k\n\x1bUnresolvedCalculatedChannel\x12\"\n\nasset_name\x18\x01 \x01(\tB\x03\xe0\x41\x02R\tassetName\x12(\n\rerror_message\x18\x02 \x01(\tB\x03\xe0\x41\x02R\x0c\x65rrorMessage\"\xb2\x02\n ResolveCalculatedChannelResponse\x12<\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00R\x13\x63\x61lculatedChannelId\x88\x01\x01\x12W\n\x08resolved\x18\x02 \x03(\x0b\x32\x36.sift.calculated_channels.v2.ResolvedCalculatedChannelB\x03\xe0\x41\x02R\x08resolved\x12]\n\nunresolved\x18\x03 \x03(\x0b\x32\x38.sift.calculated_channels.v2.UnresolvedCalculatedChannelB\x03\xe0\x41\x02R\nunresolvedB\x18\n\x16_calculated_channel_id\"\x86\x01\n%BatchResolveCalculatedChannelsRequest\x12]\n\x08requests\x18\x01 \x03(\x0b\x32<.sift.calculated_channels.v2.ResolveCalculatedChannelRequestB\x03\xe0\x41\x02R\x08requests\"\x8a\x01\n&BatchResolveCalculatedChannelsResponse\x12`\n\tresponses\x18\x01 \x03(\x0b\x32=.sift.calculated_channels.v2.ResolveCalculatedChannelResponseB\x03\xe0\x41\x02R\tresponses\"\xe6\x01\n%ListResolvedCalculatedChannelsRequest\x12\x1e\n\x08\x61sset_id\x18\x01 \x01(\tB\x03\xe0\x41\x01R\x07\x61ssetId\x12\x1a\n\x06run_id\x18\x02 \x01(\tB\x03\xe0\x41\x01R\x05runId\x12 \n\tpage_size\x18\x03 \x01(\rB\x03\xe0\x41\x01R\x08pageSize\x12\"\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01R\tpageToken\x12\x1b\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01R\x06\x66ilter\x12\x1e\n\x08order_by\x18\x06 \x01(\tB\x03\xe0\x41\x01R\x07orderBy\"\xd5\x02\n\x1b\x43\x61lculatedChannelResolution\x12g\n\x12\x63\x61lculated_channel\x18\x01 \x01(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x01H\x00R\x11\x63\x61lculatedChannel\x88\x01\x01\x12W\n\x08resolved\x18\x02 \x03(\x0b\x32\x36.sift.calculated_channels.v2.ResolvedCalculatedChannelB\x03\xe0\x41\x02R\x08resolved\x12]\n\nunresolved\x18\x03 \x03(\x0b\x32\x38.sift.calculated_channels.v2.UnresolvedCalculatedChannelB\x03\xe0\x41\x02R\nunresolvedB\x15\n\x13_calculated_channel\"\xdb\x01\n&ListResolvedCalculatedChannelsResponse\x12\x83\x01\n\x1e\x63\x61lculated_channel_resolutions\x18\x01 \x03(\x0b\x32\x38.sift.calculated_channels.v2.CalculatedChannelResolutionB\x03\xe0\x41\x02R\x1c\x63\x61lculatedChannelResolutions\x12+\n\x0fnext_page_token\x18\x03 \x01(\tB\x03\xe0\x41\x01R\rnextPageToken\"o\n#GetCalculatedChannelVersionsRequest\x12H\n\x1e\x63\x61lculated_channel_version_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02R\x1b\x63\x61lculatedChannelVersionIds\"\x8c\x01\n$GetCalculatedChannelVersionsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\"\xc2\x01\n%GetCalculatedChannelDependentsRequest\x12\x39\n\x15\x63\x61lculated_channel_id\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00R\x13\x63\x61lculatedChannelId\x12H\n\x1d\x63\x61lculated_channel_version_id\x18\x02 \x01(\tB\x03\xe0\x41\x01H\x00R\x1a\x63\x61lculatedChannelVersionIdB\x14\n\x12\x63\x61lculated_channel\"\xbe\x01\n&GetCalculatedChannelDependentsResponse\x12\x64\n\x13\x63\x61lculated_channels\x18\x01 \x03(\x0b\x32..sift.calculated_channels.v2.CalculatedChannelB\x03\xe0\x41\x02R\x12\x63\x61lculatedChannels\x12.\n\x05rules\x18\x02 \x03(\x0b\x32\x13.sift.rules.v1.RuleB\x03\xe0\x41\x02R\x05rules2\xa3\x19\n\x18\x43\x61lculatedChannelService\x12\xe0\x02\n\x14GetCalculatedChannel\x12\x38.sift.calculated_channels.v2.GetCalculatedChannelRequest\x1a\x39.sift.calculated_channels.v2.GetCalculatedChannelResponse\"\xd2\x01\x92\x41L\x12\x14GetCalculatedChannel\x1a\x34Retrieve the latest version of a calculated channel.\x82\xd3\xe4\x93\x02}\x12\x33/api/v2/calculated-channels/{calculated_channel_id}ZF\x12\x44/v2/organizations/{organization_id}/calculated-channels/{client_key}\x12\xf6\x01\n\x17\x43reateCalculatedChannel\x12;.sift.calculated_channels.v2.CreateCalculatedChannelRequest\x1a<.sift.calculated_channels.v2.CreateCalculatedChannelResponse\"`\x92\x41\x37\x12\x17\x43reateCalculatedChannel\x1a\x1c\x43reate a calculated channel.\x82\xd3\xe4\x93\x02 \"\x1b/api/v2/calculated-channels:\x01*\x12\xa4\x02\n\x16ListCalculatedChannels\x12:.sift.calculated_channels.v2.ListCalculatedChannelsRequest\x1a;.sift.calculated_channels.v2.ListCalculatedChannelsResponse\"\x90\x01\x92\x41j\x12\x16ListCalculatedChannels\x1aPRetrieve the latest versions of calculated channels based on an optional filter.\x82\xd3\xe4\x93\x02\x1d\x12\x1b/api/v2/calculated-channels\x12\x92\x02\n\x17UpdateCalculatedChannel\x12;.sift.calculated_channels.v2.UpdateCalculatedChannelRequest\x1a<.sift.calculated_channels.v2.UpdateCalculatedChannelResponse\"|\x92\x41S\x12\x17UpdateCalculatedChannel\x1a\x38Update and create a new version of a calculated channel.\x82\xd3\xe4\x93\x02 2\x1b/api/v2/calculated-channels:\x01*\x12\xac\x03\n\x1dListCalculatedChannelVersions\x12\x41.sift.calculated_channels.v2.ListCalculatedChannelVersionsRequest\x1a\x42.sift.calculated_channels.v2.ListCalculatedChannelVersionsResponse\"\x83\x02\x92\x41j\x12\x1dListCalculatedChannelVersions\x1aIList versions of a particular calculated channel with an optional filter.\x82\xd3\xe4\x93\x02\x8f\x01\x12</api/v2/calculated-channels/{calculated_channel_id}/versionsZO\x12M/v2/organizations/{organization_id}/calculated-channels/{client_key}/versions\x12\xa6\x02\n\x18ResolveCalculatedChannel\x12<.sift.calculated_channels.v2.ResolveCalculatedChannelRequest\x1a=.sift.calculated_channels.v2.ResolveCalculatedChannelResponse\"\x8c\x01\x92\x41[\x12\x18ResolveCalculatedChannel\x1a?Resolve a calculated channel into an expression with references\x82\xd3\xe4\x93\x02(\"#/api/v2/calculated-channels/resolve:\x01*\x12\xcb\x02\n\x1e\x42\x61tchResolveCalculatedChannels\x12\x42.sift.calculated_channels.v2.BatchResolveCalculatedChannelsRequest\x1a\x43.sift.calculated_channels.v2.BatchResolveCalculatedChannelsResponse\"\x9f\x01\x92\x41h\x12\x1d\x42\x61tchResolveCalculatedChannel\x1aGResolve a batch of calculated channels into expressions with references\x82\xd3\xe4\x93\x02.\")/api/v2/calculated-channels/resolve:batch:\x01*\x12\xcd\x02\n\x1eListResolvedCalculatedChannels\x12\x42.sift.calculated_channels.v2.ListResolvedCalculatedChannelsRequest\x1a\x43.sift.calculated_channels.v2.ListResolvedCalculatedChannelsResponse\"\xa1\x01\x92\x41r\x12\x1eListResolvedCalculatedChannels\x1aPRetrieve the latest versions of calculated channels based on an optional filter.\x82\xd3\xe4\x93\x02&\x12$/api/v2/calculated-channels/resolved\x12\xaf\x02\n\x1cGetCalculatedChannelVersions\x12@.sift.calculated_channels.v2.GetCalculatedChannelVersionsRequest\x1a\x41.sift.calculated_channels.v2.GetCalculatedChannelVersionsResponse\"\x89\x01\x92\x41Z\x12\x1cGetCalculatedChannelVersions\x1a:Retrieve calculated channel versions by their version IDs.\x82\xd3\xe4\x93\x02&\x12$/api/v2/calculated-channels/versions\x12\xc6\x02\n\x1eGetCalculatedChannelDependents\x12\x42.sift.calculated_channels.v2.GetCalculatedChannelDependentsRequest\x1a\x43.sift.calculated_channels.v2.GetCalculatedChannelDependentsResponse\"\x9a\x01\x92\x41i\x12\x1eGetCalculatedChannelDependents\x1aGRetrieve calculated channels that depend on a given calculated channel.\x82\xd3\xe4\x93\x02(\x12&/api/v2/calculated-channels/dependentsB\xc4\x01\n\x1f\x63om.sift.calculated_channels.v2B\x17\x43\x61lculatedChannelsProtoP\x01\xa2\x02\x03SCX\xaa\x02\x1aSift.CalculatedChannels.V2\xca\x02\x1aSift\\CalculatedChannels\\V2\xe2\x02&Sift\\CalculatedChannels\\V2\\GPBMetadata\xea\x02\x1cSift::CalculatedChannels::V2b\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -256,69 +256,69 @@ if not _descriptor._USE_C_DESCRIPTORS:
256
256
  _globals['_CALCULATEDCHANNELSERVICE'].methods_by_name['GetCalculatedChannelDependents']._loaded_options = None
257
257
  _globals['_CALCULATEDCHANNELSERVICE'].methods_by_name['GetCalculatedChannelDependents']._serialized_options = b'\222Ai\022\036GetCalculatedChannelDependents\032GRetrieve calculated channels that depend on a given calculated channel.\202\323\344\223\002(\022&/api/v2/calculated-channels/dependents'
258
258
  _globals['_CALCULATEDCHANNEL']._serialized_start=522
259
- _globals['_CALCULATEDCHANNEL']._serialized_end=1766
260
- _globals['_CALCULATEDCHANNELDEPENDENCY']._serialized_start=1768
261
- _globals['_CALCULATEDCHANNELDEPENDENCY']._serialized_end=1869
262
- _globals['_CALCULATEDCHANNELCONFIGURATION']._serialized_start=1872
263
- _globals['_CALCULATEDCHANNELCONFIGURATION']._serialized_end=2144
264
- _globals['_CALCULATEDCHANNELASSETCONFIGURATION']._serialized_start=2147
265
- _globals['_CALCULATEDCHANNELASSETCONFIGURATION']._serialized_end=2427
266
- _globals['_CALCULATEDCHANNELASSETCONFIGURATION_ASSETSELECTION']._serialized_start=2332
267
- _globals['_CALCULATEDCHANNELASSETCONFIGURATION_ASSETSELECTION']._serialized_end=2412
268
- _globals['_CALCULATEDCHANNELQUERYCONFIGURATION']._serialized_start=2430
269
- _globals['_CALCULATEDCHANNELQUERYCONFIGURATION']._serialized_end=2757
270
- _globals['_CALCULATEDCHANNELQUERYCONFIGURATION_SEL']._serialized_start=2560
271
- _globals['_CALCULATEDCHANNELQUERYCONFIGURATION_SEL']._serialized_end=2748
272
- _globals['_CALCULATEDCHANNELABSTRACTCHANNELREFERENCE']._serialized_start=2760
273
- _globals['_CALCULATEDCHANNELABSTRACTCHANNELREFERENCE']._serialized_end=3103
274
- _globals['_CALCULATEDCHANNELVALIDATIONRESULT']._serialized_start=3106
275
- _globals['_CALCULATEDCHANNELVALIDATIONRESULT']._serialized_end=3311
276
- _globals['_GETCALCULATEDCHANNELREQUEST']._serialized_start=3314
277
- _globals['_GETCALCULATEDCHANNELREQUEST']._serialized_end=3554
278
- _globals['_GETCALCULATEDCHANNELRESPONSE']._serialized_start=3557
279
- _globals['_GETCALCULATEDCHANNELRESPONSE']._serialized_end=3687
280
- _globals['_CREATECALCULATEDCHANNELREQUEST']._serialized_start=3690
281
- _globals['_CREATECALCULATEDCHANNELREQUEST']._serialized_end=4127
282
- _globals['_CREATECALCULATEDCHANNELRESPONSE']._serialized_start=4130
283
- _globals['_CREATECALCULATEDCHANNELRESPONSE']._serialized_end=4381
284
- _globals['_LISTCALCULATEDCHANNELSREQUEST']._serialized_start=4384
285
- _globals['_LISTCALCULATEDCHANNELSREQUEST']._serialized_end=4592
286
- _globals['_LISTCALCULATEDCHANNELSRESPONSE']._serialized_start=4595
287
- _globals['_LISTCALCULATEDCHANNELSRESPONSE']._serialized_end=4774
288
- _globals['_UPDATECALCULATEDCHANNELREQUEST']._serialized_start=4777
289
- _globals['_UPDATECALCULATEDCHANNELREQUEST']._serialized_end=5031
290
- _globals['_UPDATECALCULATEDCHANNELRESPONSE']._serialized_start=5034
291
- _globals['_UPDATECALCULATEDCHANNELRESPONSE']._serialized_end=5285
292
- _globals['_LISTCALCULATEDCHANNELVERSIONSREQUEST']._serialized_start=5288
293
- _globals['_LISTCALCULATEDCHANNELVERSIONSREQUEST']._serialized_end=5596
294
- _globals['_LISTCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_start=5599
295
- _globals['_LISTCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_end=5800
296
- _globals['_RESOLVECALCULATEDCHANNELREQUEST']._serialized_start=5803
297
- _globals['_RESOLVECALCULATEDCHANNELREQUEST']._serialized_end=6270
298
- _globals['_RESOLVEDCALCULATEDCHANNEL']._serialized_start=6273
299
- _globals['_RESOLVEDCALCULATEDCHANNEL']._serialized_end=6553
300
- _globals['_UNRESOLVEDCALCULATEDCHANNEL']._serialized_start=6555
301
- _globals['_UNRESOLVEDCALCULATEDCHANNEL']._serialized_end=6662
302
- _globals['_RESOLVECALCULATEDCHANNELRESPONSE']._serialized_start=6665
303
- _globals['_RESOLVECALCULATEDCHANNELRESPONSE']._serialized_end=6971
304
- _globals['_BATCHRESOLVECALCULATEDCHANNELSREQUEST']._serialized_start=6974
305
- _globals['_BATCHRESOLVECALCULATEDCHANNELSREQUEST']._serialized_end=7108
306
- _globals['_BATCHRESOLVECALCULATEDCHANNELSRESPONSE']._serialized_start=7111
307
- _globals['_BATCHRESOLVECALCULATEDCHANNELSRESPONSE']._serialized_end=7249
308
- _globals['_LISTRESOLVEDCALCULATEDCHANNELSREQUEST']._serialized_start=7252
309
- _globals['_LISTRESOLVEDCALCULATEDCHANNELSREQUEST']._serialized_end=7482
310
- _globals['_CALCULATEDCHANNELRESOLUTION']._serialized_start=7485
311
- _globals['_CALCULATEDCHANNELRESOLUTION']._serialized_end=7826
312
- _globals['_LISTRESOLVEDCALCULATEDCHANNELSRESPONSE']._serialized_start=7829
313
- _globals['_LISTRESOLVEDCALCULATEDCHANNELSRESPONSE']._serialized_end=8048
314
- _globals['_GETCALCULATEDCHANNELVERSIONSREQUEST']._serialized_start=8050
315
- _globals['_GETCALCULATEDCHANNELVERSIONSREQUEST']._serialized_end=8161
316
- _globals['_GETCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_start=8164
317
- _globals['_GETCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_end=8304
318
- _globals['_GETCALCULATEDCHANNELDEPENDENTSREQUEST']._serialized_start=8307
319
- _globals['_GETCALCULATEDCHANNELDEPENDENTSREQUEST']._serialized_end=8501
320
- _globals['_GETCALCULATEDCHANNELDEPENDENTSRESPONSE']._serialized_start=8504
321
- _globals['_GETCALCULATEDCHANNELDEPENDENTSRESPONSE']._serialized_end=8694
322
- _globals['_CALCULATEDCHANNELSERVICE']._serialized_start=8697
323
- _globals['_CALCULATEDCHANNELSERVICE']._serialized_end=11932
259
+ _globals['_CALCULATEDCHANNEL']._serialized_end=1797
260
+ _globals['_CALCULATEDCHANNELDEPENDENCY']._serialized_start=1799
261
+ _globals['_CALCULATEDCHANNELDEPENDENCY']._serialized_end=1900
262
+ _globals['_CALCULATEDCHANNELCONFIGURATION']._serialized_start=1903
263
+ _globals['_CALCULATEDCHANNELCONFIGURATION']._serialized_end=2175
264
+ _globals['_CALCULATEDCHANNELASSETCONFIGURATION']._serialized_start=2178
265
+ _globals['_CALCULATEDCHANNELASSETCONFIGURATION']._serialized_end=2458
266
+ _globals['_CALCULATEDCHANNELASSETCONFIGURATION_ASSETSELECTION']._serialized_start=2363
267
+ _globals['_CALCULATEDCHANNELASSETCONFIGURATION_ASSETSELECTION']._serialized_end=2443
268
+ _globals['_CALCULATEDCHANNELQUERYCONFIGURATION']._serialized_start=2461
269
+ _globals['_CALCULATEDCHANNELQUERYCONFIGURATION']._serialized_end=2788
270
+ _globals['_CALCULATEDCHANNELQUERYCONFIGURATION_SEL']._serialized_start=2591
271
+ _globals['_CALCULATEDCHANNELQUERYCONFIGURATION_SEL']._serialized_end=2779
272
+ _globals['_CALCULATEDCHANNELABSTRACTCHANNELREFERENCE']._serialized_start=2791
273
+ _globals['_CALCULATEDCHANNELABSTRACTCHANNELREFERENCE']._serialized_end=3134
274
+ _globals['_CALCULATEDCHANNELVALIDATIONRESULT']._serialized_start=3137
275
+ _globals['_CALCULATEDCHANNELVALIDATIONRESULT']._serialized_end=3342
276
+ _globals['_GETCALCULATEDCHANNELREQUEST']._serialized_start=3345
277
+ _globals['_GETCALCULATEDCHANNELREQUEST']._serialized_end=3585
278
+ _globals['_GETCALCULATEDCHANNELRESPONSE']._serialized_start=3588
279
+ _globals['_GETCALCULATEDCHANNELRESPONSE']._serialized_end=3718
280
+ _globals['_CREATECALCULATEDCHANNELREQUEST']._serialized_start=3721
281
+ _globals['_CREATECALCULATEDCHANNELREQUEST']._serialized_end=4158
282
+ _globals['_CREATECALCULATEDCHANNELRESPONSE']._serialized_start=4161
283
+ _globals['_CREATECALCULATEDCHANNELRESPONSE']._serialized_end=4412
284
+ _globals['_LISTCALCULATEDCHANNELSREQUEST']._serialized_start=4415
285
+ _globals['_LISTCALCULATEDCHANNELSREQUEST']._serialized_end=4623
286
+ _globals['_LISTCALCULATEDCHANNELSRESPONSE']._serialized_start=4626
287
+ _globals['_LISTCALCULATEDCHANNELSRESPONSE']._serialized_end=4805
288
+ _globals['_UPDATECALCULATEDCHANNELREQUEST']._serialized_start=4808
289
+ _globals['_UPDATECALCULATEDCHANNELREQUEST']._serialized_end=5062
290
+ _globals['_UPDATECALCULATEDCHANNELRESPONSE']._serialized_start=5065
291
+ _globals['_UPDATECALCULATEDCHANNELRESPONSE']._serialized_end=5316
292
+ _globals['_LISTCALCULATEDCHANNELVERSIONSREQUEST']._serialized_start=5319
293
+ _globals['_LISTCALCULATEDCHANNELVERSIONSREQUEST']._serialized_end=5627
294
+ _globals['_LISTCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_start=5630
295
+ _globals['_LISTCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_end=5831
296
+ _globals['_RESOLVECALCULATEDCHANNELREQUEST']._serialized_start=5834
297
+ _globals['_RESOLVECALCULATEDCHANNELREQUEST']._serialized_end=6301
298
+ _globals['_RESOLVEDCALCULATEDCHANNEL']._serialized_start=6304
299
+ _globals['_RESOLVEDCALCULATEDCHANNEL']._serialized_end=6584
300
+ _globals['_UNRESOLVEDCALCULATEDCHANNEL']._serialized_start=6586
301
+ _globals['_UNRESOLVEDCALCULATEDCHANNEL']._serialized_end=6693
302
+ _globals['_RESOLVECALCULATEDCHANNELRESPONSE']._serialized_start=6696
303
+ _globals['_RESOLVECALCULATEDCHANNELRESPONSE']._serialized_end=7002
304
+ _globals['_BATCHRESOLVECALCULATEDCHANNELSREQUEST']._serialized_start=7005
305
+ _globals['_BATCHRESOLVECALCULATEDCHANNELSREQUEST']._serialized_end=7139
306
+ _globals['_BATCHRESOLVECALCULATEDCHANNELSRESPONSE']._serialized_start=7142
307
+ _globals['_BATCHRESOLVECALCULATEDCHANNELSRESPONSE']._serialized_end=7280
308
+ _globals['_LISTRESOLVEDCALCULATEDCHANNELSREQUEST']._serialized_start=7283
309
+ _globals['_LISTRESOLVEDCALCULATEDCHANNELSREQUEST']._serialized_end=7513
310
+ _globals['_CALCULATEDCHANNELRESOLUTION']._serialized_start=7516
311
+ _globals['_CALCULATEDCHANNELRESOLUTION']._serialized_end=7857
312
+ _globals['_LISTRESOLVEDCALCULATEDCHANNELSRESPONSE']._serialized_start=7860
313
+ _globals['_LISTRESOLVEDCALCULATEDCHANNELSRESPONSE']._serialized_end=8079
314
+ _globals['_GETCALCULATEDCHANNELVERSIONSREQUEST']._serialized_start=8081
315
+ _globals['_GETCALCULATEDCHANNELVERSIONSREQUEST']._serialized_end=8192
316
+ _globals['_GETCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_start=8195
317
+ _globals['_GETCALCULATEDCHANNELVERSIONSRESPONSE']._serialized_end=8335
318
+ _globals['_GETCALCULATEDCHANNELDEPENDENTSREQUEST']._serialized_start=8338
319
+ _globals['_GETCALCULATEDCHANNELDEPENDENTSREQUEST']._serialized_end=8532
320
+ _globals['_GETCALCULATEDCHANNELDEPENDENTSRESPONSE']._serialized_start=8535
321
+ _globals['_GETCALCULATEDCHANNELDEPENDENTSRESPONSE']._serialized_end=8725
322
+ _globals['_CALCULATEDCHANNELSERVICE']._serialized_start=8728
323
+ _globals['_CALCULATEDCHANNELSERVICE']._serialized_end=11963
324
324
  # @@protoc_insertion_point(module_scope)
@@ -44,6 +44,7 @@ class CalculatedChannel(google.protobuf.message.Message):
44
44
  METADATA_FIELD_NUMBER: builtins.int
45
45
  IS_ARCHIVED_FIELD_NUMBER: builtins.int
46
46
  CALCULATED_CHANNEL_DEPENDENCIES_FIELD_NUMBER: builtins.int
47
+ FOLDER_IDS_FIELD_NUMBER: builtins.int
47
48
  calculated_channel_id: builtins.str
48
49
  organization_id: builtins.str
49
50
  client_key: builtins.str
@@ -74,6 +75,10 @@ class CalculatedChannel(google.protobuf.message.Message):
74
75
  def calculated_channel_dependencies(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___CalculatedChannelDependency]:
75
76
  """Calculated channels that this channel depends on."""
76
77
 
78
+ @property
79
+ def folder_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
80
+ """Ids of the folders this calculated channel belongs to."""
81
+
77
82
  def __init__(
78
83
  self,
79
84
  *,
@@ -97,9 +102,10 @@ class CalculatedChannel(google.protobuf.message.Message):
97
102
  metadata: collections.abc.Iterable[sift.metadata.v1.metadata_pb2.MetadataValue] | None = ...,
98
103
  is_archived: builtins.bool = ...,
99
104
  calculated_channel_dependencies: collections.abc.Iterable[global___CalculatedChannelDependency] | None = ...,
105
+ folder_ids: collections.abc.Iterable[builtins.str] | None = ...,
100
106
  ) -> None: ...
101
107
  def HasField(self, field_name: typing.Literal["_archived_date", b"_archived_date", "_client_key", b"_client_key", "_units", b"_units", "archived_date", b"archived_date", "calculated_channel_configuration", b"calculated_channel_configuration", "client_key", b"client_key", "created_date", b"created_date", "modified_date", b"modified_date", "units", b"units"]) -> builtins.bool: ...
102
- def ClearField(self, field_name: typing.Literal["_archived_date", b"_archived_date", "_client_key", b"_client_key", "_units", b"_units", "archived_date", b"archived_date", "calculated_channel_configuration", b"calculated_channel_configuration", "calculated_channel_dependencies", b"calculated_channel_dependencies", "calculated_channel_id", b"calculated_channel_id", "change_message", b"change_message", "client_key", b"client_key", "created_by_user_id", b"created_by_user_id", "created_date", b"created_date", "description", b"description", "function_dependencies", b"function_dependencies", "is_archived", b"is_archived", "metadata", b"metadata", "modified_by_user_id", b"modified_by_user_id", "modified_date", b"modified_date", "name", b"name", "organization_id", b"organization_id", "units", b"units", "user_notes", b"user_notes", "version", b"version", "version_id", b"version_id"]) -> None: ...
108
+ def ClearField(self, field_name: typing.Literal["_archived_date", b"_archived_date", "_client_key", b"_client_key", "_units", b"_units", "archived_date", b"archived_date", "calculated_channel_configuration", b"calculated_channel_configuration", "calculated_channel_dependencies", b"calculated_channel_dependencies", "calculated_channel_id", b"calculated_channel_id", "change_message", b"change_message", "client_key", b"client_key", "created_by_user_id", b"created_by_user_id", "created_date", b"created_date", "description", b"description", "folder_ids", b"folder_ids", "function_dependencies", b"function_dependencies", "is_archived", b"is_archived", "metadata", b"metadata", "modified_by_user_id", b"modified_by_user_id", "modified_date", b"modified_date", "name", b"name", "organization_id", b"organization_id", "units", b"units", "user_notes", b"user_notes", "version", b"version", "version_id", b"version_id"]) -> None: ...
103
109
  @typing.overload
104
110
  def WhichOneof(self, oneof_group: typing.Literal["_archived_date", b"_archived_date"]) -> typing.Literal["archived_date"] | None: ...
105
111
  @typing.overload