
com.pulumi.azurenative.security.outputs.GetDefenderForStorageResult 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.outputs;
import com.pulumi.azurenative.security.outputs.DefenderForStorageSettingPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetDefenderForStorageResult {
/**
* @return Resource Id
*
*/
private String id;
/**
* @return Resource name
*
*/
private String name;
/**
* @return Defender for Storage resource properties.
*
*/
private DefenderForStorageSettingPropertiesResponse properties;
/**
* @return Resource type
*
*/
private String type;
private GetDefenderForStorageResult() {}
/**
* @return Resource Id
*
*/
public String id() {
return this.id;
}
/**
* @return Resource name
*
*/
public String name() {
return this.name;
}
/**
* @return Defender for Storage resource properties.
*
*/
public DefenderForStorageSettingPropertiesResponse properties() {
return this.properties;
}
/**
* @return Resource type
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDefenderForStorageResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private String name;
private DefenderForStorageSettingPropertiesResponse properties;
private String type;
public Builder() {}
public Builder(GetDefenderForStorageResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.name = defaults.name;
this.properties = defaults.properties;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetDefenderForStorageResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetDefenderForStorageResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder properties(DefenderForStorageSettingPropertiesResponse properties) {
if (properties == null) {
throw new MissingRequiredPropertyException("GetDefenderForStorageResult", "properties");
}
this.properties = properties;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetDefenderForStorageResult", "type");
}
this.type = type;
return this;
}
public GetDefenderForStorageResult build() {
final var _resultValue = new GetDefenderForStorageResult();
_resultValue.id = id;
_resultValue.name = name;
_resultValue.properties = properties;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy