
com.pulumi.azurenative.managednetworkfabric.outputs.IpCommunityIdListResponse 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.managednetworkfabric.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class IpCommunityIdListResponse {
/**
* @return List of IP Community resource IDs.
*
*/
private @Nullable List ipCommunityIds;
private IpCommunityIdListResponse() {}
/**
* @return List of IP Community resource IDs.
*
*/
public List ipCommunityIds() {
return this.ipCommunityIds == null ? List.of() : this.ipCommunityIds;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IpCommunityIdListResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List ipCommunityIds;
public Builder() {}
public Builder(IpCommunityIdListResponse defaults) {
Objects.requireNonNull(defaults);
this.ipCommunityIds = defaults.ipCommunityIds;
}
@CustomType.Setter
public Builder ipCommunityIds(@Nullable List ipCommunityIds) {
this.ipCommunityIds = ipCommunityIds;
return this;
}
public Builder ipCommunityIds(String... ipCommunityIds) {
return ipCommunityIds(List.of(ipCommunityIds));
}
public IpCommunityIdListResponse build() {
final var _resultValue = new IpCommunityIdListResponse();
_resultValue.ipCommunityIds = ipCommunityIds;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy