com.pulumi.azurenative.security.outputs.CspmMonitorGitLabOfferingResponse 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CspmMonitorGitLabOfferingResponse {
/**
* @return The offering description.
*
*/
private String description;
/**
* @return The type of the security offering.
* Expected value is 'CspmMonitorGitLab'.
*
*/
private String offeringType;
private CspmMonitorGitLabOfferingResponse() {}
/**
* @return The offering description.
*
*/
public String description() {
return this.description;
}
/**
* @return The type of the security offering.
* Expected value is 'CspmMonitorGitLab'.
*
*/
public String offeringType() {
return this.offeringType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CspmMonitorGitLabOfferingResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String description;
private String offeringType;
public Builder() {}
public Builder(CspmMonitorGitLabOfferingResponse defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.offeringType = defaults.offeringType;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("CspmMonitorGitLabOfferingResponse", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder offeringType(String offeringType) {
if (offeringType == null) {
throw new MissingRequiredPropertyException("CspmMonitorGitLabOfferingResponse", "offeringType");
}
this.offeringType = offeringType;
return this;
}
public CspmMonitorGitLabOfferingResponse build() {
final var _resultValue = new CspmMonitorGitLabOfferingResponse();
_resultValue.description = description;
_resultValue.offeringType = offeringType;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy