
com.pulumi.azurenative.apimanagement.outputs.GroupContractPropertiesResponse 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.apimanagement.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GroupContractPropertiesResponse {
/**
* @return true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
*
*/
private Boolean builtIn;
/**
* @return Group description. Can contain HTML formatting tags.
*
*/
private @Nullable String description;
/**
* @return Group name.
*
*/
private String displayName;
/**
* @return For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory `aad://<tenant>.onmicrosoft.com/groups/<group object id>`; otherwise the value is null.
*
*/
private @Nullable String externalId;
/**
* @return Group type.
*
*/
private @Nullable String type;
private GroupContractPropertiesResponse() {}
/**
* @return true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
*
*/
public Boolean builtIn() {
return this.builtIn;
}
/**
* @return Group description. Can contain HTML formatting tags.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Group name.
*
*/
public String displayName() {
return this.displayName;
}
/**
* @return For external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory `aad://<tenant>.onmicrosoft.com/groups/<group object id>`; otherwise the value is null.
*
*/
public Optional externalId() {
return Optional.ofNullable(this.externalId);
}
/**
* @return Group type.
*
*/
public Optional type() {
return Optional.ofNullable(this.type);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GroupContractPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean builtIn;
private @Nullable String description;
private String displayName;
private @Nullable String externalId;
private @Nullable String type;
public Builder() {}
public Builder(GroupContractPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.builtIn = defaults.builtIn;
this.description = defaults.description;
this.displayName = defaults.displayName;
this.externalId = defaults.externalId;
this.type = defaults.type;
}
@CustomType.Setter
public Builder builtIn(Boolean builtIn) {
if (builtIn == null) {
throw new MissingRequiredPropertyException("GroupContractPropertiesResponse", "builtIn");
}
this.builtIn = builtIn;
return this;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder displayName(String displayName) {
if (displayName == null) {
throw new MissingRequiredPropertyException("GroupContractPropertiesResponse", "displayName");
}
this.displayName = displayName;
return this;
}
@CustomType.Setter
public Builder externalId(@Nullable String externalId) {
this.externalId = externalId;
return this;
}
@CustomType.Setter
public Builder type(@Nullable String type) {
this.type = type;
return this;
}
public GroupContractPropertiesResponse build() {
final var _resultValue = new GroupContractPropertiesResponse();
_resultValue.builtIn = builtIn;
_resultValue.description = description;
_resultValue.displayName = displayName;
_resultValue.externalId = externalId;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy