Interface CommitWorkspaceChangesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CommitWorkspaceChangesRequest,CommitWorkspaceChangesRequest.Builder
public interface CommitWorkspaceChangesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommitAuthorgetAuthor()Required.CommitAuthorOrBuildergetAuthorOrBuilder()Required.StringgetCommitMessage()Optional.com.google.protobuf.ByteStringgetCommitMessageBytes()Optional.StringgetName()Required.com.google.protobuf.ByteStringgetNameBytes()Required.StringgetPaths(int index)Optional.com.google.protobuf.ByteStringgetPathsBytes(int index)Optional.intgetPathsCount()Optional.List<String>getPathsList()Optional.booleanhasAuthor()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. The workspace's name.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. The workspace's name.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for name.
-
hasAuthor
boolean hasAuthor()
Required. The commit's author.
.google.cloud.dataform.v1beta1.CommitAuthor author = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the author field is set.
-
getAuthor
CommitAuthor getAuthor()
Required. The commit's author.
.google.cloud.dataform.v1beta1.CommitAuthor author = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The author.
-
getAuthorOrBuilder
CommitAuthorOrBuilder getAuthorOrBuilder()
Required. The commit's author.
.google.cloud.dataform.v1beta1.CommitAuthor author = 4 [(.google.api.field_behavior) = REQUIRED];
-
getCommitMessage
String getCommitMessage()
Optional. The commit's message.
string commit_message = 2 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The commitMessage.
-
getCommitMessageBytes
com.google.protobuf.ByteString getCommitMessageBytes()
Optional. The commit's message.
string commit_message = 2 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The bytes for commitMessage.
-
getPathsList
List<String> getPathsList()
Optional. Full file paths to commit including filename, rooted at workspace root. If left empty, all files will be committed.
repeated string paths = 3 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- A list containing the paths.
-
getPathsCount
int getPathsCount()
Optional. Full file paths to commit including filename, rooted at workspace root. If left empty, all files will be committed.
repeated string paths = 3 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The count of paths.
-
getPaths
String getPaths(int index)
Optional. Full file paths to commit including filename, rooted at workspace root. If left empty, all files will be committed.
repeated string paths = 3 [(.google.api.field_behavior) = OPTIONAL];- Parameters:
index- The index of the element to return.- Returns:
- The paths at the given index.
-
getPathsBytes
com.google.protobuf.ByteString getPathsBytes(int index)
Optional. Full file paths to commit including filename, rooted at workspace root. If left empty, all files will be committed.
repeated string paths = 3 [(.google.api.field_behavior) = OPTIONAL];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the paths at the given index.
-
-