Package io.fabric8.openshift.api.model
Class GitBuildSource
- java.lang.Object
-
- io.fabric8.openshift.api.model.GitBuildSource
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<GitBuildSourceBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class GitBuildSource extends Object implements io.fabric8.kubernetes.api.builder.Editable<GitBuildSourceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
GitBuildSource defines the parameters of a Git SCM- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitBuildSource()No args constructor for use in serializationGitBuildSource(String httpProxy, String httpsProxy, String noProxy, String ref, String uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GitBuildSourceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetHttpProxy()httpProxy is a proxy used to reach the git repository over httpStringgetHttpsProxy()httpsProxy is a proxy used to reach the git repository over httpsStringgetNoProxy()noProxy is the list of domains for which the proxy should not be usedStringgetRef()ref is the branch/tag/ref to build.StringgetUri()uri points to the source that will be built.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetHttpProxy(String httpProxy)httpProxy is a proxy used to reach the git repository over httpvoidsetHttpsProxy(String httpsProxy)httpsProxy is a proxy used to reach the git repository over httpsvoidsetNoProxy(String noProxy)noProxy is the list of domains for which the proxy should not be usedvoidsetRef(String ref)ref is the branch/tag/ref to build.voidsetUri(String uri)uri points to the source that will be built.GitBuildSourceBuildertoBuilder()
-
-
-
Method Detail
-
getHttpProxy
public String getHttpProxy()
httpProxy is a proxy used to reach the git repository over http
-
setHttpProxy
public void setHttpProxy(String httpProxy)
httpProxy is a proxy used to reach the git repository over http
-
getHttpsProxy
public String getHttpsProxy()
httpsProxy is a proxy used to reach the git repository over https
-
setHttpsProxy
public void setHttpsProxy(String httpsProxy)
httpsProxy is a proxy used to reach the git repository over https
-
getNoProxy
public String getNoProxy()
noProxy is the list of domains for which the proxy should not be used
-
setNoProxy
public void setNoProxy(String noProxy)
noProxy is the list of domains for which the proxy should not be used
-
getRef
public String getRef()
ref is the branch/tag/ref to build.
-
setRef
public void setRef(String ref)
ref is the branch/tag/ref to build.
-
getUri
public String getUri()
uri points to the source that will be built. The structure of the source will depend on the type of build to run
-
setUri
public void setUri(String uri)
uri points to the source that will be built. The structure of the source will depend on the type of build to run
-
edit
public GitBuildSourceBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<GitBuildSourceBuilder>
-
toBuilder
public GitBuildSourceBuilder toBuilder()
-
-