/*
* 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/webrisk/v1beta1/webrisk.proto
// Protobuf Java Version: 3.25.3
package com.google.webrisk.v1beta1;
public interface ComputeThreatListDiffResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The type of response. This may indicate that an action must be taken by the
* client when the response is received.
*
*
*
* .google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse.ResponseType response_type = 4;
*
*
* @return The enum numeric value on the wire for responseType.
*/
int getResponseTypeValue();
/**
*
*
*
* The type of response. This may indicate that an action must be taken by the
* client when the response is received.
*
*
*
* .google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse.ResponseType response_type = 4;
*
*
* @return The responseType.
*/
com.google.webrisk.v1beta1.ComputeThreatListDiffResponse.ResponseType getResponseType();
/**
*
*
*
* A set of entries to add to a local threat type's list.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryAdditions additions = 5;
*
* @return Whether the additions field is set.
*/
boolean hasAdditions();
/**
*
*
*
* A set of entries to add to a local threat type's list.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryAdditions additions = 5;
*
* @return The additions.
*/
com.google.webrisk.v1beta1.ThreatEntryAdditions getAdditions();
/**
*
*
*
* A set of entries to add to a local threat type's list.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryAdditions additions = 5;
*/
com.google.webrisk.v1beta1.ThreatEntryAdditionsOrBuilder getAdditionsOrBuilder();
/**
*
*
*
* A set of entries to remove from a local threat type's list.
* This field may be empty.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryRemovals removals = 6;
*
* @return Whether the removals field is set.
*/
boolean hasRemovals();
/**
*
*
*
* A set of entries to remove from a local threat type's list.
* This field may be empty.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryRemovals removals = 6;
*
* @return The removals.
*/
com.google.webrisk.v1beta1.ThreatEntryRemovals getRemovals();
/**
*
*
*
* A set of entries to remove from a local threat type's list.
* This field may be empty.
*
*
* .google.cloud.webrisk.v1beta1.ThreatEntryRemovals removals = 6;
*/
com.google.webrisk.v1beta1.ThreatEntryRemovalsOrBuilder getRemovalsOrBuilder();
/**
*
*
*
* The new opaque client version token.
*
*
* bytes new_version_token = 7;
*
* @return The newVersionToken.
*/
com.google.protobuf.ByteString getNewVersionToken();
/**
*
*
*
* The expected SHA256 hash of the client state; that is, of the sorted list
* of all hashes present in the database after applying the provided diff.
* If the client state doesn't match the expected state, the client must
* disregard this diff and retry later.
*
*
* .google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse.Checksum checksum = 8;
*
* @return Whether the checksum field is set.
*/
boolean hasChecksum();
/**
*
*
*
* The expected SHA256 hash of the client state; that is, of the sorted list
* of all hashes present in the database after applying the provided diff.
* If the client state doesn't match the expected state, the client must
* disregard this diff and retry later.
*
*
* .google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse.Checksum checksum = 8;
*
* @return The checksum.
*/
com.google.webrisk.v1beta1.ComputeThreatListDiffResponse.Checksum getChecksum();
/**
*
*
*
* The expected SHA256 hash of the client state; that is, of the sorted list
* of all hashes present in the database after applying the provided diff.
* If the client state doesn't match the expected state, the client must
* disregard this diff and retry later.
*
*
* .google.cloud.webrisk.v1beta1.ComputeThreatListDiffResponse.Checksum checksum = 8;
*/
com.google.webrisk.v1beta1.ComputeThreatListDiffResponse.ChecksumOrBuilder getChecksumOrBuilder();
/**
*
*
*
* The soonest the client should wait before issuing any diff
* request. Querying sooner is unlikely to produce a meaningful diff.
* Waiting longer is acceptable considering the use case.
* If this field is not set clients may update as soon as they want.
*
*
* .google.protobuf.Timestamp recommended_next_diff = 2;
*
* @return Whether the recommendedNextDiff field is set.
*/
boolean hasRecommendedNextDiff();
/**
*
*
*
* The soonest the client should wait before issuing any diff
* request. Querying sooner is unlikely to produce a meaningful diff.
* Waiting longer is acceptable considering the use case.
* If this field is not set clients may update as soon as they want.
*
*
* .google.protobuf.Timestamp recommended_next_diff = 2;
*
* @return The recommendedNextDiff.
*/
com.google.protobuf.Timestamp getRecommendedNextDiff();
/**
*
*
*
* The soonest the client should wait before issuing any diff
* request. Querying sooner is unlikely to produce a meaningful diff.
* Waiting longer is acceptable considering the use case.
* If this field is not set clients may update as soon as they want.
*
*
* .google.protobuf.Timestamp recommended_next_diff = 2;
*/
com.google.protobuf.TimestampOrBuilder getRecommendedNextDiffOrBuilder();
}