1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. IntakeRunner
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud

    Manages STACKIT Intake Runner.

    Example Usage

    resource "stackit_intake_runner" "example" {
      project_id            = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      name                  = "example-runner"
      region                = "eu01"
      description           = "An example runner for STACKIT Intake"
      max_message_size_kib  = 1024
      max_messages_per_hour = 1000
      labels = {
        "env" = "development"
      }
    }
    

    Create IntakeRunner Resource

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

    Constructor syntax

    new IntakeRunner(name: string, args: IntakeRunnerArgs, opts?: CustomResourceOptions);
    @overload
    def IntakeRunner(resource_name: str,
                     args: IntakeRunnerArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntakeRunner(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     max_message_size_kib: Optional[int] = None,
                     max_messages_per_hour: Optional[int] = None,
                     project_id: Optional[str] = None,
                     description: Optional[str] = None,
                     labels: Optional[Mapping[str, str]] = None,
                     name: Optional[str] = None,
                     region: Optional[str] = None)
    func NewIntakeRunner(ctx *Context, name string, args IntakeRunnerArgs, opts ...ResourceOption) (*IntakeRunner, error)
    public IntakeRunner(string name, IntakeRunnerArgs args, CustomResourceOptions? opts = null)
    public IntakeRunner(String name, IntakeRunnerArgs args)
    public IntakeRunner(String name, IntakeRunnerArgs args, CustomResourceOptions options)
    
    type: stackit:IntakeRunner
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "stackit_intake_runner" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IntakeRunnerArgs
    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 IntakeRunnerArgs
    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 IntakeRunnerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntakeRunnerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntakeRunnerArgs
    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 intakeRunnerResource = new Stackit.IntakeRunner("intakeRunnerResource", new()
    {
        MaxMessageSizeKib = 0,
        MaxMessagesPerHour = 0,
        ProjectId = "string",
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
        Region = "string",
    });
    
    example, err := stackit.NewIntakeRunner(ctx, "intakeRunnerResource", &stackit.IntakeRunnerArgs{
    	MaxMessageSizeKib:  pulumi.Int(0),
    	MaxMessagesPerHour: pulumi.Int(0),
    	ProjectId:          pulumi.String("string"),
    	Description:        pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name:   pulumi.String("string"),
    	Region: pulumi.String("string"),
    })
    
    resource "stackit_intake_runner" "intakeRunnerResource" {
      lifecycle {
        create_before_destroy = true
      }
      max_message_size_kib  = 0
      max_messages_per_hour = 0
      project_id            = "string"
      description           = "string"
      labels = {
        "string" = "string"
      }
      name   = "string"
      region = "string"
    }
    
    var intakeRunnerResource = new IntakeRunner("intakeRunnerResource", IntakeRunnerArgs.builder()
        .maxMessageSizeKib(0)
        .maxMessagesPerHour(0)
        .projectId("string")
        .description("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .region("string")
        .build());
    
    intake_runner_resource = stackit.IntakeRunner("intakeRunnerResource",
        max_message_size_kib=0,
        max_messages_per_hour=0,
        project_id="string",
        description="string",
        labels={
            "string": "string",
        },
        name="string",
        region="string")
    
    const intakeRunnerResource = new stackit.IntakeRunner("intakeRunnerResource", {
        maxMessageSizeKib: 0,
        maxMessagesPerHour: 0,
        projectId: "string",
        description: "string",
        labels: {
            string: "string",
        },
        name: "string",
        region: "string",
    });
    
    type: stackit:IntakeRunner
    properties:
        description: string
        labels:
            string: string
        maxMessageSizeKib: 0
        maxMessagesPerHour: 0
        name: string
        projectId: string
        region: string
    

    IntakeRunner 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 IntakeRunner resource accepts the following input properties:

    MaxMessageSizeKib int
    The maximum message size in KiB.
    MaxMessagesPerHour int
    The maximum number of messages per hour.
    ProjectId string
    STACKIT Project ID to which the runner is associated.
    Description string
    The description of the runner.
    Labels Dictionary<string, string>
    User-defined labels.
    Name string
    The name of the runner.
    Region string
    The resource region. If not defined, the provider region is used.
    MaxMessageSizeKib int
    The maximum message size in KiB.
    MaxMessagesPerHour int
    The maximum number of messages per hour.
    ProjectId string
    STACKIT Project ID to which the runner is associated.
    Description string
    The description of the runner.
    Labels map[string]string
    User-defined labels.
    Name string
    The name of the runner.
    Region string
    The resource region. If not defined, the provider region is used.
    max_message_size_kib number
    The maximum message size in KiB.
    max_messages_per_hour number
    The maximum number of messages per hour.
    project_id string
    STACKIT Project ID to which the runner is associated.
    description string
    The description of the runner.
    labels map(string)
    User-defined labels.
    name string
    The name of the runner.
    region string
    The resource region. If not defined, the provider region is used.
    maxMessageSizeKib Integer
    The maximum message size in KiB.
    maxMessagesPerHour Integer
    The maximum number of messages per hour.
    projectId String
    STACKIT Project ID to which the runner is associated.
    description String
    The description of the runner.
    labels Map<String,String>
    User-defined labels.
    name String
    The name of the runner.
    region String
    The resource region. If not defined, the provider region is used.
    maxMessageSizeKib number
    The maximum message size in KiB.
    maxMessagesPerHour number
    The maximum number of messages per hour.
    projectId string
    STACKIT Project ID to which the runner is associated.
    description string
    The description of the runner.
    labels {[key: string]: string}
    User-defined labels.
    name string
    The name of the runner.
    region string
    The resource region. If not defined, the provider region is used.
    max_message_size_kib int
    The maximum message size in KiB.
    max_messages_per_hour int
    The maximum number of messages per hour.
    project_id str
    STACKIT Project ID to which the runner is associated.
    description str
    The description of the runner.
    labels Mapping[str, str]
    User-defined labels.
    name str
    The name of the runner.
    region str
    The resource region. If not defined, the provider region is used.
    maxMessageSizeKib Number
    The maximum message size in KiB.
    maxMessagesPerHour Number
    The maximum number of messages per hour.
    projectId String
    STACKIT Project ID to which the runner is associated.
    description String
    The description of the runner.
    labels Map<String>
    User-defined labels.
    name String
    The name of the runner.
    region String
    The resource region. If not defined, the provider region is used.

    Outputs

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

    CreateTime string
    The creation time of the runner.
    Id string
    The provider-assigned unique ID for this managed resource.
    RunnerId string
    The runner ID.
    Uri string
    The URI of the runner.
    CreateTime string
    The creation time of the runner.
    Id string
    The provider-assigned unique ID for this managed resource.
    RunnerId string
    The runner ID.
    Uri string
    The URI of the runner.
    create_time string
    The creation time of the runner.
    id string
    The provider-assigned unique ID for this managed resource.
    runner_id string
    The runner ID.
    uri string
    The URI of the runner.
    createTime String
    The creation time of the runner.
    id String
    The provider-assigned unique ID for this managed resource.
    runnerId String
    The runner ID.
    uri String
    The URI of the runner.
    createTime string
    The creation time of the runner.
    id string
    The provider-assigned unique ID for this managed resource.
    runnerId string
    The runner ID.
    uri string
    The URI of the runner.
    create_time str
    The creation time of the runner.
    id str
    The provider-assigned unique ID for this managed resource.
    runner_id str
    The runner ID.
    uri str
    The URI of the runner.
    createTime String
    The creation time of the runner.
    id String
    The provider-assigned unique ID for this managed resource.
    runnerId String
    The runner ID.
    uri String
    The URI of the runner.

    Look up Existing IntakeRunner Resource

    Get an existing IntakeRunner 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?: IntakeRunnerState, opts?: CustomResourceOptions): IntakeRunner
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            max_message_size_kib: Optional[int] = None,
            max_messages_per_hour: Optional[int] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            runner_id: Optional[str] = None,
            uri: Optional[str] = None) -> IntakeRunner
    func GetIntakeRunner(ctx *Context, name string, id IDInput, state *IntakeRunnerState, opts ...ResourceOption) (*IntakeRunner, error)
    public static IntakeRunner Get(string name, Input<string> id, IntakeRunnerState? state, CustomResourceOptions? opts = null)
    public static IntakeRunner get(String name, Output<String> id, IntakeRunnerState state, CustomResourceOptions options)
    resources:  _:    type: stackit:IntakeRunner    get:      id: ${id}
    import {
      to = stackit_intake_runner.example
      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:
    CreateTime string
    The creation time of the runner.
    Description string
    The description of the runner.
    Labels Dictionary<string, string>
    User-defined labels.
    MaxMessageSizeKib int
    The maximum message size in KiB.
    MaxMessagesPerHour int
    The maximum number of messages per hour.
    Name string
    The name of the runner.
    ProjectId string
    STACKIT Project ID to which the runner is associated.
    Region string
    The resource region. If not defined, the provider region is used.
    RunnerId string
    The runner ID.
    Uri string
    The URI of the runner.
    CreateTime string
    The creation time of the runner.
    Description string
    The description of the runner.
    Labels map[string]string
    User-defined labels.
    MaxMessageSizeKib int
    The maximum message size in KiB.
    MaxMessagesPerHour int
    The maximum number of messages per hour.
    Name string
    The name of the runner.
    ProjectId string
    STACKIT Project ID to which the runner is associated.
    Region string
    The resource region. If not defined, the provider region is used.
    RunnerId string
    The runner ID.
    Uri string
    The URI of the runner.
    create_time string
    The creation time of the runner.
    description string
    The description of the runner.
    labels map(string)
    User-defined labels.
    max_message_size_kib number
    The maximum message size in KiB.
    max_messages_per_hour number
    The maximum number of messages per hour.
    name string
    The name of the runner.
    project_id string
    STACKIT Project ID to which the runner is associated.
    region string
    The resource region. If not defined, the provider region is used.
    runner_id string
    The runner ID.
    uri string
    The URI of the runner.
    createTime String
    The creation time of the runner.
    description String
    The description of the runner.
    labels Map<String,String>
    User-defined labels.
    maxMessageSizeKib Integer
    The maximum message size in KiB.
    maxMessagesPerHour Integer
    The maximum number of messages per hour.
    name String
    The name of the runner.
    projectId String
    STACKIT Project ID to which the runner is associated.
    region String
    The resource region. If not defined, the provider region is used.
    runnerId String
    The runner ID.
    uri String
    The URI of the runner.
    createTime string
    The creation time of the runner.
    description string
    The description of the runner.
    labels {[key: string]: string}
    User-defined labels.
    maxMessageSizeKib number
    The maximum message size in KiB.
    maxMessagesPerHour number
    The maximum number of messages per hour.
    name string
    The name of the runner.
    projectId string
    STACKIT Project ID to which the runner is associated.
    region string
    The resource region. If not defined, the provider region is used.
    runnerId string
    The runner ID.
    uri string
    The URI of the runner.
    create_time str
    The creation time of the runner.
    description str
    The description of the runner.
    labels Mapping[str, str]
    User-defined labels.
    max_message_size_kib int
    The maximum message size in KiB.
    max_messages_per_hour int
    The maximum number of messages per hour.
    name str
    The name of the runner.
    project_id str
    STACKIT Project ID to which the runner is associated.
    region str
    The resource region. If not defined, the provider region is used.
    runner_id str
    The runner ID.
    uri str
    The URI of the runner.
    createTime String
    The creation time of the runner.
    description String
    The description of the runner.
    labels Map<String>
    User-defined labels.
    maxMessageSizeKib Number
    The maximum message size in KiB.
    maxMessagesPerHour Number
    The maximum number of messages per hour.
    name String
    The name of the runner.
    projectId String
    STACKIT Project ID to which the runner is associated.
    region String
    The resource region. If not defined, the provider region is used.
    runnerId String
    The runner ID.
    uri String
    The URI of the runner.

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.7
    published on Monday, Aug 17, 2026 by stackitcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial