aiven.FlinkApplicationVersion
Explore with Pulumi AI
Creates and manages an Aiven for Apache FlinkĀ® application version.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const exampleApp = new aiven.FlinkApplication("example_app", {
project: exampleProject.project,
serviceName: "example-flink-service",
name: "example-app",
});
const main = new aiven.FlinkApplicationVersion("main", {
project: exampleProject.project,
serviceName: exampleFlink.serviceName,
applicationId: exampleApp.applicationId,
statement: " INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\n",
sinks: [{
createTable: ` CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
`,
integrationId: flinkToKafka.integrationId,
}],
sources: [{
createTable: ` CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
`,
integrationId: flinkToKafka.integrationId,
}],
});
import pulumi
import pulumi_aiven as aiven
example_app = aiven.FlinkApplication("example_app",
project=example_project["project"],
service_name="example-flink-service",
name="example-app")
main = aiven.FlinkApplicationVersion("main",
project=example_project["project"],
service_name=example_flink["serviceName"],
application_id=example_app.application_id,
statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\n",
sinks=[{
"create_table": """ CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
""",
"integration_id": flink_to_kafka["integrationId"],
}],
sources=[{
"create_table": """ CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
""",
"integration_id": flink_to_kafka["integrationId"],
}])
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleApp, err := aiven.NewFlinkApplication(ctx, "example_app", &aiven.FlinkApplicationArgs{
Project: pulumi.Any(exampleProject.Project),
ServiceName: pulumi.String("example-flink-service"),
Name: pulumi.String("example-app"),
})
if err != nil {
return err
}
_, err = aiven.NewFlinkApplicationVersion(ctx, "main", &aiven.FlinkApplicationVersionArgs{
Project: pulumi.Any(exampleProject.Project),
ServiceName: pulumi.Any(exampleFlink.ServiceName),
ApplicationId: exampleApp.ApplicationId,
Statement: pulumi.String(" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\n"),
Sinks: aiven.FlinkApplicationVersionSinkArray{
&aiven.FlinkApplicationVersionSinkArgs{
CreateTable: pulumi.String(` CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
`),
IntegrationId: pulumi.Any(flinkToKafka.IntegrationId),
},
},
Sources: aiven.FlinkApplicationVersionSourceArray{
&aiven.FlinkApplicationVersionSourceArgs{
CreateTable: pulumi.String(` CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
`),
IntegrationId: pulumi.Any(flinkToKafka.IntegrationId),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var exampleApp = new Aiven.FlinkApplication("example_app", new()
{
Project = exampleProject.Project,
ServiceName = "example-flink-service",
Name = "example-app",
});
var main = new Aiven.FlinkApplicationVersion("main", new()
{
Project = exampleProject.Project,
ServiceName = exampleFlink.ServiceName,
ApplicationId = exampleApp.ApplicationId,
Statement = @" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'
",
Sinks = new[]
{
new Aiven.Inputs.FlinkApplicationVersionSinkArgs
{
CreateTable = @" CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
",
IntegrationId = flinkToKafka.IntegrationId,
},
},
Sources = new[]
{
new Aiven.Inputs.FlinkApplicationVersionSourceArgs
{
CreateTable = @" CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
",
IntegrationId = flinkToKafka.IntegrationId,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.FlinkApplication;
import com.pulumi.aiven.FlinkApplicationArgs;
import com.pulumi.aiven.FlinkApplicationVersion;
import com.pulumi.aiven.FlinkApplicationVersionArgs;
import com.pulumi.aiven.inputs.FlinkApplicationVersionSinkArgs;
import com.pulumi.aiven.inputs.FlinkApplicationVersionSourceArgs;
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 exampleApp = new FlinkApplication("exampleApp", FlinkApplicationArgs.builder()
.project(exampleProject.project())
.serviceName("example-flink-service")
.name("example-app")
.build());
var main = new FlinkApplicationVersion("main", FlinkApplicationVersionArgs.builder()
.project(exampleProject.project())
.serviceName(exampleFlink.serviceName())
.applicationId(exampleApp.applicationId())
.statement("""
INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'
""")
.sinks(FlinkApplicationVersionSinkArgs.builder()
.createTable("""
CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
""")
.integrationId(flinkToKafka.integrationId())
.build())
.sources(FlinkApplicationVersionSourceArgs.builder()
.createTable("""
CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
""")
.integrationId(flinkToKafka.integrationId())
.build())
.build());
}
}
resources:
exampleApp:
type: aiven:FlinkApplication
name: example_app
properties:
project: ${exampleProject.project}
serviceName: example-flink-service
name: example-app
main:
type: aiven:FlinkApplicationVersion
properties:
project: ${exampleProject.project}
serviceName: ${exampleFlink.serviceName}
applicationId: ${exampleApp.applicationId}
statement: |2
INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'
sinks:
- createTable: |2
CREATE TABLE kafka_known_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'sink_topic',
'value.format' = 'json'
)
integrationId: ${flinkToKafka.integrationId}
sources:
- createTable: |2
CREATE TABLE kafka_pizza (
shop STRING,
name STRING
) WITH (
'connector' = 'kafka',
'properties.bootstrap.servers' = '',
'scan.startup.mode' = 'earliest-offset',
'topic' = 'source_topic',
'value.format' = 'json'
)
integrationId: ${flinkToKafka.integrationId}
Create FlinkApplicationVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FlinkApplicationVersion(name: string, args: FlinkApplicationVersionArgs, opts?: CustomResourceOptions);
@overload
def FlinkApplicationVersion(resource_name: str,
args: FlinkApplicationVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FlinkApplicationVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
statement: Optional[str] = None,
sink: Optional[Sequence[FlinkApplicationVersionSinkArgs]] = None,
sinks: Optional[Sequence[FlinkApplicationVersionSinkArgs]] = None,
source: Optional[Sequence[FlinkApplicationVersionSourceArgs]] = None,
sources: Optional[Sequence[FlinkApplicationVersionSourceArgs]] = None)
func NewFlinkApplicationVersion(ctx *Context, name string, args FlinkApplicationVersionArgs, opts ...ResourceOption) (*FlinkApplicationVersion, error)
public FlinkApplicationVersion(string name, FlinkApplicationVersionArgs args, CustomResourceOptions? opts = null)
public FlinkApplicationVersion(String name, FlinkApplicationVersionArgs args)
public FlinkApplicationVersion(String name, FlinkApplicationVersionArgs args, CustomResourceOptions options)
type: aiven:FlinkApplicationVersion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FlinkApplicationVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FlinkApplicationVersionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FlinkApplicationVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FlinkApplicationVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FlinkApplicationVersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var flinkApplicationVersionResource = new Aiven.FlinkApplicationVersion("flinkApplicationVersionResource", new()
{
ApplicationId = "string",
Project = "string",
ServiceName = "string",
Statement = "string",
Sink = new[]
{
new Aiven.Inputs.FlinkApplicationVersionSinkArgs
{
CreateTable = "string",
IntegrationId = "string",
},
},
Source = new[]
{
new Aiven.Inputs.FlinkApplicationVersionSourceArgs
{
CreateTable = "string",
IntegrationId = "string",
},
},
});
example, err := aiven.NewFlinkApplicationVersion(ctx, "flinkApplicationVersionResource", &aiven.FlinkApplicationVersionArgs{
ApplicationId: pulumi.String("string"),
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Statement: pulumi.String("string"),
Sink: aiven.FlinkApplicationVersionSinkArray{
&aiven.FlinkApplicationVersionSinkArgs{
CreateTable: pulumi.String("string"),
IntegrationId: pulumi.String("string"),
},
},
Source: aiven.FlinkApplicationVersionSourceArray{
&aiven.FlinkApplicationVersionSourceArgs{
CreateTable: pulumi.String("string"),
IntegrationId: pulumi.String("string"),
},
},
})
var flinkApplicationVersionResource = new FlinkApplicationVersion("flinkApplicationVersionResource", FlinkApplicationVersionArgs.builder()
.applicationId("string")
.project("string")
.serviceName("string")
.statement("string")
.sink(FlinkApplicationVersionSinkArgs.builder()
.createTable("string")
.integrationId("string")
.build())
.source(FlinkApplicationVersionSourceArgs.builder()
.createTable("string")
.integrationId("string")
.build())
.build());
flink_application_version_resource = aiven.FlinkApplicationVersion("flinkApplicationVersionResource",
application_id="string",
project="string",
service_name="string",
statement="string",
sink=[aiven.FlinkApplicationVersionSinkArgs(
create_table="string",
integration_id="string",
)],
source=[aiven.FlinkApplicationVersionSourceArgs(
create_table="string",
integration_id="string",
)])
const flinkApplicationVersionResource = new aiven.FlinkApplicationVersion("flinkApplicationVersionResource", {
applicationId: "string",
project: "string",
serviceName: "string",
statement: "string",
sink: [{
createTable: "string",
integrationId: "string",
}],
source: [{
createTable: "string",
integrationId: "string",
}],
});
type: aiven:FlinkApplicationVersion
properties:
applicationId: string
project: string
serviceName: string
sink:
- createTable: string
integrationId: string
source:
- createTable: string
integrationId: string
statement: string
FlinkApplicationVersion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FlinkApplicationVersion resource accepts the following input properties:
- Application
Id string - Application ID.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Statement string
- Job SQL statement.
- Sink
List<Flink
Application Version Sink> - The sink table for the application.
- Sinks
List<Flink
Application Version Sink> - Application sinks
- Source
List<Flink
Application Version Source> - The source table for the application.
- Sources
List<Flink
Application Version Source> - Application sources
- Application
Id string - Application ID.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Statement string
- Job SQL statement.
- Sink
[]Flink
Application Version Sink Args - The sink table for the application.
- Sinks
[]Flink
Application Version Sink Args - Application sinks
- Source
[]Flink
Application Version Source Args - The source table for the application.
- Sources
[]Flink
Application Version Source Args - Application sources
- application
Id String - Application ID.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- statement String
- Job SQL statement.
- sink
List<Flink
Application Version Sink> - The sink table for the application.
- sinks
List<Flink
Application Version Sink> - Application sinks
- source
List<Flink
Application Version Source> - The source table for the application.
- sources
List<Flink
Application Version Source> - Application sources
- application
Id string - Application ID.
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- statement string
- Job SQL statement.
- sink
Flink
Application Version Sink[] - The sink table for the application.
- sinks
Flink
Application Version Sink[] - Application sinks
- source
Flink
Application Version Source[] - The source table for the application.
- sources
Flink
Application Version Source[] - Application sources
- application_
id str - Application ID.
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- statement str
- Job SQL statement.
- sink
Sequence[Flink
Application Version Sink Args] - The sink table for the application.
- sinks
Sequence[Flink
Application Version Sink Args] - Application sinks
- source
Sequence[Flink
Application Version Source Args] - The source table for the application.
- sources
Sequence[Flink
Application Version Source Args] - Application sources
- application
Id String - Application ID.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- statement String
- Job SQL statement.
- sink List<Property Map>
- The sink table for the application.
- sinks List<Property Map>
- Application sinks
- source List<Property Map>
- The source table for the application.
- sources List<Property Map>
- Application sources
Outputs
All input properties are implicitly available as output properties. Additionally, the FlinkApplicationVersion resource produces the following output properties:
- Application
Version stringId - Application version ID.
- Created
At string - Application version creation time.
- Created
By string - The user who created the application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Version int
- Application version number.
- Application
Version stringId - Application version ID.
- Created
At string - Application version creation time.
- Created
By string - The user who created the application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Version int
- Application version number.
- application
Version StringId - Application version ID.
- created
At String - Application version creation time.
- created
By String - The user who created the application.
- id String
- The provider-assigned unique ID for this managed resource.
- version Integer
- Application version number.
- application
Version stringId - Application version ID.
- created
At string - Application version creation time.
- created
By string - The user who created the application.
- id string
- The provider-assigned unique ID for this managed resource.
- version number
- Application version number.
- application_
version_ strid - Application version ID.
- created_
at str - Application version creation time.
- created_
by str - The user who created the application.
- id str
- The provider-assigned unique ID for this managed resource.
- version int
- Application version number.
- application
Version StringId - Application version ID.
- created
At String - Application version creation time.
- created
By String - The user who created the application.
- id String
- The provider-assigned unique ID for this managed resource.
- version Number
- Application version number.
Look up Existing FlinkApplicationVersion Resource
Get an existing FlinkApplicationVersion resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FlinkApplicationVersionState, opts?: CustomResourceOptions): FlinkApplicationVersion
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
application_version_id: Optional[str] = None,
created_at: Optional[str] = None,
created_by: Optional[str] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
sink: Optional[Sequence[FlinkApplicationVersionSinkArgs]] = None,
sinks: Optional[Sequence[FlinkApplicationVersionSinkArgs]] = None,
source: Optional[Sequence[FlinkApplicationVersionSourceArgs]] = None,
sources: Optional[Sequence[FlinkApplicationVersionSourceArgs]] = None,
statement: Optional[str] = None,
version: Optional[int] = None) -> FlinkApplicationVersion
func GetFlinkApplicationVersion(ctx *Context, name string, id IDInput, state *FlinkApplicationVersionState, opts ...ResourceOption) (*FlinkApplicationVersion, error)
public static FlinkApplicationVersion Get(string name, Input<string> id, FlinkApplicationVersionState? state, CustomResourceOptions? opts = null)
public static FlinkApplicationVersion get(String name, Output<String> id, FlinkApplicationVersionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
Id string - Application ID.
- Application
Version stringId - Application version ID.
- Created
At string - Application version creation time.
- Created
By string - The user who created the application.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Sink
List<Flink
Application Version Sink> - The sink table for the application.
- Sinks
List<Flink
Application Version Sink> - Application sinks
- Source
List<Flink
Application Version Source> - The source table for the application.
- Sources
List<Flink
Application Version Source> - Application sources
- Statement string
- Job SQL statement.
- Version int
- Application version number.
- Application
Id string - Application ID.
- Application
Version stringId - Application version ID.
- Created
At string - Application version creation time.
- Created
By string - The user who created the application.
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Sink
[]Flink
Application Version Sink Args - The sink table for the application.
- Sinks
[]Flink
Application Version Sink Args - Application sinks
- Source
[]Flink
Application Version Source Args - The source table for the application.
- Sources
[]Flink
Application Version Source Args - Application sources
- Statement string
- Job SQL statement.
- Version int
- Application version number.
- application
Id String - Application ID.
- application
Version StringId - Application version ID.
- created
At String - Application version creation time.
- created
By String - The user who created the application.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- sink
List<Flink
Application Version Sink> - The sink table for the application.
- sinks
List<Flink
Application Version Sink> - Application sinks
- source
List<Flink
Application Version Source> - The source table for the application.
- sources
List<Flink
Application Version Source> - Application sources
- statement String
- Job SQL statement.
- version Integer
- Application version number.
- application
Id string - Application ID.
- application
Version stringId - Application version ID.
- created
At string - Application version creation time.
- created
By string - The user who created the application.
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- sink
Flink
Application Version Sink[] - The sink table for the application.
- sinks
Flink
Application Version Sink[] - Application sinks
- source
Flink
Application Version Source[] - The source table for the application.
- sources
Flink
Application Version Source[] - Application sources
- statement string
- Job SQL statement.
- version number
- Application version number.
- application_
id str - Application ID.
- application_
version_ strid - Application version ID.
- created_
at str - Application version creation time.
- created_
by str - The user who created the application.
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- sink
Sequence[Flink
Application Version Sink Args] - The sink table for the application.
- sinks
Sequence[Flink
Application Version Sink Args] - Application sinks
- source
Sequence[Flink
Application Version Source Args] - The source table for the application.
- sources
Sequence[Flink
Application Version Source Args] - Application sources
- statement str
- Job SQL statement.
- version int
- Application version number.
- application
Id String - Application ID.
- application
Version StringId - Application version ID.
- created
At String - Application version creation time.
- created
By String - The user who created the application.
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- sink List<Property Map>
- The sink table for the application.
- sinks List<Property Map>
- Application sinks
- source List<Property Map>
- The source table for the application.
- sources List<Property Map>
- Application sources
- statement String
- Job SQL statement.
- version Number
- Application version number.
Supporting Types
FlinkApplicationVersionSink, FlinkApplicationVersionSinkArgs
- Create
Table string - The CREATE TABLE statement
- Integration
Id string - The integration ID
- Create
Table string - The CREATE TABLE statement
- Integration
Id string - The integration ID
- create
Table String - The CREATE TABLE statement
- integration
Id String - The integration ID
- create
Table string - The CREATE TABLE statement
- integration
Id string - The integration ID
- create_
table str - The CREATE TABLE statement
- integration_
id str - The integration ID
- create
Table String - The CREATE TABLE statement
- integration
Id String - The integration ID
FlinkApplicationVersionSource, FlinkApplicationVersionSourceArgs
- Create
Table string - The CREATE TABLE statement
- Integration
Id string - The integration ID
- Create
Table string - The CREATE TABLE statement
- Integration
Id string - The integration ID
- create
Table String - The CREATE TABLE statement
- integration
Id String - The integration ID
- create
Table string - The CREATE TABLE statement
- integration
Id string - The integration ID
- create_
table str - The CREATE TABLE statement
- integration_
id str - The integration ID
- create
Table String - The CREATE TABLE statement
- integration
Id String - The integration ID
Import
$ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion main PROJECT/SERVICE_NAME/APPLICATION_ID/APPLICATION_VERSION_ID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.