Changeset View
Changeset View
Standalone View
Standalone View
python_modules/dagster/dagster/grpc/protos/api.proto
Show All 13 Lines | service DagsterApi { | ||||
rpc ExternalPartitionNames (ExternalPartitionNamesRequest) returns (ExternalPartitionNamesReply) {} | rpc ExternalPartitionNames (ExternalPartitionNamesRequest) returns (ExternalPartitionNamesReply) {} | ||||
rpc ExternalPartitionConfig (ExternalPartitionConfigRequest) returns (ExternalPartitionConfigReply) {} | rpc ExternalPartitionConfig (ExternalPartitionConfigRequest) returns (ExternalPartitionConfigReply) {} | ||||
rpc ExternalPartitionTags (ExternalPartitionTagsRequest) returns (ExternalPartitionTagsReply) {} | rpc ExternalPartitionTags (ExternalPartitionTagsRequest) returns (ExternalPartitionTagsReply) {} | ||||
rpc ExternalPartitionSetExecutionParams (ExternalPartitionSetExecutionParamsRequest) returns (ExternalPartitionSetExecutionParamsReply) {} | rpc ExternalPartitionSetExecutionParams (ExternalPartitionSetExecutionParamsRequest) returns (ExternalPartitionSetExecutionParamsReply) {} | ||||
rpc ExternalPipelineSubsetSnapshot (ExternalPipelineSubsetSnapshotRequest) returns (ExternalPipelineSubsetSnapshotReply) {} | rpc ExternalPipelineSubsetSnapshot (ExternalPipelineSubsetSnapshotRequest) returns (ExternalPipelineSubsetSnapshotReply) {} | ||||
rpc ExternalRepository (ExternalRepositoryRequest) returns (ExternalRepositoryReply) {} | rpc ExternalRepository (ExternalRepositoryRequest) returns (ExternalRepositoryReply) {} | ||||
rpc StreamingExternalRepository (ExternalRepositoryRequest) returns (stream StreamingExternalRepositoryEvent) {} | rpc StreamingExternalRepository (ExternalRepositoryRequest) returns (stream StreamingExternalRepositoryEvent) {} | ||||
rpc ExternalScheduleExecution (ExternalScheduleExecutionRequest) returns (ExternalScheduleExecutionReply) {} | rpc ExternalScheduleExecution (ExternalScheduleExecutionRequest) returns (ExternalScheduleExecutionReply) {} | ||||
rpc ExternalSensorExecution (ExternalSensorExecutionRequest) returns (ExternalSensorExecutionReply) {} | |||||
rpc ShutdownServer (Empty) returns (ShutdownServerReply) {} | rpc ShutdownServer (Empty) returns (ShutdownServerReply) {} | ||||
rpc CancelExecution (CancelExecutionRequest) returns (CancelExecutionReply) {} | rpc CancelExecution (CancelExecutionRequest) returns (CancelExecutionReply) {} | ||||
rpc CanCancelExecution (CanCancelExecutionRequest) returns (CanCancelExecutionReply) {} | rpc CanCancelExecution (CanCancelExecutionRequest) returns (CanCancelExecutionReply) {} | ||||
rpc StartRun (StartRunRequest) returns (StartRunReply) {} | rpc StartRun (StartRunRequest) returns (StartRunReply) {} | ||||
rpc GetCurrentImage (Empty) returns (GetCurrentImageReply) {} | rpc GetCurrentImage (Empty) returns (GetCurrentImageReply) {} | ||||
} | } | ||||
message Empty {} | message Empty {} | ||||
▲ Show 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | |||||
message ExternalScheduleExecutionRequest { | message ExternalScheduleExecutionRequest { | ||||
string serialized_external_schedule_execution_args = 1; | string serialized_external_schedule_execution_args = 1; | ||||
} | } | ||||
message ExternalScheduleExecutionReply { | message ExternalScheduleExecutionReply { | ||||
string serialized_external_schedule_execution_data_or_external_schedule_execution_error = 1; | string serialized_external_schedule_execution_data_or_external_schedule_execution_error = 1; | ||||
} | } | ||||
message ExternalSensorExecutionRequest { | |||||
string serialized_external_sensor_execution_args = 1; | |||||
} | |||||
message ExternalSensorExecutionReply { | |||||
string serialized_external_sensor_execution_data_or_external_sensor_execution_error = 1; | |||||
} | |||||
message ShutdownServerReply { | message ShutdownServerReply { | ||||
string serialized_shutdown_server_result = 1; | string serialized_shutdown_server_result = 1; | ||||
} | } | ||||
message CancelExecutionRequest { | message CancelExecutionRequest { | ||||
string serialized_cancel_execution_request = 1; | string serialized_cancel_execution_request = 1; | ||||
} | } | ||||
Show All 23 Lines |