Class OIDCClientReference
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.OIDCClientReference
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<OIDCClientReferenceBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class OIDCClientReference extends Object implements io.fabric8.kubernetes.api.builder.Editable<OIDCClientReferenceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
OIDCClientReference is a reference to a platform component client configuration.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OIDCClientReference()No args constructor for use in serializationOIDCClientReference(String clientID, String issuerURL, String oidcProviderName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OIDCClientReferenceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetClientID()clientID is a required field that specifies the client identifier, from the identity provider, that the platform component is using for authentication requests made to the identity provider.StringgetIssuerURL()issuerURL is a required field that specifies the URL of the identity provider that this client is configured to make requests against.StringgetOidcProviderName()oidcProviderName is a required reference to the 'name' of the identity provider configured in 'oidcProviders' that this client is associated with.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetClientID(String clientID)clientID is a required field that specifies the client identifier, from the identity provider, that the platform component is using for authentication requests made to the identity provider.voidsetIssuerURL(String issuerURL)issuerURL is a required field that specifies the URL of the identity provider that this client is configured to make requests against.voidsetOidcProviderName(String oidcProviderName)oidcProviderName is a required reference to the 'name' of the identity provider configured in 'oidcProviders' that this client is associated with.OIDCClientReferenceBuildertoBuilder()
-
-
-
Method Detail
-
getClientID
public String getClientID()
clientID is a required field that specifies the client identifier, from the identity provider, that the platform component is using for authentication requests made to the identity provider.clientID must not be empty.
-
setClientID
public void setClientID(String clientID)
clientID is a required field that specifies the client identifier, from the identity provider, that the platform component is using for authentication requests made to the identity provider.clientID must not be empty.
-
getIssuerURL
public String getIssuerURL()
issuerURL is a required field that specifies the URL of the identity provider that this client is configured to make requests against.issuerURL must use the 'https' scheme.
-
setIssuerURL
public void setIssuerURL(String issuerURL)
issuerURL is a required field that specifies the URL of the identity provider that this client is configured to make requests against.issuerURL must use the 'https' scheme.
-
getOidcProviderName
public String getOidcProviderName()
oidcProviderName is a required reference to the 'name' of the identity provider configured in 'oidcProviders' that this client is associated with.oidcProviderName must not be an empty string ("").
-
setOidcProviderName
public void setOidcProviderName(String oidcProviderName)
oidcProviderName is a required reference to the 'name' of the identity provider configured in 'oidcProviders' that this client is associated with.oidcProviderName must not be an empty string ("").
-
edit
public OIDCClientReferenceBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<OIDCClientReferenceBuilder>
-
toBuilder
public OIDCClientReferenceBuilder toBuilder()
-
-