
com.pulumi.azurenative.security.inputs.DefenderCspmGcpOfferingArgs 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.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* The CSPM P1 for GCP offering
*
*/
public final class DefenderCspmGcpOfferingArgs extends com.pulumi.resources.ResourceArgs {
public static final DefenderCspmGcpOfferingArgs Empty = new DefenderCspmGcpOfferingArgs();
/**
* The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*
*/
@Import(name="offeringType", required=true)
private Output offeringType;
/**
* @return The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*
*/
public Output offeringType() {
return this.offeringType;
}
private DefenderCspmGcpOfferingArgs() {}
private DefenderCspmGcpOfferingArgs(DefenderCspmGcpOfferingArgs $) {
this.offeringType = $.offeringType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DefenderCspmGcpOfferingArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private DefenderCspmGcpOfferingArgs $;
public Builder() {
$ = new DefenderCspmGcpOfferingArgs();
}
public Builder(DefenderCspmGcpOfferingArgs defaults) {
$ = new DefenderCspmGcpOfferingArgs(Objects.requireNonNull(defaults));
}
/**
* @param offeringType The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*
* @return builder
*
*/
public Builder offeringType(Output offeringType) {
$.offeringType = offeringType;
return this;
}
/**
* @param offeringType The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*
* @return builder
*
*/
public Builder offeringType(String offeringType) {
return offeringType(Output.of(offeringType));
}
public DefenderCspmGcpOfferingArgs build() {
$.offeringType = Codegen.stringProp("offeringType").output().arg($.offeringType).require();
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy