
com.pulumi.azurenative.security.inputs.GetSecurityOperatorArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.security.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSecurityOperatorArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSecurityOperatorArgs Empty = new GetSecurityOperatorArgs();
/**
* name of the pricing configuration
*
*/
@Import(name="pricingName", required=true)
private Output pricingName;
/**
* @return name of the pricing configuration
*
*/
public Output pricingName() {
return this.pricingName;
}
/**
* name of the securityOperator
*
*/
@Import(name="securityOperatorName", required=true)
private Output securityOperatorName;
/**
* @return name of the securityOperator
*
*/
public Output securityOperatorName() {
return this.securityOperatorName;
}
private GetSecurityOperatorArgs() {}
private GetSecurityOperatorArgs(GetSecurityOperatorArgs $) {
this.pricingName = $.pricingName;
this.securityOperatorName = $.securityOperatorName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSecurityOperatorArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSecurityOperatorArgs $;
public Builder() {
$ = new GetSecurityOperatorArgs();
}
public Builder(GetSecurityOperatorArgs defaults) {
$ = new GetSecurityOperatorArgs(Objects.requireNonNull(defaults));
}
/**
* @param pricingName name of the pricing configuration
*
* @return builder
*
*/
public Builder pricingName(Output pricingName) {
$.pricingName = pricingName;
return this;
}
/**
* @param pricingName name of the pricing configuration
*
* @return builder
*
*/
public Builder pricingName(String pricingName) {
return pricingName(Output.of(pricingName));
}
/**
* @param securityOperatorName name of the securityOperator
*
* @return builder
*
*/
public Builder securityOperatorName(Output securityOperatorName) {
$.securityOperatorName = securityOperatorName;
return this;
}
/**
* @param securityOperatorName name of the securityOperator
*
* @return builder
*
*/
public Builder securityOperatorName(String securityOperatorName) {
return securityOperatorName(Output.of(securityOperatorName));
}
public GetSecurityOperatorArgs build() {
if ($.pricingName == null) {
throw new MissingRequiredPropertyException("GetSecurityOperatorArgs", "pricingName");
}
if ($.securityOperatorName == null) {
throw new MissingRequiredPropertyException("GetSecurityOperatorArgs", "securityOperatorName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy