All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.streamanalytics.kotlin.ReferenceInputBlobArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.streamanalytics.kotlin

import com.pulumi.azure.streamanalytics.ReferenceInputBlobArgs.builder
import com.pulumi.azure.streamanalytics.kotlin.inputs.ReferenceInputBlobSerializationArgs
import com.pulumi.azure.streamanalytics.kotlin.inputs.ReferenceInputBlobSerializationArgsBuilder
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 Reference Input Blob. Reference data (also known as a lookup table) is a finite data set that is static or slowly changing in nature, used to perform a lookup or to correlate with your data stream. Learn more [here](https://docs.microsoft.com/azure/stream-analytics/stream-analytics-use-reference-data#azure-blob-storage).
 * ## 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 test = new azure.streamanalytics.ReferenceInputBlob("test", {
 *     name: "blob-reference-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")
 * test = azure.streamanalytics.ReferenceInputBlob("test",
 *     name="blob-reference-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=azure.streamanalytics.ReferenceInputBlobSerializationArgs(
 *         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 test = new Azure.StreamAnalytics.ReferenceInputBlob("test", new()
 *     {
 *         Name = "blob-reference-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.ReferenceInputBlobSerializationArgs
 *         {
 *             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.NewReferenceInputBlob(ctx, "test", &streamanalytics.ReferenceInputBlobArgs{
 * 			Name: pulumi.String("blob-reference-input"),
 * 			StreamAnalyticsJobName: example.ApplyT(func(example streamanalytics.GetJobResult) (*string, error) {
 * 				return &example.Name, nil
 * 			}).(pulumi.StringPtrOutput),
 * 			ResourceGroupName: 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.ReferenceInputBlobSerializationArgs{
 * 				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.ReferenceInputBlob;
 * import com.pulumi.azure.streamanalytics.ReferenceInputBlobArgs;
 * import com.pulumi.azure.streamanalytics.inputs.ReferenceInputBlobSerializationArgs;
 * 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 test = new ReferenceInputBlob("test", ReferenceInputBlobArgs.builder()
 *             .name("blob-reference-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(ReferenceInputBlobSerializationArgs.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
 *   test:
 *     type: azure:streamanalytics:ReferenceInputBlob
 *     properties:
 *       name: blob-reference-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 Reference Input Blob's can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:streamanalytics/referenceInputBlob:ReferenceInputBlob example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/inputs/input1
 * ```
 * @property authenticationMode The authentication mode for the Stream Analytics Reference Input. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`.
 * @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 Reference 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. Required if `authentication_mode` is `ConnectionString`.
 * @property storageAccountName The name of the Storage Account that has the blob container with reference data.
 * @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 ReferenceInputBlobArgs(
    public val authenticationMode: Output? = null,
    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.ReferenceInputBlobArgs =
        com.pulumi.azure.streamanalytics.ReferenceInputBlobArgs.builder()
            .authenticationMode(authenticationMode?.applyValue({ args0 -> args0 }))
            .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 [ReferenceInputBlobArgs].
 */
@PulumiTagMarker
public class ReferenceInputBlobArgsBuilder internal constructor() {
    private var authenticationMode: Output? = null

    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 authentication mode for the Stream Analytics Reference Input. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`.
     */
    @JvmName("fbeiwnrufobjteoh")
    public suspend fun authenticationMode(`value`: Output) {
        this.authenticationMode = 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("fbmxvqqnfyglmxnu")
    public suspend fun dateFormat(`value`: Output) {
        this.dateFormat = value
    }

    /**
     * @param value The name of the Reference Input Blob. Changing this forces a new resource to be created.
     */
    @JvmName("pekmvdwtxhaaktjr")
    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("dpgondgjdulaecmn")
    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("ehibotldnolvlryw")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value A `serialization` block as defined below.
     */
    @JvmName("juotrxrxeqwhjnhp")
    public suspend fun serialization(`value`: Output) {
        this.serialization = value
    }

    /**
     * @param value The Access Key which should be used to connect to this Storage Account. Required if `authentication_mode` is `ConnectionString`.
     */
    @JvmName("eptajytcxfmunhsk")
    public suspend fun storageAccountKey(`value`: Output) {
        this.storageAccountKey = value
    }

    /**
     * @param value The name of the Storage Account that has the blob container with reference data.
     */
    @JvmName("fkguojtvabouykke")
    public suspend fun storageAccountName(`value`: Output) {
        this.storageAccountName = value
    }

    /**
     * @param value The name of the Container within the Storage Account.
     */
    @JvmName("mifyilycpmhnxprl")
    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("kcraaulgmsntumxg")
    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("ypepghnfkjadgfta")
    public suspend fun timeFormat(`value`: Output) {
        this.timeFormat = value
    }

    /**
     * @param value The authentication mode for the Stream Analytics Reference Input. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`.
     */
    @JvmName("mafxvinkkcmsxhke")
    public suspend fun authenticationMode(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.authenticationMode = mapped
    }

    /**
     * @param value The date format. Wherever `{date}` appears in `path_pattern`, the value of this property is used as the date format instead.
     */
    @JvmName("kxyrfjqfqcylrnvt")
    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 Reference Input Blob. Changing this forces a new resource to be created.
     */
    @JvmName("ryyhbwdxpihdlywd")
    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("hrvyaqhuawlysgux")
    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("hbfscyfusfepdmqd")
    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("ukvneqtmvnqvsjgh")
    public suspend fun serialization(`value`: ReferenceInputBlobSerializationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.serialization = mapped
    }

    /**
     * @param argument A `serialization` block as defined below.
     */
    @JvmName("rmvnxnorfpgalnwl")
    public suspend
    fun serialization(argument: suspend ReferenceInputBlobSerializationArgsBuilder.() -> Unit) {
        val toBeMapped = ReferenceInputBlobSerializationArgsBuilder().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. Required if `authentication_mode` is `ConnectionString`.
     */
    @JvmName("aijvsoqjyuysaprj")
    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 that has the blob container with reference data.
     */
    @JvmName("idyhlsrevyfyntcn")
    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("bynriopbpxhwgfjl")
    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("xntwicnamktkggcm")
    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("yeaamrlmxvgbxpbt")
    public suspend fun timeFormat(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.timeFormat = mapped
    }

    internal fun build(): ReferenceInputBlobArgs = ReferenceInputBlobArgs(
        authenticationMode = authenticationMode,
        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