Cluster Role Patch Args
data class ClusterRolePatchArgs(val aggregationRule: Output<AggregationRulePatchArgs>? = null, val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaPatchArgs>? = null, val rules: Output<List<PolicyRulePatchArgs>>? = null) : ConvertibleToJava<ClusterRolePatchArgs>
Patch resources are used to modify existing Kubernetes resources by using Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than one patch may be applied to the same resource, and a random FieldManager name will be used for each Patch resource. Conflicts will result in an error by default, but can be forced using the "pulumi.com/patchForce" annotation. See the Server-Side Apply Docs for additional information about using Server-Side Apply to manage Kubernetes resources with Pulumi. ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
Constructors
Link copied to clipboard
fun ClusterRolePatchArgs(aggregationRule: Output<AggregationRulePatchArgs>? = null, apiVersion: Output<String>? = null, kind: Output<String>? = null, metadata: Output<ObjectMetaPatchArgs>? = null, rules: Output<List<PolicyRulePatchArgs>>? = null)