confluentcloud.FlinkArtifact
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";
const development = new confluentcloud.Environment("development", {displayName: "Development"});
const main = new confluentcloud.FlinkArtifact("main", {
cloud: "AWS",
region: "us-west-2",
displayName: "my_flink_sumscalar_artifact",
contentFormat: "JAR",
environment: {
id: development.id,
},
});
import pulumi
import pulumi_confluentcloud as confluentcloud
development = confluentcloud.Environment("development", display_name="Development")
main = confluentcloud.FlinkArtifact("main",
cloud="AWS",
region="us-west-2",
display_name="my_flink_sumscalar_artifact",
content_format="JAR",
environment={
"id": development.id,
})
package main
import (
"github.com/pulumi/pulumi-confluentcloud/sdk/v2/go/confluentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
development, err := confluentcloud.NewEnvironment(ctx, "development", &confluentcloud.EnvironmentArgs{
DisplayName: pulumi.String("Development"),
})
if err != nil {
return err
}
_, err = confluentcloud.NewFlinkArtifact(ctx, "main", &confluentcloud.FlinkArtifactArgs{
Cloud: pulumi.String("AWS"),
Region: pulumi.String("us-west-2"),
DisplayName: pulumi.String("my_flink_sumscalar_artifact"),
ContentFormat: pulumi.String("JAR"),
Environment: &confluentcloud.FlinkArtifactEnvironmentArgs{
Id: development.ID(),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;
return await Deployment.RunAsync(() =>
{
var development = new ConfluentCloud.Environment("development", new()
{
DisplayName = "Development",
});
var main = new ConfluentCloud.FlinkArtifact("main", new()
{
Cloud = "AWS",
Region = "us-west-2",
DisplayName = "my_flink_sumscalar_artifact",
ContentFormat = "JAR",
Environment = new ConfluentCloud.Inputs.FlinkArtifactEnvironmentArgs
{
Id = development.Id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.Environment;
import com.pulumi.confluentcloud.EnvironmentArgs;
import com.pulumi.confluentcloud.FlinkArtifact;
import com.pulumi.confluentcloud.FlinkArtifactArgs;
import com.pulumi.confluentcloud.inputs.FlinkArtifactEnvironmentArgs;
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 development = new Environment("development", EnvironmentArgs.builder()
.displayName("Development")
.build());
var main = new FlinkArtifact("main", FlinkArtifactArgs.builder()
.cloud("AWS")
.region("us-west-2")
.displayName("my_flink_sumscalar_artifact")
.contentFormat("JAR")
.environment(FlinkArtifactEnvironmentArgs.builder()
.id(development.id())
.build())
.build());
}
}
resources:
development:
type: confluentcloud:Environment
properties:
displayName: Development
main:
type: confluentcloud:FlinkArtifact
properties:
cloud: AWS
region: us-west-2
displayName: my_flink_sumscalar_artifact
contentFormat: JAR
environment:
id: ${development.id}
Create FlinkArtifact Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FlinkArtifact(name: string, args: FlinkArtifactArgs, opts?: CustomResourceOptions);
@overload
def FlinkArtifact(resource_name: str,
args: FlinkArtifactArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FlinkArtifact(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud: Optional[str] = None,
display_name: Optional[str] = None,
environment: Optional[FlinkArtifactEnvironmentArgs] = None,
region: Optional[str] = None,
artifact_file: Optional[str] = None,
class_: Optional[str] = None,
content_format: Optional[str] = None,
description: Optional[str] = None,
documentation_link: Optional[str] = None,
runtime_language: Optional[str] = None)
func NewFlinkArtifact(ctx *Context, name string, args FlinkArtifactArgs, opts ...ResourceOption) (*FlinkArtifact, error)
public FlinkArtifact(string name, FlinkArtifactArgs args, CustomResourceOptions? opts = null)
public FlinkArtifact(String name, FlinkArtifactArgs args)
public FlinkArtifact(String name, FlinkArtifactArgs args, CustomResourceOptions options)
type: confluentcloud:FlinkArtifact
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FlinkArtifactArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. FlinkArtifactArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FlinkArtifactArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FlinkArtifactArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. FlinkArtifactArgs - 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 flinkArtifactResource = new ConfluentCloud.FlinkArtifact("flinkArtifactResource", new()
{
Cloud = "string",
DisplayName = "string",
Environment = new ConfluentCloud.Inputs.FlinkArtifactEnvironmentArgs
{
Id = "string",
},
Region = "string",
ArtifactFile = "string",
ContentFormat = "string",
Description = "string",
DocumentationLink = "string",
RuntimeLanguage = "string",
});
example, err := confluentcloud.NewFlinkArtifact(ctx, "flinkArtifactResource", &confluentcloud.FlinkArtifactArgs{
Cloud: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Environment: &confluentcloud.FlinkArtifactEnvironmentArgs{
Id: pulumi.String("string"),
},
Region: pulumi.String("string"),
ArtifactFile: pulumi.String("string"),
ContentFormat: pulumi.String("string"),
Description: pulumi.String("string"),
DocumentationLink: pulumi.String("string"),
RuntimeLanguage: pulumi.String("string"),
})
var flinkArtifactResource = new FlinkArtifact("flinkArtifactResource", FlinkArtifactArgs.builder()
.cloud("string")
.displayName("string")
.environment(FlinkArtifactEnvironmentArgs.builder()
.id("string")
.build())
.region("string")
.artifactFile("string")
.contentFormat("string")
.description("string")
.documentationLink("string")
.runtimeLanguage("string")
.build());
flink_artifact_resource = confluentcloud.FlinkArtifact("flinkArtifactResource",
cloud="string",
display_name="string",
environment={
"id": "string",
},
region="string",
artifact_file="string",
content_format="string",
description="string",
documentation_link="string",
runtime_language="string")
const flinkArtifactResource = new confluentcloud.FlinkArtifact("flinkArtifactResource", {
cloud: "string",
displayName: "string",
environment: {
id: "string",
},
region: "string",
artifactFile: "string",
contentFormat: "string",
description: "string",
documentationLink: "string",
runtimeLanguage: "string",
});
type: confluentcloud:FlinkArtifact
properties:
artifactFile: string
cloud: string
contentFormat: string
description: string
displayName: string
documentationLink: string
environment:
id: string
region: string
runtimeLanguage: string
FlinkArtifact 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 FlinkArtifact resource accepts the following input properties:
- Cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- Display
Name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- Environment
This property is required. Changes to this property will trigger replacement.
Confluent Cloud. Inputs. Flink Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- Artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- Class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- Content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - Description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- Documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- Runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
- Cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- Display
Name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- Environment
This property is required. Changes to this property will trigger replacement.
Artifact Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- Artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- Class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- Content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - Description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- Documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- Runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
- cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- display
Name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- environment
This property is required. Changes to this property will trigger replacement.
Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class_
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- content
Format String - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
- cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- display
Name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- environment
This property is required. Changes to this property will trigger replacement.
Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
- cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- display_
name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- environment
This property is required. Changes to this property will trigger replacement.
Artifact Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- artifact_
file Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class_
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- content_
format str - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- documentation_
link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- runtime_
language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
- cloud
This property is required. Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- display
Name This property is required. Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- environment
This property is required. Changes to this property will trigger replacement.
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region
This property is required. Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- content
Format String - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
.
Outputs
All input properties are implicitly available as output properties. Additionally, the FlinkArtifact resource produces the following output properties:
- Api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - Versions
List<Pulumi.
Confluent Cloud. Outputs. Flink Artifact Version> - List of versions for this Flink Artifact.
- Api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - Versions
[]Flink
Artifact Version - List of versions for this Flink Artifact.
- api
Version String - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - id String
- The provider-assigned unique ID for this managed resource.
- kind String
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - versions
List<Flink
Artifact Version> - List of versions for this Flink Artifact.
- api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - id string
- The provider-assigned unique ID for this managed resource.
- kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - versions
Flink
Artifact Version[] - List of versions for this Flink Artifact.
- api_
version str - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - id str
- The provider-assigned unique ID for this managed resource.
- kind str
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - versions
Sequence[Flink
Artifact Version] - List of versions for this Flink Artifact.
- api
Version String - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - id String
- The provider-assigned unique ID for this managed resource.
- kind String
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - versions List<Property Map>
- List of versions for this Flink Artifact.
Look up Existing FlinkArtifact Resource
Get an existing FlinkArtifact 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?: FlinkArtifactState, opts?: CustomResourceOptions): FlinkArtifact
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_version: Optional[str] = None,
artifact_file: Optional[str] = None,
class_: Optional[str] = None,
cloud: Optional[str] = None,
content_format: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
documentation_link: Optional[str] = None,
environment: Optional[FlinkArtifactEnvironmentArgs] = None,
kind: Optional[str] = None,
region: Optional[str] = None,
runtime_language: Optional[str] = None,
versions: Optional[Sequence[FlinkArtifactVersionArgs]] = None) -> FlinkArtifact
func GetFlinkArtifact(ctx *Context, name string, id IDInput, state *FlinkArtifactState, opts ...ResourceOption) (*FlinkArtifact, error)
public static FlinkArtifact Get(string name, Input<string> id, FlinkArtifactState? state, CustomResourceOptions? opts = null)
public static FlinkArtifact get(String name, Output<String> id, FlinkArtifactState state, CustomResourceOptions options)
resources: _: type: confluentcloud:FlinkArtifact get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- Api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - Artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- Class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- Cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- Content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - Description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- Display
Name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- Documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- Environment
Changes to this property will trigger replacement.
Confluent Cloud. Inputs. Flink Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - Region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- Runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - Versions
List<Pulumi.
Confluent Cloud. Inputs. Flink Artifact Version> - List of versions for this Flink Artifact.
- Api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - Artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- Class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- Cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- Content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - Description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- Display
Name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- Documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- Environment
Changes to this property will trigger replacement.
Artifact Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - Region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- Runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - Versions
[]Flink
Artifact Version Args - List of versions for this Flink Artifact.
- api
Version String - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class_
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- content
Format String - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- display
Name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- environment
Changes to this property will trigger replacement.
Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind String
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - versions
List<Flink
Artifact Version> - List of versions for this Flink Artifact.
- api
Version string - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- content
Format string - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- display
Name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- environment
Changes to this property will trigger replacement.
Artifact Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind string
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - versions
Flink
Artifact Version[] - List of versions for this Flink Artifact.
- api_
version str - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - artifact_
file Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class_
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- content_
format str - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- display_
name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- documentation_
link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- environment
Changes to this property will trigger replacement.
Artifact Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind str
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- runtime_
language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - versions
Sequence[Flink
Artifact Version Args] - List of versions for this Flink Artifact.
- api
Version String - (Required String) The API Version of the schema version of the Flink Artifact Pool, for example,
fa/v2
. - artifact
File Changes to this property will trigger replacement.
- The artifact file for Flink Artifact.
- class
Changes to this property will trigger replacement.
- Java class or alias for the Flink Artifact as provided by developer.
- cloud
Changes to this property will trigger replacement.
- The cloud service provider that runs the Flink Artifact.
- content
Format String - (Optional String) Archive format of the Flink Artifact. Accepted values are:
JAR
,ZIP
. - description
Changes to this property will trigger replacement.
- (Optional String) Description of the Flink Artifact.
- display
Name Changes to this property will trigger replacement.
- The unique name of the Flink Artifact per cloud, region, environment scope.
- documentation
Link Changes to this property will trigger replacement.
- (Optional String) Documentation link of the Flink Artifact.
- environment
Changes to this property will trigger replacement.
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- kind String
- (Required String) The kind of the Flink Artifact Pool, for example,
FlinkArtifact
. - region
Changes to this property will trigger replacement.
- The cloud service provider region that hosts the Flink Artifact.
- runtime
Language Changes to this property will trigger replacement.
- (Optional String) Runtime language of the Flink Artifact as
Python
orJava
. Defaults toJava
. - versions List<Property Map>
- List of versions for this Flink Artifact.
Supporting Types
FlinkArtifactEnvironment, FlinkArtifactEnvironmentArgs
- Id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
- Id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
- id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
- id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
- id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
- id
This property is required. Changes to this property will trigger replacement.
- The ID of the Environment that the Flink Artifact Pool belongs to, for example,
env-abc123
.
FlinkArtifactVersion, FlinkArtifactVersionArgs
- Version
This property is required. string - The version of this Flink Artifact.
- Version
This property is required. string - The version of this Flink Artifact.
- version
This property is required. String - The version of this Flink Artifact.
- version
This property is required. string - The version of this Flink Artifact.
- version
This property is required. str - The version of this Flink Artifact.
- version
This property is required. String - The version of this Flink Artifact.
Import
You can import a Flink Artifact by using cloud, region, Flink Artifact ID and artifact file, in the format <Environment ID>/<region>/<cloud>/<Flink Artifact ID>
. The following example shows how to import a Flink Artifact:
$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
$ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ pulumi import confluentcloud:index/flinkArtifact:FlinkArtifact main env-abc123/us-east-1/aws/fa-123
!> Warning: Do not forget to delete terminal command history afterwards for security purposes.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Confluent Cloud pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
confluent
Terraform Provider.