implements
// @@protoc_insertion_point(builder_implements:clarifai.api.InstalledModuleVersion)
com.clarifai.grpc.api.InstalledModuleVersionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_InstalledModuleVersion_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_InstalledModuleVersion_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.InstalledModuleVersion.class, com.clarifai.grpc.api.InstalledModuleVersion.Builder.class);
}
// Construct using com.clarifai.grpc.api.InstalledModuleVersion.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
id_ = "";
if (moduleVersionBuilder_ == null) {
moduleVersion_ = null;
} else {
moduleVersion_ = null;
moduleVersionBuilder_ = null;
}
appId_ = "";
userId_ = "";
if (createdAtBuilder_ == null) {
createdAt_ = null;
} else {
createdAt_ = null;
createdAtBuilder_ = null;
}
if (modifiedAtBuilder_ == null) {
modifiedAt_ = null;
} else {
modifiedAt_ = null;
modifiedAtBuilder_ = null;
}
deployUrl_ = "";
if (visibilityBuilder_ == null) {
visibility_ = null;
} else {
visibility_ = null;
visibilityBuilder_ = null;
}
keyId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_InstalledModuleVersion_descriptor;
}
@java.lang.Override
public com.clarifai.grpc.api.InstalledModuleVersion getDefaultInstanceForType() {
return com.clarifai.grpc.api.InstalledModuleVersion.getDefaultInstance();
}
@java.lang.Override
public com.clarifai.grpc.api.InstalledModuleVersion build() {
com.clarifai.grpc.api.InstalledModuleVersion result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clarifai.grpc.api.InstalledModuleVersion buildPartial() {
com.clarifai.grpc.api.InstalledModuleVersion result = new com.clarifai.grpc.api.InstalledModuleVersion(this);
result.id_ = id_;
if (moduleVersionBuilder_ == null) {
result.moduleVersion_ = moduleVersion_;
} else {
result.moduleVersion_ = moduleVersionBuilder_.build();
}
result.appId_ = appId_;
result.userId_ = userId_;
if (createdAtBuilder_ == null) {
result.createdAt_ = createdAt_;
} else {
result.createdAt_ = createdAtBuilder_.build();
}
if (modifiedAtBuilder_ == null) {
result.modifiedAt_ = modifiedAt_;
} else {
result.modifiedAt_ = modifiedAtBuilder_.build();
}
result.deployUrl_ = deployUrl_;
if (visibilityBuilder_ == null) {
result.visibility_ = visibility_;
} else {
result.visibility_ = visibilityBuilder_.build();
}
result.keyId_ = keyId_;
onBuilt();
return result;
}
@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.clarifai.grpc.api.InstalledModuleVersion) {
return mergeFrom((com.clarifai.grpc.api.InstalledModuleVersion)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clarifai.grpc.api.InstalledModuleVersion other) {
if (other == com.clarifai.grpc.api.InstalledModuleVersion.getDefaultInstance()) return this;
if (!other.getId().isEmpty()) {
id_ = other.id_;
onChanged();
}
if (other.hasModuleVersion()) {
mergeModuleVersion(other.getModuleVersion());
}
if (!other.getAppId().isEmpty()) {
appId_ = other.appId_;
onChanged();
}
if (!other.getUserId().isEmpty()) {
userId_ = other.userId_;
onChanged();
}
if (other.hasCreatedAt()) {
mergeCreatedAt(other.getCreatedAt());
}
if (other.hasModifiedAt()) {
mergeModifiedAt(other.getModifiedAt());
}
if (!other.getDeployUrl().isEmpty()) {
deployUrl_ = other.deployUrl_;
onChanged();
}
if (other.hasVisibility()) {
mergeVisibility(other.getVisibility());
}
if (!other.getKeyId().isEmpty()) {
keyId_ = other.keyId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.clarifai.grpc.api.InstalledModuleVersion parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clarifai.grpc.api.InstalledModuleVersion) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object id_ = "";
/**
*
* A unique id for this install. This will be used in the browser url.
*
*
* string id = 1;
* @return The id.
*/
public java.lang.String getId() {
java.lang.Object ref = id_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
id_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A unique id for this install. This will be used in the browser url.
*
*
* string id = 1;
* @return The bytes for id.
*/
public com.google.protobuf.ByteString
getIdBytes() {
java.lang.Object ref = id_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
id_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A unique id for this install. This will be used in the browser url.
*
*
* string id = 1;
* @param value The id to set.
* @return This builder for chaining.
*/
public Builder setId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
onChanged();
return this;
}
/**
*
* A unique id for this install. This will be used in the browser url.
*
*
* string id = 1;
* @return This builder for chaining.
*/
public Builder clearId() {
id_ = getDefaultInstance().getId();
onChanged();
return this;
}
/**
*
* A unique id for this install. This will be used in the browser url.
*
*
* string id = 1;
* @param value The bytes for id to set.
* @return This builder for chaining.
*/
public Builder setIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
id_ = value;
onChanged();
return this;
}
private com.clarifai.grpc.api.ModuleVersion moduleVersion_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.ModuleVersion, com.clarifai.grpc.api.ModuleVersion.Builder, com.clarifai.grpc.api.ModuleVersionOrBuilder> moduleVersionBuilder_;
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
* @return Whether the moduleVersion field is set.
*/
public boolean hasModuleVersion() {
return moduleVersionBuilder_ != null || moduleVersion_ != null;
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
* @return The moduleVersion.
*/
public com.clarifai.grpc.api.ModuleVersion getModuleVersion() {
if (moduleVersionBuilder_ == null) {
return moduleVersion_ == null ? com.clarifai.grpc.api.ModuleVersion.getDefaultInstance() : moduleVersion_;
} else {
return moduleVersionBuilder_.getMessage();
}
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public Builder setModuleVersion(com.clarifai.grpc.api.ModuleVersion value) {
if (moduleVersionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
moduleVersion_ = value;
onChanged();
} else {
moduleVersionBuilder_.setMessage(value);
}
return this;
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public Builder setModuleVersion(
com.clarifai.grpc.api.ModuleVersion.Builder builderForValue) {
if (moduleVersionBuilder_ == null) {
moduleVersion_ = builderForValue.build();
onChanged();
} else {
moduleVersionBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public Builder mergeModuleVersion(com.clarifai.grpc.api.ModuleVersion value) {
if (moduleVersionBuilder_ == null) {
if (moduleVersion_ != null) {
moduleVersion_ =
com.clarifai.grpc.api.ModuleVersion.newBuilder(moduleVersion_).mergeFrom(value).buildPartial();
} else {
moduleVersion_ = value;
}
onChanged();
} else {
moduleVersionBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public Builder clearModuleVersion() {
if (moduleVersionBuilder_ == null) {
moduleVersion_ = null;
onChanged();
} else {
moduleVersion_ = null;
moduleVersionBuilder_ = null;
}
return this;
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public com.clarifai.grpc.api.ModuleVersion.Builder getModuleVersionBuilder() {
onChanged();
return getModuleVersionFieldBuilder().getBuilder();
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
public com.clarifai.grpc.api.ModuleVersionOrBuilder getModuleVersionOrBuilder() {
if (moduleVersionBuilder_ != null) {
return moduleVersionBuilder_.getMessageOrBuilder();
} else {
return moduleVersion_ == null ?
com.clarifai.grpc.api.ModuleVersion.getDefaultInstance() : moduleVersion_;
}
}
/**
*
* The installed module version provided here so that we users don't need to do an additional
* fetch. When creating a new InstalledModuleVersion you should provide the:
* module_version.user_id
* module_version.app_id
* module_version.module_id
* module_version.id
* in order to uniquely define which module version.
*
*
* .clarifai.api.ModuleVersion module_version = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.ModuleVersion, com.clarifai.grpc.api.ModuleVersion.Builder, com.clarifai.grpc.api.ModuleVersionOrBuilder>
getModuleVersionFieldBuilder() {
if (moduleVersionBuilder_ == null) {
moduleVersionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.ModuleVersion, com.clarifai.grpc.api.ModuleVersion.Builder, com.clarifai.grpc.api.ModuleVersionOrBuilder>(
getModuleVersion(),
getParentForChildren(),
isClean());
moduleVersion_ = null;
}
return moduleVersionBuilder_;
}
private java.lang.Object appId_ = "";
/**
*
* The app_id the ModuleVersion is installed into (not necessary where the ModuleVersion was
* created). This doesn't have to be provided in requests to install, but will be returned in
* responses.
*
*
* string app_id = 3;
* @return The appId.
*/
public java.lang.String getAppId() {
java.lang.Object ref = appId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
appId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The app_id the ModuleVersion is installed into (not necessary where the ModuleVersion was
* created). This doesn't have to be provided in requests to install, but will be returned in
* responses.
*
*
* string app_id = 3;
* @return The bytes for appId.
*/
public com.google.protobuf.ByteString
getAppIdBytes() {
java.lang.Object ref = appId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
appId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The app_id the ModuleVersion is installed into (not necessary where the ModuleVersion was
* created). This doesn't have to be provided in requests to install, but will be returned in
* responses.
*
*
* string app_id = 3;
* @param value The appId to set.
* @return This builder for chaining.
*/
public Builder setAppId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
appId_ = value;
onChanged();
return this;
}
/**
*
* The app_id the ModuleVersion is installed into (not necessary where the ModuleVersion was
* created). This doesn't have to be provided in requests to install, but will be returned in
* responses.
*
*
* string app_id = 3;
* @return This builder for chaining.
*/
public Builder clearAppId() {
appId_ = getDefaultInstance().getAppId();
onChanged();
return this;
}
/**
*
* The app_id the ModuleVersion is installed into (not necessary where the ModuleVersion was
* created). This doesn't have to be provided in requests to install, but will be returned in
* responses.
*
*
* string app_id = 3;
* @param value The bytes for appId to set.
* @return This builder for chaining.
*/
public Builder setAppIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
appId_ = value;
onChanged();
return this;
}
private java.lang.Object userId_ = "";
/**
*
* The user that the app belongs to where the ModuleVersion is installed into (not necessary where
* the ModuleVersion was created). This doesn't have to be provided in requests to install, but
* will be returned in responses.
*
*
* string user_id = 4;
* @return The userId.
*/
public java.lang.String getUserId() {
java.lang.Object ref = userId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
userId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The user that the app belongs to where the ModuleVersion is installed into (not necessary where
* the ModuleVersion was created). This doesn't have to be provided in requests to install, but
* will be returned in responses.
*
*
* string user_id = 4;
* @return The bytes for userId.
*/
public com.google.protobuf.ByteString
getUserIdBytes() {
java.lang.Object ref = userId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The user that the app belongs to where the ModuleVersion is installed into (not necessary where
* the ModuleVersion was created). This doesn't have to be provided in requests to install, but
* will be returned in responses.
*
*
* string user_id = 4;
* @param value The userId to set.
* @return This builder for chaining.
*/
public Builder setUserId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
userId_ = value;
onChanged();
return this;
}
/**
*
* The user that the app belongs to where the ModuleVersion is installed into (not necessary where
* the ModuleVersion was created). This doesn't have to be provided in requests to install, but
* will be returned in responses.
*
*
* string user_id = 4;
* @return This builder for chaining.
*/
public Builder clearUserId() {
userId_ = getDefaultInstance().getUserId();
onChanged();
return this;
}
/**
*
* The user that the app belongs to where the ModuleVersion is installed into (not necessary where
* the ModuleVersion was created). This doesn't have to be provided in requests to install, but
* will be returned in responses.
*
*
* string user_id = 4;
* @param value The bytes for userId to set.
* @return This builder for chaining.
*/
public Builder setUserIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
userId_ = value;
onChanged();
return this;
}
private com.google.protobuf.Timestamp createdAt_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> createdAtBuilder_;
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
* @return Whether the createdAt field is set.
*/
public boolean hasCreatedAt() {
return createdAtBuilder_ != null || createdAt_ != null;
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
* @return The createdAt.
*/
public com.google.protobuf.Timestamp getCreatedAt() {
if (createdAtBuilder_ == null) {
return createdAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : createdAt_;
} else {
return createdAtBuilder_.getMessage();
}
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public Builder setCreatedAt(com.google.protobuf.Timestamp value) {
if (createdAtBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
createdAt_ = value;
onChanged();
} else {
createdAtBuilder_.setMessage(value);
}
return this;
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public Builder setCreatedAt(
com.google.protobuf.Timestamp.Builder builderForValue) {
if (createdAtBuilder_ == null) {
createdAt_ = builderForValue.build();
onChanged();
} else {
createdAtBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public Builder mergeCreatedAt(com.google.protobuf.Timestamp value) {
if (createdAtBuilder_ == null) {
if (createdAt_ != null) {
createdAt_ =
com.google.protobuf.Timestamp.newBuilder(createdAt_).mergeFrom(value).buildPartial();
} else {
createdAt_ = value;
}
onChanged();
} else {
createdAtBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public Builder clearCreatedAt() {
if (createdAtBuilder_ == null) {
createdAt_ = null;
onChanged();
} else {
createdAt_ = null;
createdAtBuilder_ = null;
}
return this;
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public com.google.protobuf.Timestamp.Builder getCreatedAtBuilder() {
onChanged();
return getCreatedAtFieldBuilder().getBuilder();
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
public com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder() {
if (createdAtBuilder_ != null) {
return createdAtBuilder_.getMessageOrBuilder();
} else {
return createdAt_ == null ?
com.google.protobuf.Timestamp.getDefaultInstance() : createdAt_;
}
}
/**
*
* When the install was created.
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>
getCreatedAtFieldBuilder() {
if (createdAtBuilder_ == null) {
createdAtBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>(
getCreatedAt(),
getParentForChildren(),
isClean());
createdAt_ = null;
}
return createdAtBuilder_;
}
private com.google.protobuf.Timestamp modifiedAt_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> modifiedAtBuilder_;
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
* @return Whether the modifiedAt field is set.
*/
public boolean hasModifiedAt() {
return modifiedAtBuilder_ != null || modifiedAt_ != null;
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
* @return The modifiedAt.
*/
public com.google.protobuf.Timestamp getModifiedAt() {
if (modifiedAtBuilder_ == null) {
return modifiedAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : modifiedAt_;
} else {
return modifiedAtBuilder_.getMessage();
}
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public Builder setModifiedAt(com.google.protobuf.Timestamp value) {
if (modifiedAtBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
modifiedAt_ = value;
onChanged();
} else {
modifiedAtBuilder_.setMessage(value);
}
return this;
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public Builder setModifiedAt(
com.google.protobuf.Timestamp.Builder builderForValue) {
if (modifiedAtBuilder_ == null) {
modifiedAt_ = builderForValue.build();
onChanged();
} else {
modifiedAtBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public Builder mergeModifiedAt(com.google.protobuf.Timestamp value) {
if (modifiedAtBuilder_ == null) {
if (modifiedAt_ != null) {
modifiedAt_ =
com.google.protobuf.Timestamp.newBuilder(modifiedAt_).mergeFrom(value).buildPartial();
} else {
modifiedAt_ = value;
}
onChanged();
} else {
modifiedAtBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public Builder clearModifiedAt() {
if (modifiedAtBuilder_ == null) {
modifiedAt_ = null;
onChanged();
} else {
modifiedAt_ = null;
modifiedAtBuilder_ = null;
}
return this;
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public com.google.protobuf.Timestamp.Builder getModifiedAtBuilder() {
onChanged();
return getModifiedAtFieldBuilder().getBuilder();
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
public com.google.protobuf.TimestampOrBuilder getModifiedAtOrBuilder() {
if (modifiedAtBuilder_ != null) {
return modifiedAtBuilder_.getMessageOrBuilder();
} else {
return modifiedAt_ == null ?
com.google.protobuf.Timestamp.getDefaultInstance() : modifiedAt_;
}
}
/**
*
* When the install was last modified.
*
*
* .google.protobuf.Timestamp modified_at = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>
getModifiedAtFieldBuilder() {
if (modifiedAtBuilder_ == null) {
modifiedAtBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>(
getModifiedAt(),
getParentForChildren(),
isClean());
modifiedAt_ = null;
}
return modifiedAtBuilder_;
}
private java.lang.Object deployUrl_ = "";
/**
*
* The URL of where this app module version is deployed.
* If you provide this deploy_url when creating the install then it will
* be treated as a pre-deployed module. You can only use a pre-deployed module
* in when installing to an app_id that you own as the creator of the module.
* If you want to install someone elses module or to rely on Clarifai deploying
* your module for you, leave deploy_url empty when creating the install.
* If it is left empty, then deployment will occur when this module version is
* installed into an app using the git_commit_url of the ModuleVersion.
*
*
* string deploy_url = 7;
* @return The deployUrl.
*/
public java.lang.String getDeployUrl() {
java.lang.Object ref = deployUrl_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
deployUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The URL of where this app module version is deployed.
* If you provide this deploy_url when creating the install then it will
* be treated as a pre-deployed module. You can only use a pre-deployed module
* in when installing to an app_id that you own as the creator of the module.
* If you want to install someone elses module or to rely on Clarifai deploying
* your module for you, leave deploy_url empty when creating the install.
* If it is left empty, then deployment will occur when this module version is
* installed into an app using the git_commit_url of the ModuleVersion.
*
*
* string deploy_url = 7;
* @return The bytes for deployUrl.
*/
public com.google.protobuf.ByteString
getDeployUrlBytes() {
java.lang.Object ref = deployUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
deployUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The URL of where this app module version is deployed.
* If you provide this deploy_url when creating the install then it will
* be treated as a pre-deployed module. You can only use a pre-deployed module
* in when installing to an app_id that you own as the creator of the module.
* If you want to install someone elses module or to rely on Clarifai deploying
* your module for you, leave deploy_url empty when creating the install.
* If it is left empty, then deployment will occur when this module version is
* installed into an app using the git_commit_url of the ModuleVersion.
*
*
* string deploy_url = 7;
* @param value The deployUrl to set.
* @return This builder for chaining.
*/
public Builder setDeployUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
deployUrl_ = value;
onChanged();
return this;
}
/**
*
* The URL of where this app module version is deployed.
* If you provide this deploy_url when creating the install then it will
* be treated as a pre-deployed module. You can only use a pre-deployed module
* in when installing to an app_id that you own as the creator of the module.
* If you want to install someone elses module or to rely on Clarifai deploying
* your module for you, leave deploy_url empty when creating the install.
* If it is left empty, then deployment will occur when this module version is
* installed into an app using the git_commit_url of the ModuleVersion.
*
*
* string deploy_url = 7;
* @return This builder for chaining.
*/
public Builder clearDeployUrl() {
deployUrl_ = getDefaultInstance().getDeployUrl();
onChanged();
return this;
}
/**
*
* The URL of where this app module version is deployed.
* If you provide this deploy_url when creating the install then it will
* be treated as a pre-deployed module. You can only use a pre-deployed module
* in when installing to an app_id that you own as the creator of the module.
* If you want to install someone elses module or to rely on Clarifai deploying
* your module for you, leave deploy_url empty when creating the install.
* If it is left empty, then deployment will occur when this module version is
* installed into an app using the git_commit_url of the ModuleVersion.
*
*
* string deploy_url = 7;
* @param value The bytes for deployUrl to set.
* @return This builder for chaining.
*/
public Builder setDeployUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
deployUrl_ = value;
onChanged();
return this;
}
private com.clarifai.grpc.api.Visibility visibility_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Visibility, com.clarifai.grpc.api.Visibility.Builder, com.clarifai.grpc.api.VisibilityOrBuilder> visibilityBuilder_;
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
* @return Whether the visibility field is set.
*/
public boolean hasVisibility() {
return visibilityBuilder_ != null || visibility_ != null;
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
* @return The visibility.
*/
public com.clarifai.grpc.api.Visibility getVisibility() {
if (visibilityBuilder_ == null) {
return visibility_ == null ? com.clarifai.grpc.api.Visibility.getDefaultInstance() : visibility_;
} else {
return visibilityBuilder_.getMessage();
}
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public Builder setVisibility(com.clarifai.grpc.api.Visibility value) {
if (visibilityBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
visibility_ = value;
onChanged();
} else {
visibilityBuilder_.setMessage(value);
}
return this;
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public Builder setVisibility(
com.clarifai.grpc.api.Visibility.Builder builderForValue) {
if (visibilityBuilder_ == null) {
visibility_ = builderForValue.build();
onChanged();
} else {
visibilityBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public Builder mergeVisibility(com.clarifai.grpc.api.Visibility value) {
if (visibilityBuilder_ == null) {
if (visibility_ != null) {
visibility_ =
com.clarifai.grpc.api.Visibility.newBuilder(visibility_).mergeFrom(value).buildPartial();
} else {
visibility_ = value;
}
onChanged();
} else {
visibilityBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public Builder clearVisibility() {
if (visibilityBuilder_ == null) {
visibility_ = null;
onChanged();
} else {
visibility_ = null;
visibilityBuilder_ = null;
}
return this;
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public com.clarifai.grpc.api.Visibility.Builder getVisibilityBuilder() {
onChanged();
return getVisibilityFieldBuilder().getBuilder();
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
public com.clarifai.grpc.api.VisibilityOrBuilder getVisibilityOrBuilder() {
if (visibilityBuilder_ != null) {
return visibilityBuilder_.getMessageOrBuilder();
} else {
return visibility_ == null ?
com.clarifai.grpc.api.Visibility.getDefaultInstance() : visibility_;
}
}
/**
*
* The visibility field represents whether this message is privately/publicly visible.
* To be visible to the public the App that contains it AND the User that contains the App must
* also be publicly visible. For the InstalledModuleVersion this allows the app owner who
* installed the module version to decide if they want other users of their app to have
* the added functionality that the modules version provides to their app.
* Defaults to PRIVATE if not provided.
*
*
* .clarifai.api.Visibility visibility = 8;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Visibility, com.clarifai.grpc.api.Visibility.Builder, com.clarifai.grpc.api.VisibilityOrBuilder>
getVisibilityFieldBuilder() {
if (visibilityBuilder_ == null) {
visibilityBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Visibility, com.clarifai.grpc.api.Visibility.Builder, com.clarifai.grpc.api.VisibilityOrBuilder>(
getVisibility(),
getParentForChildren(),
isClean());
visibility_ = null;
}
return visibilityBuilder_;
}
private java.lang.Object keyId_ = "";
/**
*
* The key ID to use for making requests to the API for this module.
* This key is associated to this installed module version by PostInstalledModuleVersionsKey
* request. The key is associated with the CALLER not the App Owner where this module is installed
* nor the author of the module. This allows the module to act on behalf of the caller at all
* times so we get proper permissions the caller has (such as if they are stranger, teammate or
* collaborator). This key should be a personal access token to enable modules to work across apps
* and have necessary abilities beyond what app-specific keys offer.
*
*
* string key_id = 9;
* @return The keyId.
*/
public java.lang.String getKeyId() {
java.lang.Object ref = keyId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
keyId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The key ID to use for making requests to the API for this module.
* This key is associated to this installed module version by PostInstalledModuleVersionsKey
* request. The key is associated with the CALLER not the App Owner where this module is installed
* nor the author of the module. This allows the module to act on behalf of the caller at all
* times so we get proper permissions the caller has (such as if they are stranger, teammate or
* collaborator). This key should be a personal access token to enable modules to work across apps
* and have necessary abilities beyond what app-specific keys offer.
*
*
* string key_id = 9;
* @return The bytes for keyId.
*/
public com.google.protobuf.ByteString
getKeyIdBytes() {
java.lang.Object ref = keyId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
keyId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The key ID to use for making requests to the API for this module.
* This key is associated to this installed module version by PostInstalledModuleVersionsKey
* request. The key is associated with the CALLER not the App Owner where this module is installed
* nor the author of the module. This allows the module to act on behalf of the caller at all
* times so we get proper permissions the caller has (such as if they are stranger, teammate or
* collaborator). This key should be a personal access token to enable modules to work across apps
* and have necessary abilities beyond what app-specific keys offer.
*
*
* string key_id = 9;
* @param value The keyId to set.
* @return This builder for chaining.
*/
public Builder setKeyId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
keyId_ = value;
onChanged();
return this;
}
/**
*
* The key ID to use for making requests to the API for this module.
* This key is associated to this installed module version by PostInstalledModuleVersionsKey
* request. The key is associated with the CALLER not the App Owner where this module is installed
* nor the author of the module. This allows the module to act on behalf of the caller at all
* times so we get proper permissions the caller has (such as if they are stranger, teammate or
* collaborator). This key should be a personal access token to enable modules to work across apps
* and have necessary abilities beyond what app-specific keys offer.
*
*
* string key_id = 9;
* @return This builder for chaining.
*/
public Builder clearKeyId() {
keyId_ = getDefaultInstance().getKeyId();
onChanged();
return this;
}
/**
*
* The key ID to use for making requests to the API for this module.
* This key is associated to this installed module version by PostInstalledModuleVersionsKey
* request. The key is associated with the CALLER not the App Owner where this module is installed
* nor the author of the module. This allows the module to act on behalf of the caller at all
* times so we get proper permissions the caller has (such as if they are stranger, teammate or
* collaborator). This key should be a personal access token to enable modules to work across apps
* and have necessary abilities beyond what app-specific keys offer.
*
*
* string key_id = 9;
* @param value The bytes for keyId to set.
* @return This builder for chaining.
*/
public Builder setKeyIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
keyId_ = value;
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:clarifai.api.InstalledModuleVersion)
}
// @@protoc_insertion_point(class_scope:clarifai.api.InstalledModuleVersion)
private static final com.clarifai.grpc.api.InstalledModuleVersion DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clarifai.grpc.api.InstalledModuleVersion();
}
public static com.clarifai.grpc.api.InstalledModuleVersion getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public InstalledModuleVersion parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new InstalledModuleVersion(input, extensionRegistry);
}
};
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.clarifai.grpc.api.InstalledModuleVersion getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}