![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.authorization.kotlin.ManagementLockByScope.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.authorization.kotlin
import com.pulumi.azurenative.authorization.kotlin.outputs.ManagementLockOwnerResponse
import com.pulumi.azurenative.authorization.kotlin.outputs.SystemDataResponse
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import com.pulumi.azurenative.authorization.kotlin.outputs.ManagementLockOwnerResponse.Companion.toKotlin as managementLockOwnerResponseToKotlin
import com.pulumi.azurenative.authorization.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [ManagementLockByScope].
*/
@PulumiTagMarker
public class ManagementLockByScopeResourceBuilder internal constructor() {
public var name: String? = null
public var args: ManagementLockByScopeArgs = ManagementLockByScopeArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend ManagementLockByScopeArgsBuilder.() -> Unit) {
val builder = ManagementLockByScopeArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): ManagementLockByScope {
val builtJavaResource =
com.pulumi.azurenative.authorization.ManagementLockByScope(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ManagementLockByScope(builtJavaResource)
}
}
/**
* 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 scope
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var managementLockByScope = new AzureNative.Authorization.ManagementLockByScope("managementLockByScope", new()
* {
* Level = AzureNative.Authorization.LockLevel.ReadOnly,
* LockName = "testlock",
* Scope = "subscriptions/subscriptionId",
* });
* });
* ```
* ```go
* package main
* import (
* authorization "github.com/pulumi/pulumi-azure-native-sdk/authorization/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := authorization.NewManagementLockByScope(ctx, "managementLockByScope", &authorization.ManagementLockByScopeArgs{
* Level: pulumi.String(authorization.LockLevelReadOnly),
* LockName: pulumi.String("testlock"),
* Scope: pulumi.String("subscriptions/subscriptionId"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.authorization.ManagementLockByScope;
* import com.pulumi.azurenative.authorization.ManagementLockByScopeArgs;
* 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 managementLockByScope = new ManagementLockByScope("managementLockByScope", ManagementLockByScopeArgs.builder()
* .level("ReadOnly")
* .lockName("testlock")
* .scope("subscriptions/subscriptionId")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:authorization:ManagementLockByScope testlock /{scope}/providers/Microsoft.Authorization/locks/{lockName}
* ```
*/
public class ManagementLockByScope internal constructor(
override val javaResource: com.pulumi.azurenative.authorization.ManagementLockByScope,
) : KotlinCustomResource(javaResource, ManagementLockByScopeMapper) {
/**
* 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 val level: Output
get() = javaResource.level().applyValue({ args0 -> args0 })
/**
* The name of the lock.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Notes about the lock. Maximum of 512 characters.
*/
public val notes: Output?
get() = javaResource.notes().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The owners of the lock.
*/
public val owners: Output>?
get() = javaResource.owners().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> managementLockOwnerResponseToKotlin(args0) })
})
}).orElse(null)
})
/**
* Metadata pertaining to creation and last modification of the resource.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* The resource type of the lock - Microsoft.Authorization/locks.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object ManagementLockByScopeMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.authorization.ManagementLockByScope::class == javaResource::class
override fun map(javaResource: Resource): ManagementLockByScope =
ManagementLockByScope(
javaResource as
com.pulumi.azurenative.authorization.ManagementLockByScope,
)
}
/**
* @see [ManagementLockByScope].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ManagementLockByScope].
*/
public suspend fun managementLockByScope(
name: String,
block: suspend ManagementLockByScopeResourceBuilder.() -> Unit,
): ManagementLockByScope {
val builder = ManagementLockByScopeResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ManagementLockByScope].
* @param name The _unique_ name of the resulting resource.
*/
public fun managementLockByScope(name: String): ManagementLockByScope {
val builder = ManagementLockByScopeResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy