Interface Agent.GitIntegrationSettings.GithubSettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Agent.GitIntegrationSettings.GithubSettings,Agent.GitIntegrationSettings.GithubSettings.Builder
- Enclosing class:
- Agent.GitIntegrationSettings
public static interface Agent.GitIntegrationSettings.GithubSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAccessToken()The access token used to authenticate the access to the GitHub repository.com.google.protobuf.ByteStringgetAccessTokenBytes()The access token used to authenticate the access to the GitHub repository.StringgetBranches(int index)A list of branches configured to be used from Dialogflow.com.google.protobuf.ByteStringgetBranchesBytes(int index)A list of branches configured to be used from Dialogflow.intgetBranchesCount()A list of branches configured to be used from Dialogflow.List<String>getBranchesList()A list of branches configured to be used from Dialogflow.StringgetDisplayName()The unique repository display name for the GitHub repository.com.google.protobuf.ByteStringgetDisplayNameBytes()The unique repository display name for the GitHub repository.StringgetRepositoryUri()The GitHub repository URI related to the agent.com.google.protobuf.ByteStringgetRepositoryUriBytes()The GitHub repository URI related to the agent.StringgetTrackingBranch()The branch of the GitHub repository tracked for this agent.com.google.protobuf.ByteStringgetTrackingBranchBytes()The branch of the GitHub repository tracked for this agent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDisplayName
String getDisplayName()
The unique repository display name for the GitHub repository.
string display_name = 1;- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The unique repository display name for the GitHub repository.
string display_name = 1;- Returns:
- The bytes for displayName.
-
getRepositoryUri
String getRepositoryUri()
The GitHub repository URI related to the agent.
string repository_uri = 2;- Returns:
- The repositoryUri.
-
getRepositoryUriBytes
com.google.protobuf.ByteString getRepositoryUriBytes()
The GitHub repository URI related to the agent.
string repository_uri = 2;- Returns:
- The bytes for repositoryUri.
-
getTrackingBranch
String getTrackingBranch()
The branch of the GitHub repository tracked for this agent.
string tracking_branch = 3;- Returns:
- The trackingBranch.
-
getTrackingBranchBytes
com.google.protobuf.ByteString getTrackingBranchBytes()
The branch of the GitHub repository tracked for this agent.
string tracking_branch = 3;- Returns:
- The bytes for trackingBranch.
-
getAccessToken
String getAccessToken()
The access token used to authenticate the access to the GitHub repository.
string access_token = 4;- Returns:
- The accessToken.
-
getAccessTokenBytes
com.google.protobuf.ByteString getAccessTokenBytes()
The access token used to authenticate the access to the GitHub repository.
string access_token = 4;- Returns:
- The bytes for accessToken.
-
getBranchesList
List<String> getBranchesList()
A list of branches configured to be used from Dialogflow.
repeated string branches = 5;- Returns:
- A list containing the branches.
-
getBranchesCount
int getBranchesCount()
A list of branches configured to be used from Dialogflow.
repeated string branches = 5;- Returns:
- The count of branches.
-
getBranches
String getBranches(int index)
A list of branches configured to be used from Dialogflow.
repeated string branches = 5;- Parameters:
index- The index of the element to return.- Returns:
- The branches at the given index.
-
getBranchesBytes
com.google.protobuf.ByteString getBranchesBytes(int index)
A list of branches configured to be used from Dialogflow.
repeated string branches = 5;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the branches at the given index.
-
-