com.pulumi.azurenative.apimanagement.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.apimanagement;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.apimanagement.UserArgs;
import com.pulumi.azurenative.apimanagement.outputs.GroupContractPropertiesResponse;
import com.pulumi.azurenative.apimanagement.outputs.UserIdentityContractResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* User details.
* Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2020-12-01.
*
* Other available API versions: 2016-07-07, 2016-10-10, 2017-03-01, 2018-01-01, 2022-09-01-preview, 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01.
*
* ## Example Usage
* ### ApiManagementCreateUser
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.apimanagement.User;
* import com.pulumi.azurenative.apimanagement.UserArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App }{{@code
* public static void main(String[] args) }{{@code
* Pulumi.run(App::stack);
* }}{@code
*
* public static void stack(Context ctx) }{{@code
* var user = new User("user", UserArgs.builder()
* .confirmation("signup")
* .email("foobar}{@literal @}{@code outlook.com")
* .firstName("foo")
* .lastName("bar")
* .resourceGroupName("rg1")
* .serviceName("apimService1")
* .userId("5931a75ae4bbd512288c680b")
* .build());
*
* }}{@code
* }}{@code
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:apimanagement:User 5931a75ae4bbd512288c680b /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}
* ```
*
*/
@ResourceType(type="azure-native:apimanagement:User")
public class User extends com.pulumi.resources.CustomResource {
/**
* Email address.
*
*/
@Export(name="email", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> email;
/**
* @return Email address.
*
*/
public Output> email() {
return Codegen.optional(this.email);
}
/**
* First name.
*
*/
@Export(name="firstName", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> firstName;
/**
* @return First name.
*
*/
public Output> firstName() {
return Codegen.optional(this.firstName);
}
/**
* Collection of groups user is part of.
*
*/
@Export(name="groups", refs={List.class,GroupContractPropertiesResponse.class}, tree="[0,1]")
private Output> groups;
/**
* @return Collection of groups user is part of.
*
*/
public Output> groups() {
return this.groups;
}
/**
* Collection of user identities.
*
*/
@Export(name="identities", refs={List.class,UserIdentityContractResponse.class}, tree="[0,1]")
private Output* @Nullable */ List> identities;
/**
* @return Collection of user identities.
*
*/
public Output>> identities() {
return Codegen.optional(this.identities);
}
/**
* Last name.
*
*/
@Export(name="lastName", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> lastName;
/**
* @return Last name.
*
*/
public Output> lastName() {
return Codegen.optional(this.lastName);
}
/**
* The name of the resource
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the resource
*
*/
public Output name() {
return this.name;
}
/**
* Optional note about a user set by the administrator.
*
*/
@Export(name="note", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> note;
/**
* @return Optional note about a user set by the administrator.
*
*/
public Output> note() {
return Codegen.optional(this.note);
}
/**
* Date of user registration. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
*
*/
@Export(name="registrationDate", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> registrationDate;
/**
* @return Date of user registration. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
*
*/
public Output> registrationDate() {
return Codegen.optional(this.registrationDate);
}
/**
* Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
*
*/
@Export(name="state", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> state;
/**
* @return Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.
*
*/
public Output> state() {
return Codegen.optional(this.state);
}
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public Output type() {
return this.type;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public User(java.lang.String name) {
this(name, UserArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public User(java.lang.String name, UserArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public User(java.lang.String name, UserArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:apimanagement:User", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private User(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:apimanagement:User", name, null, makeResourceOptions(options, id), false);
}
private static UserArgs makeArgs(UserArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? UserArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:apimanagement/v20160707:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20161010:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20170301:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20180101:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20180601preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20190101:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20191201:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20191201preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20200601preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20201201:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20210101preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20210401preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20210801:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20211201preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20220401preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20220801:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20220901preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20230301preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20230501preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20230901preview:User").build()),
Output.of(Alias.builder().type("azure-native:apimanagement/v20240501:User").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static User get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new User(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy