com.google.cloudbuild.v1.PubsubConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-build-v1 Show documentation
Show all versions of proto-google-cloud-build-v1 Show documentation
PROTO library for proto-google-cloud-build-v1
The newest version!
/*
* 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/devtools/cloudbuild/v1/cloudbuild.proto
// Protobuf Java Version: 3.25.4
package com.google.cloudbuild.v1;
public interface PubsubConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.PubsubConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. Name of the subscription. Format is
* `projects/{project}/subscriptions/{subscription}`.
*
*
*
* string subscription = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
*
*
* @return The subscription.
*/
java.lang.String getSubscription();
/**
*
*
*
* Output only. Name of the subscription. Format is
* `projects/{project}/subscriptions/{subscription}`.
*
*
*
* string subscription = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for subscription.
*/
com.google.protobuf.ByteString getSubscriptionBytes();
/**
*
*
*
* The name of the topic from which this subscription is receiving messages.
* Format is `projects/{project}/topics/{topic}`.
*
*
* string topic = 2 [(.google.api.resource_reference) = { ... }
*
* @return The topic.
*/
java.lang.String getTopic();
/**
*
*
*
* The name of the topic from which this subscription is receiving messages.
* Format is `projects/{project}/topics/{topic}`.
*
*
* string topic = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for topic.
*/
com.google.protobuf.ByteString getTopicBytes();
/**
*
*
*
* Service account that will make the push request.
*
*
* string service_account_email = 3 [(.google.api.resource_reference) = { ... }
*
* @return The serviceAccountEmail.
*/
java.lang.String getServiceAccountEmail();
/**
*
*
*
* Service account that will make the push request.
*
*
* string service_account_email = 3 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for serviceAccountEmail.
*/
com.google.protobuf.ByteString getServiceAccountEmailBytes();
/**
*
*
*
* Potential issues with the underlying Pub/Sub subscription configuration.
* Only populated on get requests.
*
*
* .google.devtools.cloudbuild.v1.PubsubConfig.State state = 4;
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* Potential issues with the underlying Pub/Sub subscription configuration.
* Only populated on get requests.
*
*
* .google.devtools.cloudbuild.v1.PubsubConfig.State state = 4;
*
* @return The state.
*/
com.google.cloudbuild.v1.PubsubConfig.State getState();
}