![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.streamanalytics.kotlin.StreamInputBlobArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.streamanalytics.kotlin
import com.pulumi.azure.streamanalytics.StreamInputBlobArgs.builder
import com.pulumi.azure.streamanalytics.kotlin.inputs.StreamInputBlobSerializationArgs
import com.pulumi.azure.streamanalytics.kotlin.inputs.StreamInputBlobSerializationArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Manages a Stream Analytics Stream Input Blob.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const exampleResourceGroup = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const example = azure.streamanalytics.getJobOutput({
* name: "example-job",
* resourceGroupName: exampleResourceGroup.name,
* });
* const exampleAccount = new azure.storage.Account("example", {
* name: "examplestoracc",
* resourceGroupName: exampleResourceGroup.name,
* location: exampleResourceGroup.location,
* accountTier: "Standard",
* accountReplicationType: "LRS",
* });
* const exampleContainer = new azure.storage.Container("example", {
* name: "example",
* storageAccountName: exampleAccount.name,
* containerAccessType: "private",
* });
* const exampleStreamInputBlob = new azure.streamanalytics.StreamInputBlob("example", {
* name: "blob-stream-input",
* streamAnalyticsJobName: example.apply(example => example.name),
* resourceGroupName: example.apply(example => example.resourceGroupName),
* storageAccountName: exampleAccount.name,
* storageAccountKey: exampleAccount.primaryAccessKey,
* storageContainerName: exampleContainer.name,
* pathPattern: "some-random-pattern",
* dateFormat: "yyyy/MM/dd",
* timeFormat: "HH",
* serialization: {
* type: "Json",
* encoding: "UTF8",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example_resource_group = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example = azure.streamanalytics.get_job_output(name="example-job",
* resource_group_name=example_resource_group.name)
* example_account = azure.storage.Account("example",
* name="examplestoracc",
* resource_group_name=example_resource_group.name,
* location=example_resource_group.location,
* account_tier="Standard",
* account_replication_type="LRS")
* example_container = azure.storage.Container("example",
* name="example",
* storage_account_name=example_account.name,
* container_access_type="private")
* example_stream_input_blob = azure.streamanalytics.StreamInputBlob("example",
* name="blob-stream-input",
* stream_analytics_job_name=example.name,
* resource_group_name=example.resource_group_name,
* storage_account_name=example_account.name,
* storage_account_key=example_account.primary_access_key,
* storage_container_name=example_container.name,
* path_pattern="some-random-pattern",
* date_format="yyyy/MM/dd",
* time_format="HH",
* serialization={
* "type": "Json",
* "encoding": "UTF8",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var example = Azure.StreamAnalytics.GetJob.Invoke(new()
* {
* Name = "example-job",
* ResourceGroupName = exampleResourceGroup.Name,
* });
* var exampleAccount = new Azure.Storage.Account("example", new()
* {
* Name = "examplestoracc",
* ResourceGroupName = exampleResourceGroup.Name,
* Location = exampleResourceGroup.Location,
* AccountTier = "Standard",
* AccountReplicationType = "LRS",
* });
* var exampleContainer = new Azure.Storage.Container("example", new()
* {
* Name = "example",
* StorageAccountName = exampleAccount.Name,
* ContainerAccessType = "private",
* });
* var exampleStreamInputBlob = new Azure.StreamAnalytics.StreamInputBlob("example", new()
* {
* Name = "blob-stream-input",
* StreamAnalyticsJobName = example.Apply(getJobResult => getJobResult.Name),
* ResourceGroupName = example.Apply(getJobResult => getJobResult.ResourceGroupName),
* StorageAccountName = exampleAccount.Name,
* StorageAccountKey = exampleAccount.PrimaryAccessKey,
* StorageContainerName = exampleContainer.Name,
* PathPattern = "some-random-pattern",
* DateFormat = "yyyy/MM/dd",
* TimeFormat = "HH",
* Serialization = new Azure.StreamAnalytics.Inputs.StreamInputBlobSerializationArgs
* {
* Type = "Json",
* Encoding = "UTF8",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/streamanalytics"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* example := streamanalytics.LookupJobOutput(ctx, streamanalytics.GetJobOutputArgs{
* Name: pulumi.String("example-job"),
* ResourceGroupName: exampleResourceGroup.Name,
* }, nil)
* exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
* Name: pulumi.String("examplestoracc"),
* ResourceGroupName: exampleResourceGroup.Name,
* Location: exampleResourceGroup.Location,
* AccountTier: pulumi.String("Standard"),
* AccountReplicationType: pulumi.String("LRS"),
* })
* if err != nil {
* return err
* }
* exampleContainer, err := storage.NewContainer(ctx, "example", &storage.ContainerArgs{
* Name: pulumi.String("example"),
* StorageAccountName: exampleAccount.Name,
* ContainerAccessType: pulumi.String("private"),
* })
* if err != nil {
* return err
* }
* _, err = streamanalytics.NewStreamInputBlob(ctx, "example", &streamanalytics.StreamInputBlobArgs{
* Name: pulumi.String("blob-stream-input"),
* StreamAnalyticsJobName: pulumi.String(example.ApplyT(func(example streamanalytics.GetJobResult) (*string, error) {
* return &example.Name, nil
* }).(pulumi.StringPtrOutput)),
* ResourceGroupName: pulumi.String(example.ApplyT(func(example streamanalytics.GetJobResult) (*string, error) {
* return &example.ResourceGroupName, nil
* }).(pulumi.StringPtrOutput)),
* StorageAccountName: exampleAccount.Name,
* StorageAccountKey: exampleAccount.PrimaryAccessKey,
* StorageContainerName: exampleContainer.Name,
* PathPattern: pulumi.String("some-random-pattern"),
* DateFormat: pulumi.String("yyyy/MM/dd"),
* TimeFormat: pulumi.String("HH"),
* Serialization: &streamanalytics.StreamInputBlobSerializationArgs{
* Type: pulumi.String("Json"),
* Encoding: pulumi.String("UTF8"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.streamanalytics.StreamanalyticsFunctions;
* import com.pulumi.azure.streamanalytics.inputs.GetJobArgs;
* import com.pulumi.azure.storage.Account;
* import com.pulumi.azure.storage.AccountArgs;
* import com.pulumi.azure.storage.Container;
* import com.pulumi.azure.storage.ContainerArgs;
* import com.pulumi.azure.streamanalytics.StreamInputBlob;
* import com.pulumi.azure.streamanalytics.StreamInputBlobArgs;
* import com.pulumi.azure.streamanalytics.inputs.StreamInputBlobSerializationArgs;
* 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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
* final var example = StreamanalyticsFunctions.getJob(GetJobArgs.builder()
* .name("example-job")
* .resourceGroupName(exampleResourceGroup.name())
* .build());
* var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
* .name("examplestoracc")
* .resourceGroupName(exampleResourceGroup.name())
* .location(exampleResourceGroup.location())
* .accountTier("Standard")
* .accountReplicationType("LRS")
* .build());
* var exampleContainer = new Container("exampleContainer", ContainerArgs.builder()
* .name("example")
* .storageAccountName(exampleAccount.name())
* .containerAccessType("private")
* .build());
* var exampleStreamInputBlob = new StreamInputBlob("exampleStreamInputBlob", StreamInputBlobArgs.builder()
* .name("blob-stream-input")
* .streamAnalyticsJobName(example.applyValue(getJobResult -> getJobResult).applyValue(example -> example.applyValue(getJobResult -> getJobResult.name())))
* .resourceGroupName(example.applyValue(getJobResult -> getJobResult).applyValue(example -> example.applyValue(getJobResult -> getJobResult.resourceGroupName())))
* .storageAccountName(exampleAccount.name())
* .storageAccountKey(exampleAccount.primaryAccessKey())
* .storageContainerName(exampleContainer.name())
* .pathPattern("some-random-pattern")
* .dateFormat("yyyy/MM/dd")
* .timeFormat("HH")
* .serialization(StreamInputBlobSerializationArgs.builder()
* .type("Json")
* .encoding("UTF8")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* exampleResourceGroup:
* type: azure:core:ResourceGroup
* name: example
* properties:
* name: example-resources
* location: West Europe
* exampleAccount:
* type: azure:storage:Account
* name: example
* properties:
* name: examplestoracc
* resourceGroupName: ${exampleResourceGroup.name}
* location: ${exampleResourceGroup.location}
* accountTier: Standard
* accountReplicationType: LRS
* exampleContainer:
* type: azure:storage:Container
* name: example
* properties:
* name: example
* storageAccountName: ${exampleAccount.name}
* containerAccessType: private
* exampleStreamInputBlob:
* type: azure:streamanalytics:StreamInputBlob
* name: example
* properties:
* name: blob-stream-input
* streamAnalyticsJobName: ${example.name}
* resourceGroupName: ${example.resourceGroupName}
* storageAccountName: ${exampleAccount.name}
* storageAccountKey: ${exampleAccount.primaryAccessKey}
* storageContainerName: ${exampleContainer.name}
* pathPattern: some-random-pattern
* dateFormat: yyyy/MM/dd
* timeFormat: HH
* serialization:
* type: Json
* encoding: UTF8
* variables:
* example:
* fn::invoke:
* Function: azure:streamanalytics:getJob
* Arguments:
* name: example-job
* resourceGroupName: ${exampleResourceGroup.name}
* ```
*
* ## Import
* Stream Analytics Stream Input Blob's can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:streamanalytics/streamInputBlob:StreamInputBlob example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/inputs/input1
* ```
* @property dateFormat The date format. Wherever `{date}` appears in `path_pattern`, the value of this property is used as the date format instead.
* @property name The name of the Stream Input Blob. Changing this forces a new resource to be created.
* @property pathPattern The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job.
* @property resourceGroupName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
* @property serialization A `serialization` block as defined below.
* @property storageAccountKey The Access Key which should be used to connect to this Storage Account.
* @property storageAccountName The name of the Storage Account.
* @property storageContainerName The name of the Container within the Storage Account.
* @property streamAnalyticsJobName The name of the Stream Analytics Job. Changing this forces a new resource to be created.
* @property timeFormat The time format. Wherever `{time}` appears in `path_pattern`, the value of this property is used as the time format instead.
*/
public data class StreamInputBlobArgs(
public val dateFormat: Output? = null,
public val name: Output? = null,
public val pathPattern: Output? = null,
public val resourceGroupName: Output? = null,
public val serialization: Output? = null,
public val storageAccountKey: Output? = null,
public val storageAccountName: Output? = null,
public val storageContainerName: Output? = null,
public val streamAnalyticsJobName: Output? = null,
public val timeFormat: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.streamanalytics.StreamInputBlobArgs =
com.pulumi.azure.streamanalytics.StreamInputBlobArgs.builder()
.dateFormat(dateFormat?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.pathPattern(pathPattern?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.serialization(serialization?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.storageAccountKey(storageAccountKey?.applyValue({ args0 -> args0 }))
.storageAccountName(storageAccountName?.applyValue({ args0 -> args0 }))
.storageContainerName(storageContainerName?.applyValue({ args0 -> args0 }))
.streamAnalyticsJobName(streamAnalyticsJobName?.applyValue({ args0 -> args0 }))
.timeFormat(timeFormat?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StreamInputBlobArgs].
*/
@PulumiTagMarker
public class StreamInputBlobArgsBuilder internal constructor() {
private var dateFormat: Output? = null
private var name: Output? = null
private var pathPattern: Output? = null
private var resourceGroupName: Output? = null
private var serialization: Output? = null
private var storageAccountKey: Output? = null
private var storageAccountName: Output? = null
private var storageContainerName: Output? = null
private var streamAnalyticsJobName: Output? = null
private var timeFormat: Output? = null
/**
* @param value The date format. Wherever `{date}` appears in `path_pattern`, the value of this property is used as the date format instead.
*/
@JvmName("cvgowncifnakwntb")
public suspend fun dateFormat(`value`: Output) {
this.dateFormat = value
}
/**
* @param value The name of the Stream Input Blob. Changing this forces a new resource to be created.
*/
@JvmName("aiqmvrnsjjwgeuta")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job.
*/
@JvmName("rurulodpicdhjamb")
public suspend fun pathPattern(`value`: Output) {
this.pathPattern = value
}
/**
* @param value The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
*/
@JvmName("uogixhoiidwwbtdf")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value A `serialization` block as defined below.
*/
@JvmName("dnscfphcycxixduc")
public suspend fun serialization(`value`: Output) {
this.serialization = value
}
/**
* @param value The Access Key which should be used to connect to this Storage Account.
*/
@JvmName("nellguedbxctrwsj")
public suspend fun storageAccountKey(`value`: Output) {
this.storageAccountKey = value
}
/**
* @param value The name of the Storage Account.
*/
@JvmName("wamrhgfogjxltiot")
public suspend fun storageAccountName(`value`: Output) {
this.storageAccountName = value
}
/**
* @param value The name of the Container within the Storage Account.
*/
@JvmName("pxdpsbojlbwtdmdt")
public suspend fun storageContainerName(`value`: Output) {
this.storageContainerName = value
}
/**
* @param value The name of the Stream Analytics Job. Changing this forces a new resource to be created.
*/
@JvmName("nauyehlqxdbwhkis")
public suspend fun streamAnalyticsJobName(`value`: Output) {
this.streamAnalyticsJobName = value
}
/**
* @param value The time format. Wherever `{time}` appears in `path_pattern`, the value of this property is used as the time format instead.
*/
@JvmName("uqnhahtcxvgwtkyc")
public suspend fun timeFormat(`value`: Output) {
this.timeFormat = value
}
/**
* @param value The date format. Wherever `{date}` appears in `path_pattern`, the value of this property is used as the date format instead.
*/
@JvmName("jboauvyadneogmcq")
public suspend fun dateFormat(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dateFormat = mapped
}
/**
* @param value The name of the Stream Input Blob. Changing this forces a new resource to be created.
*/
@JvmName("rejhaidlhvgjwsts")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job.
*/
@JvmName("oppatwprxqgvuwom")
public suspend fun pathPattern(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.pathPattern = mapped
}
/**
* @param value The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
*/
@JvmName("xqjatphedrvntrne")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value A `serialization` block as defined below.
*/
@JvmName("nuuukpmmngfqfceb")
public suspend fun serialization(`value`: StreamInputBlobSerializationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serialization = mapped
}
/**
* @param argument A `serialization` block as defined below.
*/
@JvmName("twxnudjubnpvhnak")
public suspend fun serialization(argument: suspend StreamInputBlobSerializationArgsBuilder.() -> Unit) {
val toBeMapped = StreamInputBlobSerializationArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.serialization = mapped
}
/**
* @param value The Access Key which should be used to connect to this Storage Account.
*/
@JvmName("lolbcmywfdordasb")
public suspend fun storageAccountKey(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountKey = mapped
}
/**
* @param value The name of the Storage Account.
*/
@JvmName("fnfyyxlhdgpwudai")
public suspend fun storageAccountName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountName = mapped
}
/**
* @param value The name of the Container within the Storage Account.
*/
@JvmName("nvrabpqeijnasobj")
public suspend fun storageContainerName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageContainerName = mapped
}
/**
* @param value The name of the Stream Analytics Job. Changing this forces a new resource to be created.
*/
@JvmName("krxkarmawovcmlru")
public suspend fun streamAnalyticsJobName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.streamAnalyticsJobName = mapped
}
/**
* @param value The time format. Wherever `{time}` appears in `path_pattern`, the value of this property is used as the time format instead.
*/
@JvmName("fbdwwkdlyincktsh")
public suspend fun timeFormat(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timeFormat = mapped
}
internal fun build(): StreamInputBlobArgs = StreamInputBlobArgs(
dateFormat = dateFormat,
name = name,
pathPattern = pathPattern,
resourceGroupName = resourceGroupName,
serialization = serialization,
storageAccountKey = storageAccountKey,
storageAccountName = storageAccountName,
storageContainerName = storageContainerName,
streamAnalyticsJobName = streamAnalyticsJobName,
timeFormat = timeFormat,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy