All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest Maven / Gradle / Ivy

/*
 * 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/visionai/v1/platform.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;

/**
 *
 *
 * 
 * Message for updating stream input to an Application.
 * 
* * Protobuf type {@code google.cloud.visionai.v1.UpdateApplicationStreamInputRequest} */ public final class UpdateApplicationStreamInputRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) UpdateApplicationStreamInputRequestOrBuilder { private static final long serialVersionUID = 0L; // Use UpdateApplicationStreamInputRequest.newBuilder() to construct. private UpdateApplicationStreamInputRequest( com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private UpdateApplicationStreamInputRequest() { name_ = ""; applicationStreamInputs_ = java.util.Collections.emptyList(); requestId_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new UpdateApplicationStreamInputRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.visionai.v1.PlatformProto .internal_static_google_cloud_visionai_v1_UpdateApplicationStreamInputRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.visionai.v1.PlatformProto .internal_static_google_cloud_visionai_v1_UpdateApplicationStreamInputRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.class, com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.Builder.class); } public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** * * *
   * Required. the name of the application to retrieve.
   * Format:
   * "projects/{project}/locations/{location}/applications/{application}"
   * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } } /** * * *
   * Required. the name of the application to retrieve.
   * Format:
   * "projects/{project}/locations/{location}/applications/{application}"
   * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int APPLICATION_STREAM_INPUTS_FIELD_NUMBER = 2; @SuppressWarnings("serial") private java.util.List applicationStreamInputs_; /** * * *
   * The stream inputs to update, the stream resource name is the key of each
   * StreamInput, and it must be unique within each application.
   * 
* * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ @java.lang.Override public java.util.List getApplicationStreamInputsList() { return applicationStreamInputs_; } /** * * *
   * The stream inputs to update, the stream resource name is the key of each
   * StreamInput, and it must be unique within each application.
   * 
* * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ @java.lang.Override public java.util.List getApplicationStreamInputsOrBuilderList() { return applicationStreamInputs_; } /** * * *
   * The stream inputs to update, the stream resource name is the key of each
   * StreamInput, and it must be unique within each application.
   * 
* * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ @java.lang.Override public int getApplicationStreamInputsCount() { return applicationStreamInputs_.size(); } /** * * *
   * The stream inputs to update, the stream resource name is the key of each
   * StreamInput, and it must be unique within each application.
   * 
* * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ @java.lang.Override public com.google.cloud.visionai.v1.ApplicationStreamInput getApplicationStreamInputs(int index) { return applicationStreamInputs_.get(index); } /** * * *
   * The stream inputs to update, the stream resource name is the key of each
   * StreamInput, and it must be unique within each application.
   * 
* * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ @java.lang.Override public com.google.cloud.visionai.v1.ApplicationStreamInputOrBuilder getApplicationStreamInputsOrBuilder(int index) { return applicationStreamInputs_.get(index); } public static final int REQUEST_ID_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object requestId_ = ""; /** * * *
   * Optional. An optional request ID to identify requests. Specify a unique
   * request ID so that if you must retry your request, the server will know to
   * ignore the request if it has already been completed. The server will
   * guarantee that for at least 60 minutes since the first request.
   *
   * For example, consider a situation where you make an initial request and
   * the request times out. If you make the request again with the same request
   * ID, the server can check if original operation with the same request ID
   * was received, and if so, will ignore the second request. This prevents
   * clients from accidentally creating duplicate commitments.
   *
   * The request ID must be a valid UUID with the exception that zero UUID is
   * not supported (00000000-0000-0000-0000-000000000000).
   * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @return The requestId. */ @java.lang.Override public java.lang.String getRequestId() { java.lang.Object ref = requestId_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); requestId_ = s; return s; } } /** * * *
   * Optional. An optional request ID to identify requests. Specify a unique
   * request ID so that if you must retry your request, the server will know to
   * ignore the request if it has already been completed. The server will
   * guarantee that for at least 60 minutes since the first request.
   *
   * For example, consider a situation where you make an initial request and
   * the request times out. If you make the request again with the same request
   * ID, the server can check if original operation with the same request ID
   * was received, and if so, will ignore the second request. This prevents
   * clients from accidentally creating duplicate commitments.
   *
   * The request ID must be a valid UUID with the exception that zero UUID is
   * not supported (00000000-0000-0000-0000-000000000000).
   * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for requestId. */ @java.lang.Override public com.google.protobuf.ByteString getRequestIdBytes() { java.lang.Object ref = requestId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); requestId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ALLOW_MISSING_FIELD_NUMBER = 4; private boolean allowMissing_ = false; /** * * *
   * If true, UpdateApplicationStreamInput will insert stream input to
   * application even if the target stream is not included in the application.
   * 
* * bool allow_missing = 4; * * @return The allowMissing. */ @java.lang.Override public boolean getAllowMissing() { return allowMissing_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } for (int i = 0; i < applicationStreamInputs_.size(); i++) { output.writeMessage(2, applicationStreamInputs_.get(i)); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(requestId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, requestId_); } if (allowMissing_ != false) { output.writeBool(4, allowMissing_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } for (int i = 0; i < applicationStreamInputs_.size(); i++) { size += com.google.protobuf.CodedOutputStream.computeMessageSize( 2, applicationStreamInputs_.get(i)); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(requestId_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, requestId_); } if (allowMissing_ != false) { size += com.google.protobuf.CodedOutputStream.computeBoolSize(4, allowMissing_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest)) { return super.equals(obj); } com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest other = (com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) obj; if (!getName().equals(other.getName())) return false; if (!getApplicationStreamInputsList().equals(other.getApplicationStreamInputsList())) return false; if (!getRequestId().equals(other.getRequestId())) return false; if (getAllowMissing() != other.getAllowMissing()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); if (getApplicationStreamInputsCount() > 0) { hash = (37 * hash) + APPLICATION_STREAM_INPUTS_FIELD_NUMBER; hash = (53 * hash) + getApplicationStreamInputsList().hashCode(); } hash = (37 * hash) + REQUEST_ID_FIELD_NUMBER; hash = (53 * hash) + getRequestId().hashCode(); hash = (37 * hash) + ALLOW_MISSING_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getAllowMissing()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException( PARSER, input, extensionRegistry); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( PARSER, input, extensionRegistry); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException( PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * * *
   * Message for updating stream input to an Application.
   * 
* * Protobuf type {@code google.cloud.visionai.v1.UpdateApplicationStreamInputRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.visionai.v1.PlatformProto .internal_static_google_cloud_visionai_v1_UpdateApplicationStreamInputRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.visionai.v1.PlatformProto .internal_static_google_cloud_visionai_v1_UpdateApplicationStreamInputRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.class, com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.Builder.class); } // Construct using com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = ""; if (applicationStreamInputsBuilder_ == null) { applicationStreamInputs_ = java.util.Collections.emptyList(); } else { applicationStreamInputs_ = null; applicationStreamInputsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); requestId_ = ""; allowMissing_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.visionai.v1.PlatformProto .internal_static_google_cloud_visionai_v1_UpdateApplicationStreamInputRequest_descriptor; } @java.lang.Override public com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest getDefaultInstanceForType() { return com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.getDefaultInstance(); } @java.lang.Override public com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest build() { com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest buildPartial() { com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest result = new com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest result) { if (applicationStreamInputsBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0)) { applicationStreamInputs_ = java.util.Collections.unmodifiableList(applicationStreamInputs_); bitField0_ = (bitField0_ & ~0x00000002); } result.applicationStreamInputs_ = applicationStreamInputs_; } else { result.applicationStreamInputs_ = applicationStreamInputsBuilder_.build(); } } private void buildPartial0( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.requestId_ = requestId_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.allowMissing_ = allowMissing_; } } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) { return mergeFrom((com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom( com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest other) { if (other == com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000001; onChanged(); } if (applicationStreamInputsBuilder_ == null) { if (!other.applicationStreamInputs_.isEmpty()) { if (applicationStreamInputs_.isEmpty()) { applicationStreamInputs_ = other.applicationStreamInputs_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.addAll(other.applicationStreamInputs_); } onChanged(); } } else { if (!other.applicationStreamInputs_.isEmpty()) { if (applicationStreamInputsBuilder_.isEmpty()) { applicationStreamInputsBuilder_.dispose(); applicationStreamInputsBuilder_ = null; applicationStreamInputs_ = other.applicationStreamInputs_; bitField0_ = (bitField0_ & ~0x00000002); applicationStreamInputsBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getApplicationStreamInputsFieldBuilder() : null; } else { applicationStreamInputsBuilder_.addAllMessages(other.applicationStreamInputs_); } } } if (!other.getRequestId().isEmpty()) { requestId_ = other.requestId_; bitField0_ |= 0x00000004; onChanged(); } if (other.getAllowMissing() != false) { setAllowMissing(other.getAllowMissing()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { name_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { com.google.cloud.visionai.v1.ApplicationStreamInput m = input.readMessage( com.google.cloud.visionai.v1.ApplicationStreamInput.parser(), extensionRegistry); if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.add(m); } else { applicationStreamInputsBuilder_.addMessage(m); } break; } // case 18 case 26: { requestId_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 32: { allowMissing_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object name_ = ""; /** * * *
     * Required. the name of the application to retrieve.
     * Format:
     * "projects/{project}/locations/{location}/applications/{application}"
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. the name of the application to retrieve.
     * Format:
     * "projects/{project}/locations/{location}/applications/{application}"
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. the name of the application to retrieve.
     * Format:
     * "projects/{project}/locations/{location}/applications/{application}"
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The name to set. * @return This builder for chaining. */ public Builder setName(java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Required. the name of the application to retrieve.
     * Format:
     * "projects/{project}/locations/{location}/applications/{application}"
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Required. the name of the application to retrieve.
     * Format:
     * "projects/{project}/locations/{location}/applications/{application}"
     * 
* * * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.util.List applicationStreamInputs_ = java.util.Collections.emptyList(); private void ensureApplicationStreamInputsIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { applicationStreamInputs_ = new java.util.ArrayList( applicationStreamInputs_); bitField0_ |= 0x00000002; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.visionai.v1.ApplicationStreamInput, com.google.cloud.visionai.v1.ApplicationStreamInput.Builder, com.google.cloud.visionai.v1.ApplicationStreamInputOrBuilder> applicationStreamInputsBuilder_; /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public java.util.List getApplicationStreamInputsList() { if (applicationStreamInputsBuilder_ == null) { return java.util.Collections.unmodifiableList(applicationStreamInputs_); } else { return applicationStreamInputsBuilder_.getMessageList(); } } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public int getApplicationStreamInputsCount() { if (applicationStreamInputsBuilder_ == null) { return applicationStreamInputs_.size(); } else { return applicationStreamInputsBuilder_.getCount(); } } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public com.google.cloud.visionai.v1.ApplicationStreamInput getApplicationStreamInputs( int index) { if (applicationStreamInputsBuilder_ == null) { return applicationStreamInputs_.get(index); } else { return applicationStreamInputsBuilder_.getMessage(index); } } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder setApplicationStreamInputs( int index, com.google.cloud.visionai.v1.ApplicationStreamInput value) { if (applicationStreamInputsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.set(index, value); onChanged(); } else { applicationStreamInputsBuilder_.setMessage(index, value); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder setApplicationStreamInputs( int index, com.google.cloud.visionai.v1.ApplicationStreamInput.Builder builderForValue) { if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.set(index, builderForValue.build()); onChanged(); } else { applicationStreamInputsBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder addApplicationStreamInputs( com.google.cloud.visionai.v1.ApplicationStreamInput value) { if (applicationStreamInputsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.add(value); onChanged(); } else { applicationStreamInputsBuilder_.addMessage(value); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder addApplicationStreamInputs( int index, com.google.cloud.visionai.v1.ApplicationStreamInput value) { if (applicationStreamInputsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.add(index, value); onChanged(); } else { applicationStreamInputsBuilder_.addMessage(index, value); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder addApplicationStreamInputs( com.google.cloud.visionai.v1.ApplicationStreamInput.Builder builderForValue) { if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.add(builderForValue.build()); onChanged(); } else { applicationStreamInputsBuilder_.addMessage(builderForValue.build()); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder addApplicationStreamInputs( int index, com.google.cloud.visionai.v1.ApplicationStreamInput.Builder builderForValue) { if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.add(index, builderForValue.build()); onChanged(); } else { applicationStreamInputsBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder addAllApplicationStreamInputs( java.lang.Iterable values) { if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, applicationStreamInputs_); onChanged(); } else { applicationStreamInputsBuilder_.addAllMessages(values); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder clearApplicationStreamInputs() { if (applicationStreamInputsBuilder_ == null) { applicationStreamInputs_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); } else { applicationStreamInputsBuilder_.clear(); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public Builder removeApplicationStreamInputs(int index) { if (applicationStreamInputsBuilder_ == null) { ensureApplicationStreamInputsIsMutable(); applicationStreamInputs_.remove(index); onChanged(); } else { applicationStreamInputsBuilder_.remove(index); } return this; } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public com.google.cloud.visionai.v1.ApplicationStreamInput.Builder getApplicationStreamInputsBuilder(int index) { return getApplicationStreamInputsFieldBuilder().getBuilder(index); } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public com.google.cloud.visionai.v1.ApplicationStreamInputOrBuilder getApplicationStreamInputsOrBuilder(int index) { if (applicationStreamInputsBuilder_ == null) { return applicationStreamInputs_.get(index); } else { return applicationStreamInputsBuilder_.getMessageOrBuilder(index); } } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public java.util.List getApplicationStreamInputsOrBuilderList() { if (applicationStreamInputsBuilder_ != null) { return applicationStreamInputsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(applicationStreamInputs_); } } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public com.google.cloud.visionai.v1.ApplicationStreamInput.Builder addApplicationStreamInputsBuilder() { return getApplicationStreamInputsFieldBuilder() .addBuilder(com.google.cloud.visionai.v1.ApplicationStreamInput.getDefaultInstance()); } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public com.google.cloud.visionai.v1.ApplicationStreamInput.Builder addApplicationStreamInputsBuilder(int index) { return getApplicationStreamInputsFieldBuilder() .addBuilder( index, com.google.cloud.visionai.v1.ApplicationStreamInput.getDefaultInstance()); } /** * * *
     * The stream inputs to update, the stream resource name is the key of each
     * StreamInput, and it must be unique within each application.
     * 
* * * repeated .google.cloud.visionai.v1.ApplicationStreamInput application_stream_inputs = 2; * */ public java.util.List getApplicationStreamInputsBuilderList() { return getApplicationStreamInputsFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.visionai.v1.ApplicationStreamInput, com.google.cloud.visionai.v1.ApplicationStreamInput.Builder, com.google.cloud.visionai.v1.ApplicationStreamInputOrBuilder> getApplicationStreamInputsFieldBuilder() { if (applicationStreamInputsBuilder_ == null) { applicationStreamInputsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.visionai.v1.ApplicationStreamInput, com.google.cloud.visionai.v1.ApplicationStreamInput.Builder, com.google.cloud.visionai.v1.ApplicationStreamInputOrBuilder>( applicationStreamInputs_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); applicationStreamInputs_ = null; } return applicationStreamInputsBuilder_; } private java.lang.Object requestId_ = ""; /** * * *
     * Optional. An optional request ID to identify requests. Specify a unique
     * request ID so that if you must retry your request, the server will know to
     * ignore the request if it has already been completed. The server will
     * guarantee that for at least 60 minutes since the first request.
     *
     * For example, consider a situation where you make an initial request and
     * the request times out. If you make the request again with the same request
     * ID, the server can check if original operation with the same request ID
     * was received, and if so, will ignore the second request. This prevents
     * clients from accidentally creating duplicate commitments.
     *
     * The request ID must be a valid UUID with the exception that zero UUID is
     * not supported (00000000-0000-0000-0000-000000000000).
     * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @return The requestId. */ public java.lang.String getRequestId() { java.lang.Object ref = requestId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); requestId_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Optional. An optional request ID to identify requests. Specify a unique
     * request ID so that if you must retry your request, the server will know to
     * ignore the request if it has already been completed. The server will
     * guarantee that for at least 60 minutes since the first request.
     *
     * For example, consider a situation where you make an initial request and
     * the request times out. If you make the request again with the same request
     * ID, the server can check if original operation with the same request ID
     * was received, and if so, will ignore the second request. This prevents
     * clients from accidentally creating duplicate commitments.
     *
     * The request ID must be a valid UUID with the exception that zero UUID is
     * not supported (00000000-0000-0000-0000-000000000000).
     * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for requestId. */ public com.google.protobuf.ByteString getRequestIdBytes() { java.lang.Object ref = requestId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); requestId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Optional. An optional request ID to identify requests. Specify a unique
     * request ID so that if you must retry your request, the server will know to
     * ignore the request if it has already been completed. The server will
     * guarantee that for at least 60 minutes since the first request.
     *
     * For example, consider a situation where you make an initial request and
     * the request times out. If you make the request again with the same request
     * ID, the server can check if original operation with the same request ID
     * was received, and if so, will ignore the second request. This prevents
     * clients from accidentally creating duplicate commitments.
     *
     * The request ID must be a valid UUID with the exception that zero UUID is
     * not supported (00000000-0000-0000-0000-000000000000).
     * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The requestId to set. * @return This builder for chaining. */ public Builder setRequestId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } requestId_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Optional. An optional request ID to identify requests. Specify a unique
     * request ID so that if you must retry your request, the server will know to
     * ignore the request if it has already been completed. The server will
     * guarantee that for at least 60 minutes since the first request.
     *
     * For example, consider a situation where you make an initial request and
     * the request times out. If you make the request again with the same request
     * ID, the server can check if original operation with the same request ID
     * was received, and if so, will ignore the second request. This prevents
     * clients from accidentally creating duplicate commitments.
     *
     * The request ID must be a valid UUID with the exception that zero UUID is
     * not supported (00000000-0000-0000-0000-000000000000).
     * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @return This builder for chaining. */ public Builder clearRequestId() { requestId_ = getDefaultInstance().getRequestId(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Optional. An optional request ID to identify requests. Specify a unique
     * request ID so that if you must retry your request, the server will know to
     * ignore the request if it has already been completed. The server will
     * guarantee that for at least 60 minutes since the first request.
     *
     * For example, consider a situation where you make an initial request and
     * the request times out. If you make the request again with the same request
     * ID, the server can check if original operation with the same request ID
     * was received, and if so, will ignore the second request. This prevents
     * clients from accidentally creating duplicate commitments.
     *
     * The request ID must be a valid UUID with the exception that zero UUID is
     * not supported (00000000-0000-0000-0000-000000000000).
     * 
* * string request_id = 3 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The bytes for requestId to set. * @return This builder for chaining. */ public Builder setRequestIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); requestId_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private boolean allowMissing_; /** * * *
     * If true, UpdateApplicationStreamInput will insert stream input to
     * application even if the target stream is not included in the application.
     * 
* * bool allow_missing = 4; * * @return The allowMissing. */ @java.lang.Override public boolean getAllowMissing() { return allowMissing_; } /** * * *
     * If true, UpdateApplicationStreamInput will insert stream input to
     * application even if the target stream is not included in the application.
     * 
* * bool allow_missing = 4; * * @param value The allowMissing to set. * @return This builder for chaining. */ public Builder setAllowMissing(boolean value) { allowMissing_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * If true, UpdateApplicationStreamInput will insert stream input to
     * application even if the target stream is not included in the application.
     * 
* * bool allow_missing = 4; * * @return This builder for chaining. */ public Builder clearAllowMissing() { bitField0_ = (bitField0_ & ~0x00000008); allowMissing_ = false; 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.cloud.visionai.v1.UpdateApplicationStreamInputRequest) } // @@protoc_insertion_point(class_scope:google.cloud.visionai.v1.UpdateApplicationStreamInputRequest) private static final com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest(); } public static com.google.cloud.visionai.v1.UpdateApplicationStreamInputRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public UpdateApplicationStreamInputRequest 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.cloud.visionai.v1.UpdateApplicationStreamInputRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy