Interface ConfigSyncOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConfigSync
,ConfigSync.Builder
public interface ConfigSyncOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitConfig
getGit()
Git repo configuration for the cluster.GitConfigOrBuilder
getGitOrBuilder()
Git repo configuration for the cluster.String
getSourceFormat()
Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.com.google.protobuf.ByteString
getSourceFormatBytes()
Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.boolean
hasGit()
Git repo configuration for the cluster.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGit
boolean hasGit()
Git repo configuration for the cluster.
.google.cloud.gkehub.configmanagement.v1alpha.GitConfig git = 7;
- Returns:
- Whether the git field is set.
-
getGit
GitConfig getGit()
Git repo configuration for the cluster.
.google.cloud.gkehub.configmanagement.v1alpha.GitConfig git = 7;
- Returns:
- The git.
-
getGitOrBuilder
GitConfigOrBuilder getGitOrBuilder()
Git repo configuration for the cluster.
.google.cloud.gkehub.configmanagement.v1alpha.GitConfig git = 7;
-
getSourceFormat
String getSourceFormat()
Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
string source_format = 8;
- Returns:
- The sourceFormat.
-
getSourceFormatBytes
com.google.protobuf.ByteString getSourceFormatBytes()
Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
string source_format = 8;
- Returns:
- The bytes for sourceFormat.
-
-