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.gcp.pubsub.kotlin.SchemaArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.pubsub.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.pubsub.SchemaArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A schema is a format that messages must follow,
* creating a contract between publisher and subscriber that Pub/Sub will enforce.
* To get more information about Schema, see:
* * [API documentation](https://cloud.google.com/pubsub/docs/reference/rest/v1/projects.schemas)
* * How-to Guides
* * [Creating and managing schemas](https://cloud.google.com/pubsub/docs/schemas)
* ## Example Usage
* ### Pubsub Schema Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const example = new gcp.pubsub.Schema("example", {
* name: "example-schema",
* type: "AVRO",
* definition: `{
* "type" : "record",
* "name" : "Avro",
* "fields" : [
* {
* "name" : "StringField",
* "type" : "string"
* },
* {
* "name" : "IntField",
* "type" : "int"
* }
* ]
* }
* `,
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* example = gcp.pubsub.Schema("example",
* name="example-schema",
* type="AVRO",
* definition="""{
* "type" : "record",
* "name" : "Avro",
* "fields" : [
* {
* "name" : "StringField",
* "type" : "string"
* },
* {
* "name" : "IntField",
* "type" : "int"
* }
* ]
* }
* """)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var example = new Gcp.PubSub.Schema("example", new()
* {
* Name = "example-schema",
* Type = "AVRO",
* Definition = @"{
* ""type"" : ""record"",
* ""name"" : ""Avro"",
* ""fields"" : [
* {
* ""name"" : ""StringField"",
* ""type"" : ""string""
* },
* {
* ""name"" : ""IntField"",
* ""type"" : ""int""
* }
* ]
* }
* ",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := pubsub.NewSchema(ctx, "example", &pubsub.SchemaArgs{
* Name: pulumi.String("example-schema"),
* Type: pulumi.String("AVRO"),
* Definition: pulumi.String(`{
* "type" : "record",
* "name" : "Avro",
* "fields" : [
* {
* "name" : "StringField",
* "type" : "string"
* },
* {
* "name" : "IntField",
* "type" : "int"
* }
* ]
* }
* `),
* })
* 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.gcp.pubsub.Schema;
* import com.pulumi.gcp.pubsub.SchemaArgs;
* 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 example = new Schema("example", SchemaArgs.builder()
* .name("example-schema")
* .type("AVRO")
* .definition("""
* {
* "type" : "record",
* "name" : "Avro",
* "fields" : [
* {
* "name" : "StringField",
* "type" : "string"
* },
* {
* "name" : "IntField",
* "type" : "int"
* }
* ]
* }
* """)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: gcp:pubsub:Schema
* properties:
* name: example-schema
* type: AVRO
* definition: |
* {
* "type" : "record",
* "name" : "Avro",
* "fields" : [
* {
* "name" : "StringField",
* "type" : "string"
* },
* {
* "name" : "IntField",
* "type" : "int"
* }
* ]
* }
* ```
*
* ### Pubsub Schema Protobuf
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const example = new gcp.pubsub.Schema("example", {
* name: "example",
* type: "PROTOCOL_BUFFER",
* definition: `syntax = "proto3";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* }`,
* });
* const exampleTopic = new gcp.pubsub.Topic("example", {
* name: "example-topic",
* schemaSettings: {
* schema: "projects/my-project-name/schemas/example",
* encoding: "JSON",
* },
* }, {
* dependsOn: [example],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* example = gcp.pubsub.Schema("example",
* name="example",
* type="PROTOCOL_BUFFER",
* definition="""syntax = "proto3";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* }""")
* example_topic = gcp.pubsub.Topic("example",
* name="example-topic",
* schema_settings={
* "schema": "projects/my-project-name/schemas/example",
* "encoding": "JSON",
* },
* opts = pulumi.ResourceOptions(depends_on=[example]))
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var example = new Gcp.PubSub.Schema("example", new()
* {
* Name = "example",
* Type = "PROTOCOL_BUFFER",
* Definition = @"syntax = ""proto3"";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* }",
* });
* var exampleTopic = new Gcp.PubSub.Topic("example", new()
* {
* Name = "example-topic",
* SchemaSettings = new Gcp.PubSub.Inputs.TopicSchemaSettingsArgs
* {
* Schema = "projects/my-project-name/schemas/example",
* Encoding = "JSON",
* },
* }, new CustomResourceOptions
* {
* DependsOn =
* {
* example,
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := pubsub.NewSchema(ctx, "example", &pubsub.SchemaArgs{
* Name: pulumi.String("example"),
* Type: pulumi.String("PROTOCOL_BUFFER"),
* Definition: pulumi.String(`syntax = "proto3";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* }`),
* })
* if err != nil {
* return err
* }
* _, err = pubsub.NewTopic(ctx, "example", &pubsub.TopicArgs{
* Name: pulumi.String("example-topic"),
* SchemaSettings: &pubsub.TopicSchemaSettingsArgs{
* Schema: pulumi.String("projects/my-project-name/schemas/example"),
* Encoding: pulumi.String("JSON"),
* },
* }, pulumi.DependsOn([]pulumi.Resource{
* example,
* }))
* 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.gcp.pubsub.Schema;
* import com.pulumi.gcp.pubsub.SchemaArgs;
* import com.pulumi.gcp.pubsub.Topic;
* import com.pulumi.gcp.pubsub.TopicArgs;
* import com.pulumi.gcp.pubsub.inputs.TopicSchemaSettingsArgs;
* import com.pulumi.resources.CustomResourceOptions;
* 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 example = new Schema("example", SchemaArgs.builder()
* .name("example")
* .type("PROTOCOL_BUFFER")
* .definition("""
* syntax = "proto3";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* } """)
* .build());
* var exampleTopic = new Topic("exampleTopic", TopicArgs.builder()
* .name("example-topic")
* .schemaSettings(TopicSchemaSettingsArgs.builder()
* .schema("projects/my-project-name/schemas/example")
* .encoding("JSON")
* .build())
* .build(), CustomResourceOptions.builder()
* .dependsOn(example)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: gcp:pubsub:Schema
* properties:
* name: example
* type: PROTOCOL_BUFFER
* definition: |-
* syntax = "proto3";
* message Results {
* string message_request = 1;
* string message_response = 2;
* string timestamp_request = 3;
* string timestamp_response = 4;
* }
* exampleTopic:
* type: gcp:pubsub:Topic
* name: example
* properties:
* name: example-topic
* schemaSettings:
* schema: projects/my-project-name/schemas/example
* encoding: JSON
* options:
* dependson:
* - ${example}
* ```
*
* ## Import
* Schema can be imported using any of these accepted formats:
* * `projects/{{project}}/schemas/{{name}}`
* * `{{project}}/{{name}}`
* * `{{name}}`
* When using the `pulumi import` command, Schema can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:pubsub/schema:Schema default projects/{{project}}/schemas/{{name}}
* ```
* ```sh
* $ pulumi import gcp:pubsub/schema:Schema default {{project}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:pubsub/schema:Schema default {{name}}
* ```
* @property definition The definition of the schema.
* This should contain a string representing the full definition of the schema
* that is a valid schema definition of the type specified in type. Changes
* to the definition commit new [schema revisions](https://cloud.google.com/pubsub/docs/commit-schema-revision).
* A schema can only have up to 20 revisions, so updates that fail with an
* error indicating that the limit has been reached require manually
* [deleting old revisions](https://cloud.google.com/pubsub/docs/delete-schema-revision).
* @property name The ID to use for the schema, which will become the final component of the schema's resource name.
* - - -
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property type The type of the schema definition
* Default value is `TYPE_UNSPECIFIED`.
* Possible values are: `TYPE_UNSPECIFIED`, `PROTOCOL_BUFFER`, `AVRO`.
*/
public data class SchemaArgs(
public val definition: Output? = null,
public val name: Output? = null,
public val project: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.pubsub.SchemaArgs =
com.pulumi.gcp.pubsub.SchemaArgs.builder()
.definition(definition?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SchemaArgs].
*/
@PulumiTagMarker
public class SchemaArgsBuilder internal constructor() {
private var definition: Output? = null
private var name: Output? = null
private var project: Output? = null
private var type: Output? = null
/**
* @param value The definition of the schema.
* This should contain a string representing the full definition of the schema
* that is a valid schema definition of the type specified in type. Changes
* to the definition commit new [schema revisions](https://cloud.google.com/pubsub/docs/commit-schema-revision).
* A schema can only have up to 20 revisions, so updates that fail with an
* error indicating that the limit has been reached require manually
* [deleting old revisions](https://cloud.google.com/pubsub/docs/delete-schema-revision).
*/
@JvmName("xerjeegprrnhwehh")
public suspend fun definition(`value`: Output) {
this.definition = value
}
/**
* @param value The ID to use for the schema, which will become the final component of the schema's resource name.
* - - -
*/
@JvmName("ijkyylcuvfkfdwyh")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("leqwatfhdjuxqccf")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The type of the schema definition
* Default value is `TYPE_UNSPECIFIED`.
* Possible values are: `TYPE_UNSPECIFIED`, `PROTOCOL_BUFFER`, `AVRO`.
*/
@JvmName("mgadepkuprbiqoqo")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The definition of the schema.
* This should contain a string representing the full definition of the schema
* that is a valid schema definition of the type specified in type. Changes
* to the definition commit new [schema revisions](https://cloud.google.com/pubsub/docs/commit-schema-revision).
* A schema can only have up to 20 revisions, so updates that fail with an
* error indicating that the limit has been reached require manually
* [deleting old revisions](https://cloud.google.com/pubsub/docs/delete-schema-revision).
*/
@JvmName("ibcqrfttsjqimncl")
public suspend fun definition(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.definition = mapped
}
/**
* @param value The ID to use for the schema, which will become the final component of the schema's resource name.
* - - -
*/
@JvmName("vcwrdcuhoghlxfhu")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("krvdjmoboxhckylq")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The type of the schema definition
* Default value is `TYPE_UNSPECIFIED`.
* Possible values are: `TYPE_UNSPECIFIED`, `PROTOCOL_BUFFER`, `AVRO`.
*/
@JvmName("cfcjldvahqjayxhl")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): SchemaArgs = SchemaArgs(
definition = definition,
name = name,
project = project,
type = type,
)
}