APIServiceSpec

io.k8s.kube_aggregator.pkg.apis.apiregistration.v1.APIServiceSpec
See theAPIServiceSpec companion object
final case class APIServiceSpec(versionPriority: Int, groupPriorityMinimum: Int, caBundle: Option[String], service: Option[ServiceReference], version: Option[String], group: Option[String], insecureSkipTLSVerify: Option[Boolean])

APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.

Attributes

Companion
object
Source
APIServiceSpec.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def mapCaBundle(f: String => String): APIServiceSpec

if caBundle has a value, transforms to the result of function

if caBundle has a value, transforms to the result of function

Attributes

Source
APIServiceSpec.scala
def mapGroup(f: String => String): APIServiceSpec

if group has a value, transforms to the result of function

if group has a value, transforms to the result of function

Attributes

Source
APIServiceSpec.scala

transforms groupPriorityMinimum to result of function

transforms groupPriorityMinimum to result of function

Attributes

Source
APIServiceSpec.scala
def mapInsecureSkipTLSVerify(f: Boolean => Boolean): APIServiceSpec

if insecureSkipTLSVerify has a value, transforms to the result of function

if insecureSkipTLSVerify has a value, transforms to the result of function

Attributes

Source
APIServiceSpec.scala

if service has a value, transforms to the result of function

if service has a value, transforms to the result of function

Attributes

Source
APIServiceSpec.scala
def mapVersion(f: String => String): APIServiceSpec

if version has a value, transforms to the result of function

if version has a value, transforms to the result of function

Attributes

Source
APIServiceSpec.scala
def mapVersionPriority(f: Int => Int): APIServiceSpec

transforms versionPriority to result of function

transforms versionPriority to result of function

Attributes

Source
APIServiceSpec.scala
def withCaBundle(value: String): APIServiceSpec

Returns a new data with caBundle set to new value

Returns a new data with caBundle set to new value

Attributes

Source
APIServiceSpec.scala
def withGroup(value: String): APIServiceSpec

Returns a new data with group set to new value

Returns a new data with group set to new value

Attributes

Source
APIServiceSpec.scala

Returns a new data with groupPriorityMinimum set to new value

Returns a new data with groupPriorityMinimum set to new value

Attributes

Source
APIServiceSpec.scala

Returns a new data with insecureSkipTLSVerify set to new value

Returns a new data with insecureSkipTLSVerify set to new value

Attributes

Source
APIServiceSpec.scala

Returns a new data with service set to new value

Returns a new data with service set to new value

Attributes

Source
APIServiceSpec.scala
def withVersion(value: String): APIServiceSpec

Returns a new data with version set to new value

Returns a new data with version set to new value

Attributes

Source
APIServiceSpec.scala

Returns a new data with versionPriority set to new value

Returns a new data with versionPriority set to new value

Attributes

Source
APIServiceSpec.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product