All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.aws.schemas.kotlin.Registry.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.schemas.kotlin
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.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [Registry].
*/
@PulumiTagMarker
public class RegistryResourceBuilder internal constructor() {
public var name: String? = null
public var args: RegistryArgs = RegistryArgs()
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 RegistryArgsBuilder.() -> Unit) {
val builder = RegistryArgsBuilder()
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(): Registry {
val builtJavaResource = com.pulumi.aws.schemas.Registry(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Registry(builtJavaResource)
}
}
/**
* Provides an EventBridge Custom Schema Registry resource.
* > **Note:** EventBridge was formerly known as CloudWatch Events. The functionality is identical.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const test = new aws.schemas.Registry("test", {
* name: "my_own_registry",
* description: "A custom schema registry",
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* test = aws.schemas.Registry("test",
* name="my_own_registry",
* description="A custom schema registry")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var test = new Aws.Schemas.Registry("test", new()
* {
* Name = "my_own_registry",
* Description = "A custom schema registry",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/schemas"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := schemas.NewRegistry(ctx, "test", &schemas.RegistryArgs{
* Name: pulumi.String("my_own_registry"),
* Description: pulumi.String("A custom schema registry"),
* })
* 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.aws.schemas.Registry;
* import com.pulumi.aws.schemas.RegistryArgs;
* 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 test = new Registry("test", RegistryArgs.builder()
* .name("my_own_registry")
* .description("A custom schema registry")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* test:
* type: aws:schemas:Registry
* properties:
* name: my_own_registry
* description: A custom schema registry
* ```
*
* ## Import
* Using `pulumi import`, import EventBridge schema registries using the `name`. For example:
* ```sh
* $ pulumi import aws:schemas/registry:Registry test my_own_registry
* ```
*/
public class Registry internal constructor(
override val javaResource: com.pulumi.aws.schemas.Registry,
) : KotlinCustomResource(javaResource, RegistryMapper) {
/**
* The Amazon Resource Name (ARN) of the discoverer.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* The description of the discoverer. Maximum of 256 characters.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The name of the custom event schema registry. Maximum of 64 characters consisting of lower case letters, upper case letters, 0-9, ., -, _.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*/
@Deprecated(
message = """
Please use `tags` instead.
""",
)
public val tagsAll: Output>
get() = javaResource.tagsAll().applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
})
}
public object RegistryMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.aws.schemas.Registry::class == javaResource::class
override fun map(javaResource: Resource): Registry = Registry(
javaResource as
com.pulumi.aws.schemas.Registry,
)
}
/**
* @see [Registry].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Registry].
*/
public suspend fun registry(name: String, block: suspend RegistryResourceBuilder.() -> Unit): Registry {
val builder = RegistryResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Registry].
* @param name The _unique_ name of the resulting resource.
*/
public fun registry(name: String): Registry {
val builder = RegistryResourceBuilder()
builder.name(name)
return builder.build()
}