Class RegistryLocation
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.RegistryLocation
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<RegistryLocationBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class RegistryLocation extends Object implements io.fabric8.kubernetes.api.builder.Editable<RegistryLocationBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
RegistryLocation contains a location of the registry specified by the registry domain name. The domain name might include wildcards, like '*' or '??'.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegistryLocation()No args constructor for use in serializationRegistryLocation(String domainName, Boolean insecure)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegistryLocationBuilderedit()Map<String,Object>getAdditionalProperties()StringgetDomainName()domainName specifies a domain name for the registry In case the registry use non-standard (80 or 443) port, the port should be included in the domain name as well.BooleangetInsecure()insecure indicates whether the registry is secure (https) or insecure (http) By default (if not specified) the registry is assumed as secure.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDomainName(String domainName)domainName specifies a domain name for the registry In case the registry use non-standard (80 or 443) port, the port should be included in the domain name as well.voidsetInsecure(Boolean insecure)insecure indicates whether the registry is secure (https) or insecure (http) By default (if not specified) the registry is assumed as secure.RegistryLocationBuildertoBuilder()
-
-
-
Method Detail
-
getDomainName
public String getDomainName()
domainName specifies a domain name for the registry In case the registry use non-standard (80 or 443) port, the port should be included in the domain name as well.
-
setDomainName
public void setDomainName(String domainName)
domainName specifies a domain name for the registry In case the registry use non-standard (80 or 443) port, the port should be included in the domain name as well.
-
getInsecure
public Boolean getInsecure()
insecure indicates whether the registry is secure (https) or insecure (http) By default (if not specified) the registry is assumed as secure.
-
setInsecure
public void setInsecure(Boolean insecure)
insecure indicates whether the registry is secure (https) or insecure (http) By default (if not specified) the registry is assumed as secure.
-
edit
public RegistryLocationBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<RegistryLocationBuilder>
-
toBuilder
public RegistryLocationBuilder toBuilder()
-
-