Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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/pubsub/v1/pubsub.proto
// Protobuf Java Version: 3.25.5
package com.google.pubsub.v1;
/**
*
*
*
* Request for the `ListTopicSnapshots` method.
*
*
* Protobuf type {@code google.pubsub.v1.ListTopicSnapshotsRequest}
*/
public final class ListTopicSnapshotsRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.pubsub.v1.ListTopicSnapshotsRequest)
ListTopicSnapshotsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use ListTopicSnapshotsRequest.newBuilder() to construct.
private ListTopicSnapshotsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ListTopicSnapshotsRequest() {
topic_ = "";
pageToken_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ListTopicSnapshotsRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_ListTopicSnapshotsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_ListTopicSnapshotsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.ListTopicSnapshotsRequest.class,
com.google.pubsub.v1.ListTopicSnapshotsRequest.Builder.class);
}
public static final int TOPIC_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object topic_ = "";
/**
*
*
*
* Required. The name of the topic that snapshots are attached to.
* Format is `projects/{project}/topics/{topic}`.
*
* Required. The name of the topic that snapshots are attached to.
* Format is `projects/{project}/topics/{topic}`.
*
*
*
* string topic = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for topic.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTopicBytes() {
java.lang.Object ref = topic_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
topic_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAGE_SIZE_FIELD_NUMBER = 2;
private int pageSize_ = 0;
/**
*
*
*
* Optional. Maximum number of snapshot names to return.
*
*
* int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@java.lang.Override
public int getPageSize() {
return pageSize_;
}
public static final int PAGE_TOKEN_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
/**
*
*
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
*
* string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
*/
public Builder setPageToken(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pageToken_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
* Optional. The value returned by the last `ListTopicSnapshotsResponse`;
* indicates that this is a continuation of a prior `ListTopicSnapshots` call,
* and that the system should return the next page of data.
*
*
* string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
*/
public Builder setPageTokenBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pageToken_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.pubsub.v1.ListTopicSnapshotsRequest)
}
// @@protoc_insertion_point(class_scope:google.pubsub.v1.ListTopicSnapshotsRequest)
private static final com.google.pubsub.v1.ListTopicSnapshotsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.pubsub.v1.ListTopicSnapshotsRequest();
}
public static com.google.pubsub.v1.ListTopicSnapshotsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ListTopicSnapshotsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.pubsub.v1.ListTopicSnapshotsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}