1. Packages
  2. Aiven Provider
  3. API Docs
  4. FlinkJarApplication
Aiven v6.33.0 published on Thursday, Jan 30, 2025 by Pulumi

aiven.FlinkJarApplication

Explore with Pulumi AI

aiven logo
Aiven v6.33.0 published on Thursday, Jan 30, 2025 by Pulumi

    Creates and manages an Aiven for Apache Flink® jar application.

    This resource is in the beta stage and may change without notice. Set the PROVIDER_AIVEN_ENABLE_BETA environment variable to use the resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aiven from "@pulumi/aiven";
    
    const example = new aiven.Flink("example", {
        project: exampleAivenProject.project,
        serviceName: "example-flink-service",
        cloudName: "google-europe-west1",
        plan: "business-4",
        maintenanceWindowDow: "monday",
        maintenanceWindowTime: "04:00:00",
        flinkUserConfig: {
            customCode: true,
        },
    });
    const exampleFlinkJarApplication = new aiven.FlinkJarApplication("example", {
        project: example.project,
        serviceName: example.serviceName,
        name: "example-app-jar",
    });
    
    import pulumi
    import pulumi_aiven as aiven
    
    example = aiven.Flink("example",
        project=example_aiven_project["project"],
        service_name="example-flink-service",
        cloud_name="google-europe-west1",
        plan="business-4",
        maintenance_window_dow="monday",
        maintenance_window_time="04:00:00",
        flink_user_config={
            "custom_code": True,
        })
    example_flink_jar_application = aiven.FlinkJarApplication("example",
        project=example.project,
        service_name=example.service_name,
        name="example-app-jar")
    
    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 {
    		example, err := aiven.NewFlink(ctx, "example", &aiven.FlinkArgs{
    			Project:               pulumi.Any(exampleAivenProject.Project),
    			ServiceName:           pulumi.String("example-flink-service"),
    			CloudName:             pulumi.String("google-europe-west1"),
    			Plan:                  pulumi.String("business-4"),
    			MaintenanceWindowDow:  pulumi.String("monday"),
    			MaintenanceWindowTime: pulumi.String("04:00:00"),
    			FlinkUserConfig: &aiven.FlinkFlinkUserConfigArgs{
    				CustomCode: pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = aiven.NewFlinkJarApplication(ctx, "example", &aiven.FlinkJarApplicationArgs{
    			Project:     example.Project,
    			ServiceName: example.ServiceName,
    			Name:        pulumi.String("example-app-jar"),
    		})
    		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 example = new Aiven.Flink("example", new()
        {
            Project = exampleAivenProject.Project,
            ServiceName = "example-flink-service",
            CloudName = "google-europe-west1",
            Plan = "business-4",
            MaintenanceWindowDow = "monday",
            MaintenanceWindowTime = "04:00:00",
            FlinkUserConfig = new Aiven.Inputs.FlinkFlinkUserConfigArgs
            {
                CustomCode = true,
            },
        });
    
        var exampleFlinkJarApplication = new Aiven.FlinkJarApplication("example", new()
        {
            Project = example.Project,
            ServiceName = example.ServiceName,
            Name = "example-app-jar",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.Flink;
    import com.pulumi.aiven.FlinkArgs;
    import com.pulumi.aiven.inputs.FlinkFlinkUserConfigArgs;
    import com.pulumi.aiven.FlinkJarApplication;
    import com.pulumi.aiven.FlinkJarApplicationArgs;
    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 Flink("example", FlinkArgs.builder()
                .project(exampleAivenProject.project())
                .serviceName("example-flink-service")
                .cloudName("google-europe-west1")
                .plan("business-4")
                .maintenanceWindowDow("monday")
                .maintenanceWindowTime("04:00:00")
                .flinkUserConfig(FlinkFlinkUserConfigArgs.builder()
                    .customCode(true)
                    .build())
                .build());
    
            var exampleFlinkJarApplication = new FlinkJarApplication("exampleFlinkJarApplication", FlinkJarApplicationArgs.builder()
                .project(example.project())
                .serviceName(example.serviceName())
                .name("example-app-jar")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aiven:Flink
        properties:
          project: ${exampleAivenProject.project}
          serviceName: example-flink-service
          cloudName: google-europe-west1
          plan: business-4
          maintenanceWindowDow: monday
          maintenanceWindowTime: 04:00:00
          flinkUserConfig:
            customCode: true
      exampleFlinkJarApplication:
        type: aiven:FlinkJarApplication
        name: example
        properties:
          project: ${example.project}
          serviceName: ${example.serviceName}
          name: example-app-jar
    

    Create FlinkJarApplication Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FlinkJarApplication(name: string, args: FlinkJarApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def FlinkJarApplication(resource_name: str,
                            args: FlinkJarApplicationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def FlinkJarApplication(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            project: Optional[str] = None,
                            service_name: Optional[str] = None,
                            name: Optional[str] = None)
    func NewFlinkJarApplication(ctx *Context, name string, args FlinkJarApplicationArgs, opts ...ResourceOption) (*FlinkJarApplication, error)
    public FlinkJarApplication(string name, FlinkJarApplicationArgs args, CustomResourceOptions? opts = null)
    public FlinkJarApplication(String name, FlinkJarApplicationArgs args)
    public FlinkJarApplication(String name, FlinkJarApplicationArgs args, CustomResourceOptions options)
    
    type: aiven:FlinkJarApplication
    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 FlinkJarApplicationArgs
    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 FlinkJarApplicationArgs
    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 FlinkJarApplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FlinkJarApplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FlinkJarApplicationArgs
    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 flinkJarApplicationResource = new Aiven.FlinkJarApplication("flinkJarApplicationResource", new()
    {
        Project = "string",
        ServiceName = "string",
        Name = "string",
    });
    
    example, err := aiven.NewFlinkJarApplication(ctx, "flinkJarApplicationResource", &aiven.FlinkJarApplicationArgs{
    	Project:     pulumi.String("string"),
    	ServiceName: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    })
    
    var flinkJarApplicationResource = new FlinkJarApplication("flinkJarApplicationResource", FlinkJarApplicationArgs.builder()
        .project("string")
        .serviceName("string")
        .name("string")
        .build());
    
    flink_jar_application_resource = aiven.FlinkJarApplication("flinkJarApplicationResource",
        project="string",
        service_name="string",
        name="string")
    
    const flinkJarApplicationResource = new aiven.FlinkJarApplication("flinkJarApplicationResource", {
        project: "string",
        serviceName: "string",
        name: "string",
    });
    
    type: aiven:FlinkJarApplication
    properties:
        name: string
        project: string
        serviceName: string
    

    FlinkJarApplication Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The FlinkJarApplication resource accepts the following input properties:

    Project string
    Project name. Changing this property forces recreation of the resource.
    ServiceName string
    Service name. Changing this property forces recreation of the resource.
    Name string
    Application name. Maximum length: 128.
    Project string
    Project name. Changing this property forces recreation of the resource.
    ServiceName string
    Service name. Changing this property forces recreation of the resource.
    Name string
    Application name. Maximum length: 128.
    project String
    Project name. Changing this property forces recreation of the resource.
    serviceName String
    Service name. Changing this property forces recreation of the resource.
    name String
    Application name. Maximum length: 128.
    project string
    Project name. Changing this property forces recreation of the resource.
    serviceName string
    Service name. Changing this property forces recreation of the resource.
    name string
    Application name. Maximum length: 128.
    project str
    Project name. Changing this property forces recreation of the resource.
    service_name str
    Service name. Changing this property forces recreation of the resource.
    name str
    Application name. Maximum length: 128.
    project String
    Project name. Changing this property forces recreation of the resource.
    serviceName String
    Service name. Changing this property forces recreation of the resource.
    name String
    Application name. Maximum length: 128.

    Outputs

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

    ApplicationId string
    Application ID.
    ApplicationVersions List<FlinkJarApplicationApplicationVersion>
    JarApplicationVersions.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    CurrentDeployments List<FlinkJarApplicationCurrentDeployment>
    Flink JarApplicationDeployment.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    UpdatedBy string
    The latest updater of this entity.
    ApplicationId string
    Application ID.
    ApplicationVersions []FlinkJarApplicationApplicationVersion
    JarApplicationVersions.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    CurrentDeployments []FlinkJarApplicationCurrentDeployment
    Flink JarApplicationDeployment.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    UpdatedBy string
    The latest updater of this entity.
    applicationId String
    Application ID.
    applicationVersions List<FlinkJarApplicationApplicationVersion>
    JarApplicationVersions.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    currentDeployments List<FlinkJarApplicationCurrentDeployment>
    Flink JarApplicationDeployment.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy String
    The latest updater of this entity.
    applicationId string
    Application ID.
    applicationVersions FlinkJarApplicationApplicationVersion[]
    JarApplicationVersions.
    createdAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy string
    The creator of this entity.
    currentDeployments FlinkJarApplicationCurrentDeployment[]
    Flink JarApplicationDeployment.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy string
    The latest updater of this entity.
    application_id str
    Application ID.
    application_versions Sequence[FlinkJarApplicationApplicationVersion]
    JarApplicationVersions.
    created_at str
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    created_by str
    The creator of this entity.
    current_deployments Sequence[FlinkJarApplicationCurrentDeployment]
    Flink JarApplicationDeployment.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updated_by str
    The latest updater of this entity.
    applicationId String
    Application ID.
    applicationVersions List<Property Map>
    JarApplicationVersions.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    currentDeployments List<Property Map>
    Flink JarApplicationDeployment.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy String
    The latest updater of this entity.

    Look up Existing FlinkJarApplication Resource

    Get an existing FlinkJarApplication 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?: FlinkJarApplicationState, opts?: CustomResourceOptions): FlinkJarApplication
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            application_versions: Optional[Sequence[FlinkJarApplicationApplicationVersionArgs]] = None,
            created_at: Optional[str] = None,
            created_by: Optional[str] = None,
            current_deployments: Optional[Sequence[FlinkJarApplicationCurrentDeploymentArgs]] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            service_name: Optional[str] = None,
            updated_at: Optional[str] = None,
            updated_by: Optional[str] = None) -> FlinkJarApplication
    func GetFlinkJarApplication(ctx *Context, name string, id IDInput, state *FlinkJarApplicationState, opts ...ResourceOption) (*FlinkJarApplication, error)
    public static FlinkJarApplication Get(string name, Input<string> id, FlinkJarApplicationState? state, CustomResourceOptions? opts = null)
    public static FlinkJarApplication get(String name, Output<String> id, FlinkJarApplicationState state, CustomResourceOptions options)
    resources:  _:    type: aiven:FlinkJarApplication    get:      id: ${id}
    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.
    ApplicationVersions List<FlinkJarApplicationApplicationVersion>
    JarApplicationVersions.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    CurrentDeployments List<FlinkJarApplicationCurrentDeployment>
    Flink JarApplicationDeployment.
    Name string
    Application name. Maximum length: 128.
    Project string
    Project name. Changing this property forces recreation of the resource.
    ServiceName string
    Service name. Changing this property forces recreation of the resource.
    UpdatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    UpdatedBy string
    The latest updater of this entity.
    ApplicationId string
    Application ID.
    ApplicationVersions []FlinkJarApplicationApplicationVersionArgs
    JarApplicationVersions.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    CurrentDeployments []FlinkJarApplicationCurrentDeploymentArgs
    Flink JarApplicationDeployment.
    Name string
    Application name. Maximum length: 128.
    Project string
    Project name. Changing this property forces recreation of the resource.
    ServiceName string
    Service name. Changing this property forces recreation of the resource.
    UpdatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    UpdatedBy string
    The latest updater of this entity.
    applicationId String
    Application ID.
    applicationVersions List<FlinkJarApplicationApplicationVersion>
    JarApplicationVersions.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    currentDeployments List<FlinkJarApplicationCurrentDeployment>
    Flink JarApplicationDeployment.
    name String
    Application name. Maximum length: 128.
    project String
    Project name. Changing this property forces recreation of the resource.
    serviceName String
    Service name. Changing this property forces recreation of the resource.
    updatedAt String
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy String
    The latest updater of this entity.
    applicationId string
    Application ID.
    applicationVersions FlinkJarApplicationApplicationVersion[]
    JarApplicationVersions.
    createdAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy string
    The creator of this entity.
    currentDeployments FlinkJarApplicationCurrentDeployment[]
    Flink JarApplicationDeployment.
    name string
    Application name. Maximum length: 128.
    project string
    Project name. Changing this property forces recreation of the resource.
    serviceName string
    Service name. Changing this property forces recreation of the resource.
    updatedAt string
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy string
    The latest updater of this entity.
    application_id str
    Application ID.
    application_versions Sequence[FlinkJarApplicationApplicationVersionArgs]
    JarApplicationVersions.
    created_at str
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    created_by str
    The creator of this entity.
    current_deployments Sequence[FlinkJarApplicationCurrentDeploymentArgs]
    Flink JarApplicationDeployment.
    name str
    Application name. Maximum length: 128.
    project str
    Project name. Changing this property forces recreation of the resource.
    service_name str
    Service name. Changing this property forces recreation of the resource.
    updated_at str
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updated_by str
    The latest updater of this entity.
    applicationId String
    Application ID.
    applicationVersions List<Property Map>
    JarApplicationVersions.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    currentDeployments List<Property Map>
    Flink JarApplicationDeployment.
    name String
    Application name. Maximum length: 128.
    project String
    Project name. Changing this property forces recreation of the resource.
    serviceName String
    Service name. Changing this property forces recreation of the resource.
    updatedAt String
    The update timestamp of this entity in ISO 8601 format, always in UTC.
    updatedBy String
    The latest updater of this entity.

    Supporting Types

    FlinkJarApplicationApplicationVersion, FlinkJarApplicationApplicationVersionArgs

    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    FileInfos List<FlinkJarApplicationApplicationVersionFileInfo>
    Flink JarApplicationVersion FileInfo.
    Id string
    ApplicationVersion ID.
    Version int
    Version number.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    FileInfos []FlinkJarApplicationApplicationVersionFileInfo
    Flink JarApplicationVersion FileInfo.
    Id string
    ApplicationVersion ID.
    Version int
    Version number.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    fileInfos List<FlinkJarApplicationApplicationVersionFileInfo>
    Flink JarApplicationVersion FileInfo.
    id String
    ApplicationVersion ID.
    version Integer
    Version number.
    createdAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy string
    The creator of this entity.
    fileInfos FlinkJarApplicationApplicationVersionFileInfo[]
    Flink JarApplicationVersion FileInfo.
    id string
    ApplicationVersion ID.
    version number
    Version number.
    created_at str
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    created_by str
    The creator of this entity.
    file_infos Sequence[FlinkJarApplicationApplicationVersionFileInfo]
    Flink JarApplicationVersion FileInfo.
    id str
    ApplicationVersion ID.
    version int
    Version number.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    fileInfos List<Property Map>
    Flink JarApplicationVersion FileInfo.
    id String
    ApplicationVersion ID.
    version Number
    Version number.

    FlinkJarApplicationApplicationVersionFileInfo, FlinkJarApplicationApplicationVersionFileInfoArgs

    FileSha256 string
    sha256 of the file if known.
    FileSize int
    The size of the file in bytes.
    FileStatus string
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    Url string
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    VerifyErrorCode int
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    VerifyErrorMessage string
    In the case file_status is FAILED, may contain details about the failure.
    FileSha256 string
    sha256 of the file if known.
    FileSize int
    The size of the file in bytes.
    FileStatus string
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    Url string
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    VerifyErrorCode int
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    VerifyErrorMessage string
    In the case file_status is FAILED, may contain details about the failure.
    fileSha256 String
    sha256 of the file if known.
    fileSize Integer
    The size of the file in bytes.
    fileStatus String
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    url String
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    verifyErrorCode Integer
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    verifyErrorMessage String
    In the case file_status is FAILED, may contain details about the failure.
    fileSha256 string
    sha256 of the file if known.
    fileSize number
    The size of the file in bytes.
    fileStatus string
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    url string
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    verifyErrorCode number
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    verifyErrorMessage string
    In the case file_status is FAILED, may contain details about the failure.
    file_sha256 str
    sha256 of the file if known.
    file_size int
    The size of the file in bytes.
    file_status str
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    url str
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    verify_error_code int
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    verify_error_message str
    In the case file_status is FAILED, may contain details about the failure.
    fileSha256 String
    sha256 of the file if known.
    fileSize Number
    The size of the file in bytes.
    fileStatus String
    Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are INITIAL, READY and FAILED.
    url String
    The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
    verifyErrorCode Number
    In the case file_status is FAILED, the error code of the failure. The possible values are 1, 2 and 3.
    verifyErrorMessage String
    In the case file_status is FAILED, may contain details about the failure.

    FlinkJarApplicationCurrentDeployment, FlinkJarApplicationCurrentDeploymentArgs

    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    EntryClass string
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    ErrorMsg string
    Error message describing what caused deployment to fail.
    Id string
    Deployment ID.
    JobId string
    Job ID.
    LastSavepoint string
    Job savepoint.
    Parallelism int
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    ProgramArgs List<string>
    Arguments to pass during Flink job submission through the programArgsList parameter.
    StartingSavepoint string
    Job savepoint.
    Status string
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    VersionId string
    ApplicationVersion ID.
    CreatedAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    CreatedBy string
    The creator of this entity.
    EntryClass string
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    ErrorMsg string
    Error message describing what caused deployment to fail.
    Id string
    Deployment ID.
    JobId string
    Job ID.
    LastSavepoint string
    Job savepoint.
    Parallelism int
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    ProgramArgs []string
    Arguments to pass during Flink job submission through the programArgsList parameter.
    StartingSavepoint string
    Job savepoint.
    Status string
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    VersionId string
    ApplicationVersion ID.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    entryClass String
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    errorMsg String
    Error message describing what caused deployment to fail.
    id String
    Deployment ID.
    jobId String
    Job ID.
    lastSavepoint String
    Job savepoint.
    parallelism Integer
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    programArgs List<String>
    Arguments to pass during Flink job submission through the programArgsList parameter.
    startingSavepoint String
    Job savepoint.
    status String
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    versionId String
    ApplicationVersion ID.
    createdAt string
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy string
    The creator of this entity.
    entryClass string
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    errorMsg string
    Error message describing what caused deployment to fail.
    id string
    Deployment ID.
    jobId string
    Job ID.
    lastSavepoint string
    Job savepoint.
    parallelism number
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    programArgs string[]
    Arguments to pass during Flink job submission through the programArgsList parameter.
    startingSavepoint string
    Job savepoint.
    status string
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    versionId string
    ApplicationVersion ID.
    created_at str
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    created_by str
    The creator of this entity.
    entry_class str
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    error_msg str
    Error message describing what caused deployment to fail.
    id str
    Deployment ID.
    job_id str
    Job ID.
    last_savepoint str
    Job savepoint.
    parallelism int
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    program_args Sequence[str]
    Arguments to pass during Flink job submission through the programArgsList parameter.
    starting_savepoint str
    Job savepoint.
    status str
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    version_id str
    ApplicationVersion ID.
    createdAt String
    The creation timestamp of this entity in ISO 8601 format, always in UTC.
    createdBy String
    The creator of this entity.
    entryClass String
    The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
    errorMsg String
    Error message describing what caused deployment to fail.
    id String
    Deployment ID.
    jobId String
    Job ID.
    lastSavepoint String
    Job savepoint.
    parallelism Number
    Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
    programArgs List<String>
    Arguments to pass during Flink job submission through the programArgsList parameter.
    startingSavepoint String
    Job savepoint.
    status String
    Deployment status. The possible values are CANCELED, CANCELLING, CANCELLING_REQUESTED, CREATED, DELETE_REQUESTED, DELETING, FAILED, FAILING, FINISHED, INITIALIZING, RECONCILING, RESTARTING, RUNNING, SAVING, SAVING_AND_STOP, SAVING_AND_STOP_REQUESTED and SUSPENDED.
    versionId String
    ApplicationVersion ID.

    Import

    $ pulumi import aiven:index/flinkJarApplication:FlinkJarApplication example PROJECT/SERVICE_NAME/APPLICATION_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.33.0 published on Thursday, Jan 30, 2025 by Pulumi