com.pulumi.kubernetes.auditregistration.v1alpha1.inputs.AuditSinkSpecArgs 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.auditregistration.v1alpha1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.kubernetes.auditregistration.v1alpha1.inputs.PolicyArgs;
import com.pulumi.kubernetes.auditregistration.v1alpha1.inputs.WebhookArgs;
import java.util.Objects;
/**
* AuditSinkSpec holds the spec for the audit sink
*
*/
public final class AuditSinkSpecArgs extends com.pulumi.resources.ResourceArgs {
public static final AuditSinkSpecArgs Empty = new AuditSinkSpecArgs();
/**
* Policy defines the policy for selecting which events should be sent to the webhook required
*
*/
@Import(name="policy", required=true)
private Output policy;
/**
* @return Policy defines the policy for selecting which events should be sent to the webhook required
*
*/
public Output policy() {
return this.policy;
}
/**
* Webhook to send events required
*
*/
@Import(name="webhook", required=true)
private Output webhook;
/**
* @return Webhook to send events required
*
*/
public Output webhook() {
return this.webhook;
}
private AuditSinkSpecArgs() {}
private AuditSinkSpecArgs(AuditSinkSpecArgs $) {
this.policy = $.policy;
this.webhook = $.webhook;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AuditSinkSpecArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AuditSinkSpecArgs $;
public Builder() {
$ = new AuditSinkSpecArgs();
}
public Builder(AuditSinkSpecArgs defaults) {
$ = new AuditSinkSpecArgs(Objects.requireNonNull(defaults));
}
/**
* @param policy Policy defines the policy for selecting which events should be sent to the webhook required
*
* @return builder
*
*/
public Builder policy(Output policy) {
$.policy = policy;
return this;
}
/**
* @param policy Policy defines the policy for selecting which events should be sent to the webhook required
*
* @return builder
*
*/
public Builder policy(PolicyArgs policy) {
return policy(Output.of(policy));
}
/**
* @param webhook Webhook to send events required
*
* @return builder
*
*/
public Builder webhook(Output webhook) {
$.webhook = webhook;
return this;
}
/**
* @param webhook Webhook to send events required
*
* @return builder
*
*/
public Builder webhook(WebhookArgs webhook) {
return webhook(Output.of(webhook));
}
public AuditSinkSpecArgs build() {
if ($.policy == null) {
throw new MissingRequiredPropertyException("AuditSinkSpecArgs", "policy");
}
if ($.webhook == null) {
throw new MissingRequiredPropertyException("AuditSinkSpecArgs", "webhook");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy