
com.pulumi.azurenative.security.inputs.GetSecurityOperatorPlainArgs Maven / Gradle / Ivy
// *** 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.azurenative.security.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSecurityOperatorPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSecurityOperatorPlainArgs Empty = new GetSecurityOperatorPlainArgs();
/**
* name of the pricing configuration
*
*/
@Import(name="pricingName", required=true)
private String pricingName;
/**
* @return name of the pricing configuration
*
*/
public String pricingName() {
return this.pricingName;
}
/**
* name of the securityOperator
*
*/
@Import(name="securityOperatorName", required=true)
private String securityOperatorName;
/**
* @return name of the securityOperator
*
*/
public String securityOperatorName() {
return this.securityOperatorName;
}
private GetSecurityOperatorPlainArgs() {}
private GetSecurityOperatorPlainArgs(GetSecurityOperatorPlainArgs $) {
this.pricingName = $.pricingName;
this.securityOperatorName = $.securityOperatorName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSecurityOperatorPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSecurityOperatorPlainArgs $;
public Builder() {
$ = new GetSecurityOperatorPlainArgs();
}
public Builder(GetSecurityOperatorPlainArgs defaults) {
$ = new GetSecurityOperatorPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param pricingName name of the pricing configuration
*
* @return builder
*
*/
public Builder pricingName(String pricingName) {
$.pricingName = pricingName;
return this;
}
/**
* @param securityOperatorName name of the securityOperator
*
* @return builder
*
*/
public Builder securityOperatorName(String securityOperatorName) {
$.securityOperatorName = securityOperatorName;
return this;
}
public GetSecurityOperatorPlainArgs build() {
if ($.pricingName == null) {
throw new MissingRequiredPropertyException("GetSecurityOperatorPlainArgs", "pricingName");
}
if ($.securityOperatorName == null) {
throw new MissingRequiredPropertyException("GetSecurityOperatorPlainArgs", "securityOperatorName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy