com.pulumi.kubernetes.flowcontrol.v1beta3.inputs.NonResourcePolicyRulePatchArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.kubernetes.flowcontrol.v1beta3.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* 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.
*
*/
public final class NonResourcePolicyRulePatchArgs extends com.pulumi.resources.ResourceArgs {
public static final NonResourcePolicyRulePatchArgs Empty = new NonResourcePolicyRulePatchArgs();
/**
* `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:
* - "/healthz" is legal
* - "/hea*" is illegal
* - "/hea" is legal but matches nothing
* - "/hea/*" also matches nothing
* - "/healthz/*" matches all per-component health checks.
* "*" matches all non-resource urls. if it is present, it must be the only entry. Required.
*
*/
@Import(name="nonResourceURLs")
private @Nullable Output> nonResourceURLs;
/**
* @return `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:
* - "/healthz" is legal
* - "/hea*" is illegal
* - "/hea" is legal but matches nothing
* - "/hea/*" also matches nothing
* - "/healthz/*" matches all per-component health checks.
* "*" matches all non-resource urls. if it is present, it must be the only entry. Required.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy