com.pulumi.googlenative.dlp.v2.outputs.GooglePrivacyDlpV2FieldIdResponse 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.googlenative.dlp.v2.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GooglePrivacyDlpV2FieldIdResponse {
/**
* @return Name describing the field.
*
*/
private String name;
private GooglePrivacyDlpV2FieldIdResponse() {}
/**
* @return Name describing the field.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GooglePrivacyDlpV2FieldIdResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
public Builder() {}
public Builder(GooglePrivacyDlpV2FieldIdResponse defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
}
@CustomType.Setter
public Builder name(String name) {
this.name = Objects.requireNonNull(name);
return this;
}
public GooglePrivacyDlpV2FieldIdResponse build() {
final var o = new GooglePrivacyDlpV2FieldIdResponse();
o.name = name;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy