com.pulumi.keycloak.openid.ClientServiceAccountRealmRoleArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keycloak Show documentation
Show all versions of keycloak Show documentation
A Pulumi package for creating and managing keycloak cloud 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.keycloak.openid;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ClientServiceAccountRealmRoleArgs extends com.pulumi.resources.ResourceArgs {
public static final ClientServiceAccountRealmRoleArgs Empty = new ClientServiceAccountRealmRoleArgs();
/**
* The realm that the client and role belong to.
*
*/
@Import(name="realmId", required=true)
private Output realmId;
/**
* @return The realm that the client and role belong to.
*
*/
public Output realmId() {
return this.realmId;
}
/**
* The name of the role that is assigned.
*
*/
@Import(name="role", required=true)
private Output role;
/**
* @return The name of the role that is assigned.
*
*/
public Output role() {
return this.role;
}
/**
* The id of the service account that is assigned the role (the service account of the client that "consumes" the role).
*
*/
@Import(name="serviceAccountUserId", required=true)
private Output serviceAccountUserId;
/**
* @return The id of the service account that is assigned the role (the service account of the client that "consumes" the role).
*
*/
public Output serviceAccountUserId() {
return this.serviceAccountUserId;
}
private ClientServiceAccountRealmRoleArgs() {}
private ClientServiceAccountRealmRoleArgs(ClientServiceAccountRealmRoleArgs $) {
this.realmId = $.realmId;
this.role = $.role;
this.serviceAccountUserId = $.serviceAccountUserId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ClientServiceAccountRealmRoleArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ClientServiceAccountRealmRoleArgs $;
public Builder() {
$ = new ClientServiceAccountRealmRoleArgs();
}
public Builder(ClientServiceAccountRealmRoleArgs defaults) {
$ = new ClientServiceAccountRealmRoleArgs(Objects.requireNonNull(defaults));
}
/**
* @param realmId The realm that the client and role belong to.
*
* @return builder
*
*/
public Builder realmId(Output realmId) {
$.realmId = realmId;
return this;
}
/**
* @param realmId The realm that the client and role belong to.
*
* @return builder
*
*/
public Builder realmId(String realmId) {
return realmId(Output.of(realmId));
}
/**
* @param role The name of the role that is assigned.
*
* @return builder
*
*/
public Builder role(Output role) {
$.role = role;
return this;
}
/**
* @param role The name of the role that is assigned.
*
* @return builder
*
*/
public Builder role(String role) {
return role(Output.of(role));
}
/**
* @param serviceAccountUserId The id of the service account that is assigned the role (the service account of the client that "consumes" the role).
*
* @return builder
*
*/
public Builder serviceAccountUserId(Output serviceAccountUserId) {
$.serviceAccountUserId = serviceAccountUserId;
return this;
}
/**
* @param serviceAccountUserId The id of the service account that is assigned the role (the service account of the client that "consumes" the role).
*
* @return builder
*
*/
public Builder serviceAccountUserId(String serviceAccountUserId) {
return serviceAccountUserId(Output.of(serviceAccountUserId));
}
public ClientServiceAccountRealmRoleArgs build() {
if ($.realmId == null) {
throw new MissingRequiredPropertyException("ClientServiceAccountRealmRoleArgs", "realmId");
}
if ($.role == null) {
throw new MissingRequiredPropertyException("ClientServiceAccountRealmRoleArgs", "role");
}
if ($.serviceAccountUserId == null) {
throw new MissingRequiredPropertyException("ClientServiceAccountRealmRoleArgs", "serviceAccountUserId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy