All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.authorization.ManagementLockAtResourceLevel Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.authorization;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.authorization.ManagementLockAtResourceLevelArgs;
import com.pulumi.azurenative.authorization.outputs.ManagementLockOwnerResponse;
import com.pulumi.azurenative.authorization.outputs.SystemDataResponse;
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;

/**
 * The lock information.
 * Azure REST API version: 2020-05-01. Prior API version in Azure Native 1.x: 2017-04-01.
 * 
 * ## Example Usage
 * ### Create management lock at resource level
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.authorization.ManagementLockAtResourceLevel;
 * import com.pulumi.azurenative.authorization.ManagementLockAtResourceLevelArgs;
 * 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 {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var managementLockAtResourceLevel = new ManagementLockAtResourceLevel("managementLockAtResourceLevel", ManagementLockAtResourceLevelArgs.builder()
 *             .level("ReadOnly")
 *             .lockName("testlock")
 *             .parentResourcePath("parentResourcePath")
 *             .resourceGroupName("resourcegroupname")
 *             .resourceName("teststorageaccount")
 *             .resourceProviderNamespace("Microsoft.Storage")
 *             .resourceType("storageAccounts")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:authorization:ManagementLockAtResourceLevel testlock /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{parentResourcePath}/{resourceType}/{resourceName}/providers/Microsoft.Authorization/locks/{lockName} * ``` * */ @ResourceType(type="azure-native:authorization:ManagementLockAtResourceLevel") public class ManagementLockAtResourceLevel extends com.pulumi.resources.CustomResource { /** * The level of the lock. Possible values are: NotSpecified, CanNotDelete, ReadOnly. CanNotDelete means authorized users are able to read and modify the resources, but not delete. ReadOnly means authorized users can only read from a resource, but they can't modify or delete it. * */ @Export(name="level", refs={String.class}, tree="[0]") private Output level; /** * @return The level of the lock. Possible values are: NotSpecified, CanNotDelete, ReadOnly. CanNotDelete means authorized users are able to read and modify the resources, but not delete. ReadOnly means authorized users can only read from a resource, but they can't modify or delete it. * */ public Output level() { return this.level; } /** * The name of the lock. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the lock. * */ public Output name() { return this.name; } /** * Notes about the lock. Maximum of 512 characters. * */ @Export(name="notes", refs={String.class}, tree="[0]") private Output notes; /** * @return Notes about the lock. Maximum of 512 characters. * */ public Output> notes() { return Codegen.optional(this.notes); } /** * The owners of the lock. * */ @Export(name="owners", refs={List.class,ManagementLockOwnerResponse.class}, tree="[0,1]") private Output> owners; /** * @return The owners of the lock. * */ public Output>> owners() { return Codegen.optional(this.owners); } /** * Metadata pertaining to creation and last modification of the resource. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return Metadata pertaining to creation and last modification of the resource. * */ public Output systemData() { return this.systemData; } /** * The resource type of the lock - Microsoft.Authorization/locks. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The resource type of the lock - Microsoft.Authorization/locks. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public ManagementLockAtResourceLevel(java.lang.String name) { this(name, ManagementLockAtResourceLevelArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ManagementLockAtResourceLevel(java.lang.String name, ManagementLockAtResourceLevelArgs 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 ManagementLockAtResourceLevel(java.lang.String name, ManagementLockAtResourceLevelArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:authorization:ManagementLockAtResourceLevel", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ManagementLockAtResourceLevel(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:authorization:ManagementLockAtResourceLevel", name, null, makeResourceOptions(options, id), false); } private static ManagementLockAtResourceLevelArgs makeArgs(ManagementLockAtResourceLevelArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? ManagementLockAtResourceLevelArgs.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:authorization/v20160901:ManagementLockAtResourceLevel").build()), Output.of(Alias.builder().type("azure-native:authorization/v20170401:ManagementLockAtResourceLevel").build()), Output.of(Alias.builder().type("azure-native:authorization/v20200501:ManagementLockAtResourceLevel").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 ManagementLockAtResourceLevel get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ManagementLockAtResourceLevel(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy