package v1beta1
Type Members
-
final
case class
FlowDistinguisherMethod(type: String) extends Product with Serializable
FlowDistinguisherMethod specifies the method of a flow distinguisher.
-
final
case class
FlowSchema(status: Option[FlowSchemaStatus] = None, spec: Option[FlowSchemaSpec] = None, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable
FlowSchema defines the schema of a group of flows.
FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
-
final
case class
FlowSchemaCondition(reason: Option[String] = None, status: Option[String] = None, lastTransitionTime: Option[Time] = None, message: Option[String] = None, type: Option[String] = None) extends Product with Serializable
FlowSchemaCondition describes conditions for a FlowSchema.
-
final
case class
FlowSchemaList(items: Seq[FlowSchema], metadata: Option[ListMeta] = None) extends KObject with Product with Serializable
FlowSchemaList is a list of FlowSchema objects.
-
final
case class
FlowSchemaSpec(distinguisherMethod: Option[FlowDistinguisherMethod] = None, matchingPrecedence: Option[Int] = None, priorityLevelConfiguration: PriorityLevelConfigurationReference, rules: Option[Seq[PolicyRulesWithSubjects]] = None) extends Product with Serializable
FlowSchemaSpec describes how the FlowSchema's specification looks like.
-
final
case class
FlowSchemaStatus(conditions: Option[Seq[FlowSchemaCondition]] = None) extends Product with Serializable
FlowSchemaStatus represents the current state of a FlowSchema.
-
final
case class
GroupSubject(name: String) extends Product with Serializable
GroupSubject holds detailed information for group-kind subject.
-
final
case class
LimitResponse(queuing: Option[QueuingConfiguration] = None, type: String) extends Product with Serializable
LimitResponse defines how to handle requests that can not be executed right now.
-
final
case class
LimitedPriorityLevelConfiguration(assuredConcurrencyShares: Option[Int] = None, limitResponse: Option[LimitResponse] = None) extends Product with Serializable
LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits.
LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:
- How are requests for this priority level limited?
- What should be done with requests that exceed the limit?
-
final
case class
NonResourcePolicyRule(nonResourceURLs: Seq[String], verbs: Seq[String]) extends Product with Serializable
NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL.
NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
-
final
case class
PolicyRulesWithSubjects(nonResourceRules: Option[Seq[NonResourcePolicyRule]] = None, resourceRules: Option[Seq[ResourcePolicyRule]] = None, subjects: Seq[Subject]) extends Product with Serializable
PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver.
PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.
-
final
case class
PriorityLevelConfiguration(status: Option[PriorityLevelConfigurationStatus] = None, spec: Option[PriorityLevelConfigurationSpec] = None, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable
PriorityLevelConfiguration represents the configuration of a priority level.
-
final
case class
PriorityLevelConfigurationCondition(reason: Option[String] = None, status: Option[String] = None, lastTransitionTime: Option[Time] = None, message: Option[String] = None, type: Option[String] = None) extends Product with Serializable
PriorityLevelConfigurationCondition defines the condition of priority level.
-
final
case class
PriorityLevelConfigurationList(items: Seq[PriorityLevelConfiguration], metadata: Option[ListMeta] = None) extends KObject with Product with Serializable
PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.
-
final
case class
PriorityLevelConfigurationReference(name: String) extends Product with Serializable
PriorityLevelConfigurationReference contains information that points to the "request-priority" being used.
-
final
case class
PriorityLevelConfigurationSpec(limited: Option[LimitedPriorityLevelConfiguration] = None, type: String) extends Product with Serializable
PriorityLevelConfigurationSpec specifies the configuration of a priority level.
-
final
case class
PriorityLevelConfigurationStatus(conditions: Option[Seq[PriorityLevelConfigurationCondition]] = None) extends Product with Serializable
PriorityLevelConfigurationStatus represents the current state of a "request-priority".
-
final
case class
QueuingConfiguration(handSize: Option[Int] = None, queueLengthLimit: Option[Int] = None, queues: Option[Int] = None) extends Product with Serializable
QueuingConfiguration holds the configuration parameters for queuing
-
final
case class
ResourcePolicyRule(clusterScope: Option[Boolean] = None, verbs: Seq[String], apiGroups: Seq[String], namespaces: Option[Seq[String]] = None, resources: Seq[String]) extends Product with Serializable
ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource.
ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e.,
Namespace==""
) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace. -
final
case class
ServiceAccountSubject(name: String, namespace: String) extends Product with Serializable
ServiceAccountSubject holds detailed information for service-account-kind subject.
-
final
case class
Subject(group: Option[GroupSubject] = None, serviceAccount: Option[ServiceAccountSubject] = None, user: Option[UserSubject] = None) extends Product with Serializable
Subject matches the originator of a request, as identified by the request authentication system.
Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.
-
final
case class
UserSubject(name: String) extends Product with Serializable
UserSubject holds detailed information for user-kind subject.