mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 18:28:10 +01:00
Create GCP Logging implementation of AdminEventLogger
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright 2022 Signal Messenger, LLC
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package org.whispersystems.textsecuregcm.configuration;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
public record AdminEventLoggingConfiguration(
|
||||
@NotNull @NotEmpty String credentials,
|
||||
@NotNull @NotEmpty String projectId,
|
||||
@NotNull @NotEmpty String logName) {
|
||||
}
|
||||
Reference in New Issue
Block a user