
com.pulumi.azurenative.apimanagement.outputs.DataMaskingResponse 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.apimanagement.outputs;
import com.pulumi.azurenative.apimanagement.outputs.DataMaskingEntityResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class DataMaskingResponse {
/**
* @return Masking settings for headers
*
*/
private @Nullable List headers;
/**
* @return Masking settings for Url query parameters
*
*/
private @Nullable List queryParams;
private DataMaskingResponse() {}
/**
* @return Masking settings for headers
*
*/
public List headers() {
return this.headers == null ? List.of() : this.headers;
}
/**
* @return Masking settings for Url query parameters
*
*/
public List queryParams() {
return this.queryParams == null ? List.of() : this.queryParams;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataMaskingResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List headers;
private @Nullable List queryParams;
public Builder() {}
public Builder(DataMaskingResponse defaults) {
Objects.requireNonNull(defaults);
this.headers = defaults.headers;
this.queryParams = defaults.queryParams;
}
@CustomType.Setter
public Builder headers(@Nullable List headers) {
this.headers = headers;
return this;
}
public Builder headers(DataMaskingEntityResponse... headers) {
return headers(List.of(headers));
}
@CustomType.Setter
public Builder queryParams(@Nullable List queryParams) {
this.queryParams = queryParams;
return this;
}
public Builder queryParams(DataMaskingEntityResponse... queryParams) {
return queryParams(List.of(queryParams));
}
public DataMaskingResponse build() {
final var _resultValue = new DataMaskingResponse();
_resultValue.headers = headers;
_resultValue.queryParams = queryParams;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy