2021-09-27 13:43:49 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
import "zitadel/object.proto";
|
2022-10-06 14:23:59 +02:00
|
|
|
import "zitadel/message.proto";
|
2021-09-27 13:43:49 +02:00
|
|
|
import "validate/validate.proto";
|
|
|
|
import "google/protobuf/duration.proto";
|
|
|
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
|
|
|
|
|
|
|
package zitadel.action.v1;
|
|
|
|
|
2022-04-27 01:01:45 +02:00
|
|
|
option go_package ="github.com/zitadel/zitadel/pkg/grpc/action";
|
2021-09-27 13:43:49 +02:00
|
|
|
|
|
|
|
message Action {
|
|
|
|
string id = 1 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
example: "\"69629023906488334\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
zitadel.v1.ObjectDetails details = 2;
|
|
|
|
ActionState state = 3 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "the state of the action";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
string name = 4 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
example: "\"log context\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
string script = 5 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
example: "\"function log(context, calls){console.log(context)}\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
google.protobuf.Duration timeout = 6 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "after which time the action will be terminated if not finished";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
bool allowed_to_fail = 7 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "when true, the next action will be called even if this action fails";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ActionState {
|
|
|
|
ACTION_STATE_UNSPECIFIED = 0;
|
|
|
|
ACTION_STATE_INACTIVE = 1;
|
|
|
|
ACTION_STATE_ACTIVE = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ActionIDQuery {
|
|
|
|
string id = 1 [
|
|
|
|
(validate.rules).string = {max_len: 200},
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
example: "\"69629023906488334\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ActionNameQuery {
|
|
|
|
string name = 1 [
|
|
|
|
(validate.rules).string = {max_len: 200},
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
example: "\"log\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
zitadel.v1.TextQueryMethod method = 2 [
|
|
|
|
(validate.rules).enum.defined_only = true,
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "defines which text equality method is used";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-02-23 12:08:06 +01:00
|
|
|
//ActionStateQuery always equals
|
2021-09-27 13:43:49 +02:00
|
|
|
message ActionStateQuery {
|
|
|
|
ActionState state = 1 [
|
|
|
|
(validate.rules).enum.defined_only = true,
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "current state of the action";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ActionFieldName {
|
|
|
|
ACTION_FIELD_NAME_UNSPECIFIED = 0;
|
|
|
|
ACTION_FIELD_NAME_NAME = 1;
|
|
|
|
ACTION_FIELD_NAME_ID = 2;
|
|
|
|
ACTION_FIELD_NAME_STATE = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Flow {
|
2022-10-06 14:23:59 +02:00
|
|
|
// id of the flow type
|
2021-09-27 13:43:49 +02:00
|
|
|
FlowType type = 1 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "\"the type of the flow\"";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
zitadel.v1.ObjectDetails details = 2;
|
|
|
|
FlowState state = 3 [
|
|
|
|
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
|
|
description: "the state of the flow";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
repeated TriggerAction trigger_actions = 4;
|
|
|
|
}
|
|
|
|
|
2022-10-06 14:23:59 +02:00
|
|
|
message FlowType {
|
|
|
|
// identifier of the type
|
|
|
|
string id = 1;
|
|
|
|
// key and name of the type
|
|
|
|
zitadel.v1.LocalizedMessage name = 2;
|
2021-09-27 13:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum FlowState {
|
|
|
|
FLOW_STATE_UNSPECIFIED = 0;
|
|
|
|
FLOW_STATE_INACTIVE = 1;
|
|
|
|
FLOW_STATE_ACTIVE = 2;
|
|
|
|
}
|
|
|
|
|
2022-10-06 14:23:59 +02:00
|
|
|
message TriggerType {
|
|
|
|
// identifier of the type
|
|
|
|
string id = 1;
|
|
|
|
// key and name of the type
|
|
|
|
zitadel.v1.LocalizedMessage name = 2;
|
2021-09-27 13:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
message TriggerAction {
|
2022-10-06 14:23:59 +02:00
|
|
|
// id of the trigger type
|
2021-09-27 13:43:49 +02:00
|
|
|
TriggerType trigger_type = 1;
|
|
|
|
repeated Action actions = 2;
|
|
|
|
}
|