
com.pulumi.azurenative.network.outputs.SecurityUserGroupItemResponse 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class SecurityUserGroupItemResponse {
/**
* @return Network manager group Id.
*
*/
private String networkGroupId;
private SecurityUserGroupItemResponse() {}
/**
* @return Network manager group Id.
*
*/
public String networkGroupId() {
return this.networkGroupId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SecurityUserGroupItemResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String networkGroupId;
public Builder() {}
public Builder(SecurityUserGroupItemResponse defaults) {
Objects.requireNonNull(defaults);
this.networkGroupId = defaults.networkGroupId;
}
@CustomType.Setter
public Builder networkGroupId(String networkGroupId) {
if (networkGroupId == null) {
throw new MissingRequiredPropertyException("SecurityUserGroupItemResponse", "networkGroupId");
}
this.networkGroupId = networkGroupId;
return this;
}
public SecurityUserGroupItemResponse build() {
final var _resultValue = new SecurityUserGroupItemResponse();
_resultValue.networkGroupId = networkGroupId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy