Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions api/proto/teleport/legacy/types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5290,6 +5290,23 @@ message IntegrationSpecV1 {
// AWSOIDC contains the specific fields to handle the AWS OIDC Integration subkind
AWSOIDCIntegrationSpecV1 AWSOIDC = 1 [(gogoproto.jsontag) = "aws_oidc,omitempty"];
}

// IntegrationStatus contains the current integration status.
enum IntegrationStatus {
INTEGRATION_STATUS_UNSPECIFIED = 0;

// Integration is not running because it was just created or was disabled by the user.
INTEGRATION_STATUS_PAUSED = 1;

// Integration is running.
INTEGRATION_STATUS_RUNNING = 2;

// Integration has an error and that should be fixed before receiving requests.
INTEGRATION_STATUS_ERROR = 3;
}

// Status contains the current Integration Status
IntegrationStatus status = 2;
}

// AWSOIDCIntegrationSpecV1 contains the spec properties for the AWS OIDC SubKind Integration.
Expand Down
Loading