com.google.cloud.securitycenter.v1.CloudLoggingEntryOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-securitycenter-v1 Show documentation
Show all versions of proto-google-cloud-securitycenter-v1 Show documentation
PROTO library for proto-google-cloud-securitycenter-v1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/securitycenter/v1/log_entry.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v1;
public interface CloudLoggingEntryOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.CloudLoggingEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A unique identifier for the log entry.
*
*
* string insert_id = 1;
*
* @return The insertId.
*/
java.lang.String getInsertId();
/**
*
*
*
* A unique identifier for the log entry.
*
*
* string insert_id = 1;
*
* @return The bytes for insertId.
*/
com.google.protobuf.ByteString getInsertIdBytes();
/**
*
*
*
* The type of the log (part of `log_name`. `log_name` is the resource name of
* the log to which this log entry belongs). For example:
* `cloudresourcemanager.googleapis.com/activity`. Note that this field is not
* URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
*
*
* string log_id = 2;
*
* @return The logId.
*/
java.lang.String getLogId();
/**
*
*
*
* The type of the log (part of `log_name`. `log_name` is the resource name of
* the log to which this log entry belongs). For example:
* `cloudresourcemanager.googleapis.com/activity`. Note that this field is not
* URL-encoded, unlike the `LOG_ID` field in `LogEntry`.
*
*
* string log_id = 2;
*
* @return The bytes for logId.
*/
com.google.protobuf.ByteString getLogIdBytes();
/**
*
*
*
* The organization, folder, or project of the monitored resource that
* produced this log entry.
*
*
* string resource_container = 3;
*
* @return The resourceContainer.
*/
java.lang.String getResourceContainer();
/**
*
*
*
* The organization, folder, or project of the monitored resource that
* produced this log entry.
*
*
* string resource_container = 3;
*
* @return The bytes for resourceContainer.
*/
com.google.protobuf.ByteString getResourceContainerBytes();
/**
*
*
*
* The time the event described by the log entry occurred.
*
*
* .google.protobuf.Timestamp timestamp = 4;
*
* @return Whether the timestamp field is set.
*/
boolean hasTimestamp();
/**
*
*
*
* The time the event described by the log entry occurred.
*
*
* .google.protobuf.Timestamp timestamp = 4;
*
* @return The timestamp.
*/
com.google.protobuf.Timestamp getTimestamp();
/**
*
*
*
* The time the event described by the log entry occurred.
*
*
* .google.protobuf.Timestamp timestamp = 4;
*/
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy