Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.flowcontrol.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kubernetes.flowcontrol.v1.inputs.ResourcePolicyRulePatchArgs.builder
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* 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.
* @property apiGroups `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
* @property clusterScope `clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.
* @property namespaces `namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "*". Note that "*" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.
* @property resources `resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required.
* @property verbs `verbs` is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.
*/
public data class ResourcePolicyRulePatchArgs(
public val apiGroups: Output>? = null,
public val clusterScope: Output? = null,
public val namespaces: Output>? = null,
public val resources: Output>? = null,
public val verbs: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.flowcontrol.v1.inputs.ResourcePolicyRulePatchArgs =
com.pulumi.kubernetes.flowcontrol.v1.inputs.ResourcePolicyRulePatchArgs.builder()
.apiGroups(apiGroups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.clusterScope(clusterScope?.applyValue({ args0 -> args0 }))
.namespaces(namespaces?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.resources(resources?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.verbs(verbs?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ResourcePolicyRulePatchArgs].
*/
@PulumiTagMarker
public class ResourcePolicyRulePatchArgsBuilder internal constructor() {
private var apiGroups: Output>? = null
private var clusterScope: Output? = null
private var namespaces: Output>? = null
private var resources: Output>? = null
private var verbs: Output>? = null
/**
* @param value `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
*/
@JvmName("trknugkrhvfatbcl")
public suspend fun apiGroups(`value`: Output>) {
this.apiGroups = value
}
@JvmName("uleprlpesijqeiro")
public suspend fun apiGroups(vararg values: Output) {
this.apiGroups = Output.all(values.asList())
}
/**
* @param values `apiGroups` is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
*/
@JvmName("iknntnwssfpnlnxk")
public suspend fun apiGroups(values: List