Interface ExternalConfigurationVolumeSourceFluent<A extends ExternalConfigurationVolumeSourceFluent<A>>
-
- All Superinterfaces:
io.fabric8.kubernetes.api.builder.Fluent<A>
- All Known Subinterfaces:
ExternalConfigurationFluent.VolumesNested<N>
- All Known Implementing Classes:
ExternalConfigurationFluentImpl.VolumesNestedImpl,ExternalConfigurationVolumeSourceBuilder,ExternalConfigurationVolumeSourceFluentImpl
public interface ExternalConfigurationVolumeSourceFluent<A extends ExternalConfigurationVolumeSourceFluent<A>> extends io.fabric8.kubernetes.api.builder.Fluent<A>Representation for environment variables which will be passed to Kafka Connect
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description io.fabric8.kubernetes.api.model.ConfigMapVolumeSourcegetConfigMap()StringgetName()io.fabric8.kubernetes.api.model.SecretVolumeSourcegetSecret()BooleanhasConfigMap()BooleanhasName()BooleanhasSecret()AwithConfigMap(io.fabric8.kubernetes.api.model.ConfigMapVolumeSource configMap)AwithName(String name)AwithNewName(String original)Deprecated.AwithSecret(io.fabric8.kubernetes.api.model.SecretVolumeSource secret)
-
-
-
Method Detail
-
getName
String getName()
-
hasName
Boolean hasName()
-
withNewName
@Deprecated A withNewName(String original)
Deprecated.
-
getSecret
io.fabric8.kubernetes.api.model.SecretVolumeSource getSecret()
-
withSecret
A withSecret(io.fabric8.kubernetes.api.model.SecretVolumeSource secret)
-
hasSecret
Boolean hasSecret()
-
getConfigMap
io.fabric8.kubernetes.api.model.ConfigMapVolumeSource getConfigMap()
-
withConfigMap
A withConfigMap(io.fabric8.kubernetes.api.model.ConfigMapVolumeSource configMap)
-
hasConfigMap
Boolean hasConfigMap()
-
-