com.pulumi.azure.apimanagement.inputs.GetUserArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.apimanagement.inputs;
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 GetUserArgs extends com.pulumi.resources.InvokeArgs {
public static final GetUserArgs Empty = new GetUserArgs();
/**
* The Name of the API Management Service in which this User exists.
*
*/
@Import(name="apiManagementName", required=true)
private Output apiManagementName;
/**
* @return The Name of the API Management Service in which this User exists.
*
*/
public Output apiManagementName() {
return this.apiManagementName;
}
/**
* The Name of the Resource Group in which the API Management Service exists.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The Name of the Resource Group in which the API Management Service exists.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The Identifier for the User.
*
*/
@Import(name="userId", required=true)
private Output userId;
/**
* @return The Identifier for the User.
*
*/
public Output userId() {
return this.userId;
}
private GetUserArgs() {}
private GetUserArgs(GetUserArgs $) {
this.apiManagementName = $.apiManagementName;
this.resourceGroupName = $.resourceGroupName;
this.userId = $.userId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetUserArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetUserArgs $;
public Builder() {
$ = new GetUserArgs();
}
public Builder(GetUserArgs defaults) {
$ = new GetUserArgs(Objects.requireNonNull(defaults));
}
/**
* @param apiManagementName The Name of the API Management Service in which this User exists.
*
* @return builder
*
*/
public Builder apiManagementName(Output apiManagementName) {
$.apiManagementName = apiManagementName;
return this;
}
/**
* @param apiManagementName The Name of the API Management Service in which this User exists.
*
* @return builder
*
*/
public Builder apiManagementName(String apiManagementName) {
return apiManagementName(Output.of(apiManagementName));
}
/**
* @param resourceGroupName The Name of the Resource Group in which the API Management Service exists.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The Name of the Resource Group in which the API Management Service exists.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param userId The Identifier for the User.
*
* @return builder
*
*/
public Builder userId(Output userId) {
$.userId = userId;
return this;
}
/**
* @param userId The Identifier for the User.
*
* @return builder
*
*/
public Builder userId(String userId) {
return userId(Output.of(userId));
}
public GetUserArgs build() {
if ($.apiManagementName == null) {
throw new MissingRequiredPropertyException("GetUserArgs", "apiManagementName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetUserArgs", "resourceGroupName");
}
if ($.userId == null) {
throw new MissingRequiredPropertyException("GetUserArgs", "userId");
}
return $;
}
}
}