1. Packages
  2. Aiven
  3. API Docs
  4. FlinkApplicationVersion
Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi

aiven.FlinkApplicationVersion

Explore with Pulumi AI

aiven logo
Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi

    The Flink Application Version resource allows the creation and management of Aiven Flink Application Versions.

    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.

    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:

    ApplicationId string
    Application ID
    Project string
    Identifies 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.
    ServiceName string
    Specifies 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<FlinkApplicationVersionSink>
    Application sink
    Sinks List<FlinkApplicationVersionSink>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    Source List<FlinkApplicationVersionSource>
    Application source
    Sources List<FlinkApplicationVersionSource>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    ApplicationId string
    Application ID
    Project string
    Identifies 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.
    ServiceName string
    Specifies 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 []FlinkApplicationVersionSinkArgs
    Application sink
    Sinks []FlinkApplicationVersionSinkArgs
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    Source []FlinkApplicationVersionSourceArgs
    Application source
    Sources []FlinkApplicationVersionSourceArgs
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    applicationId String
    Application ID
    project String
    Identifies 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.
    serviceName String
    Specifies 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<FlinkApplicationVersionSink>
    Application sink
    sinks List<FlinkApplicationVersionSink>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source List<FlinkApplicationVersionSource>
    Application source
    sources List<FlinkApplicationVersionSource>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    applicationId string
    Application ID
    project string
    Identifies 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.
    serviceName string
    Specifies 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 FlinkApplicationVersionSink[]
    Application sink
    sinks FlinkApplicationVersionSink[]
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source FlinkApplicationVersionSource[]
    Application source
    sources FlinkApplicationVersionSource[]
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    application_id str
    Application ID
    project str
    Identifies 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
    Specifies 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[FlinkApplicationVersionSinkArgs]
    Application sink
    sinks Sequence[FlinkApplicationVersionSinkArgs]
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source Sequence[FlinkApplicationVersionSourceArgs]
    Application source
    sources Sequence[FlinkApplicationVersionSourceArgs]
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    applicationId String
    Application ID
    project String
    Identifies 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.
    serviceName String
    Specifies 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>
    Application sink
    sinks List<Property Map>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source List<Property Map>
    Application source
    sources List<Property Map>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FlinkApplicationVersion resource produces the following output properties:

    ApplicationVersionId string
    Application version ID
    CreatedAt string
    Application version creation time
    CreatedBy string
    Application version creator
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    Application version number
    ApplicationVersionId string
    Application version ID
    CreatedAt string
    Application version creation time
    CreatedBy string
    Application version creator
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    Application version number
    applicationVersionId String
    Application version ID
    createdAt String
    Application version creation time
    createdBy String
    Application version creator
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    Application version number
    applicationVersionId string
    Application version ID
    createdAt string
    Application version creation time
    createdBy string
    Application version creator
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    Application version number
    application_version_id str
    Application version ID
    created_at str
    Application version creation time
    created_by str
    Application version creator
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    Application version number
    applicationVersionId String
    Application version ID
    createdAt String
    Application version creation time
    createdBy String
    Application version creator
    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.
    The following state arguments are supported:
    ApplicationId string
    Application ID
    ApplicationVersionId string
    Application version ID
    CreatedAt string
    Application version creation time
    CreatedBy string
    Application version creator
    Project string
    Identifies 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.
    ServiceName string
    Specifies 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<FlinkApplicationVersionSink>
    Application sink
    Sinks List<FlinkApplicationVersionSink>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    Source List<FlinkApplicationVersionSource>
    Application source
    Sources List<FlinkApplicationVersionSource>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    Statement string
    Job SQL statement
    Version int
    Application version number
    ApplicationId string
    Application ID
    ApplicationVersionId string
    Application version ID
    CreatedAt string
    Application version creation time
    CreatedBy string
    Application version creator
    Project string
    Identifies 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.
    ServiceName string
    Specifies 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 []FlinkApplicationVersionSinkArgs
    Application sink
    Sinks []FlinkApplicationVersionSinkArgs
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    Source []FlinkApplicationVersionSourceArgs
    Application source
    Sources []FlinkApplicationVersionSourceArgs
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    Statement string
    Job SQL statement
    Version int
    Application version number
    applicationId String
    Application ID
    applicationVersionId String
    Application version ID
    createdAt String
    Application version creation time
    createdBy String
    Application version creator
    project String
    Identifies 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.
    serviceName String
    Specifies 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<FlinkApplicationVersionSink>
    Application sink
    sinks List<FlinkApplicationVersionSink>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source List<FlinkApplicationVersionSource>
    Application source
    sources List<FlinkApplicationVersionSource>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    statement String
    Job SQL statement
    version Integer
    Application version number
    applicationId string
    Application ID
    applicationVersionId string
    Application version ID
    createdAt string
    Application version creation time
    createdBy string
    Application version creator
    project string
    Identifies 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.
    serviceName string
    Specifies 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 FlinkApplicationVersionSink[]
    Application sink
    sinks FlinkApplicationVersionSink[]
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source FlinkApplicationVersionSource[]
    Application source
    sources FlinkApplicationVersionSource[]
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    statement string
    Job SQL statement
    version number
    Application version number
    application_id str
    Application ID
    application_version_id str
    Application version ID
    created_at str
    Application version creation time
    created_by str
    Application version creator
    project str
    Identifies 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
    Specifies 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[FlinkApplicationVersionSinkArgs]
    Application sink
    sinks Sequence[FlinkApplicationVersionSinkArgs]
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source Sequence[FlinkApplicationVersionSourceArgs]
    Application source
    sources Sequence[FlinkApplicationVersionSourceArgs]
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    statement str
    Job SQL statement
    version int
    Application version number
    applicationId String
    Application ID
    applicationVersionId String
    Application version ID
    createdAt String
    Application version creation time
    createdBy String
    Application version creator
    project String
    Identifies 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.
    serviceName String
    Specifies 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>
    Application sink
    sinks List<Property Map>
    Application sinks

    Deprecated: This field is deprecated and will be removed in the next major release. Use sink instead.

    source List<Property Map>
    Application source
    sources List<Property Map>
    Application sources

    Deprecated: This field is deprecated and will be removed in the next major release. Use source instead.

    statement String
    Job SQL statement
    version Number
    Application version number

    Supporting Types

    FlinkApplicationVersionSink, FlinkApplicationVersionSinkArgs

    CreateTable string
    The CREATE TABLE statement
    IntegrationId string
    The integration ID
    CreateTable string
    The CREATE TABLE statement
    IntegrationId string
    The integration ID
    createTable String
    The CREATE TABLE statement
    integrationId String
    The integration ID
    createTable string
    The CREATE TABLE statement
    integrationId string
    The integration ID
    create_table str
    The CREATE TABLE statement
    integration_id str
    The integration ID
    createTable String
    The CREATE TABLE statement
    integrationId String
    The integration ID

    FlinkApplicationVersionSource, FlinkApplicationVersionSourceArgs

    CreateTable string
    The CREATE TABLE statement
    IntegrationId string
    The integration ID
    CreateTable string
    The CREATE TABLE statement
    IntegrationId string
    The integration ID
    createTable String
    The CREATE TABLE statement
    integrationId String
    The integration ID
    createTable string
    The CREATE TABLE statement
    integrationId string
    The integration ID
    create_table str
    The CREATE TABLE statement
    integration_id str
    The integration ID
    createTable String
    The CREATE TABLE statement
    integrationId String
    The integration ID

    Import

    $ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion v1 project/service/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.
    aiven logo
    Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi