We recommend using Azure Native.
azure.streamanalytics.ReferenceInputBlob
Explore with Pulumi AI
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.
Example Usage
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",
},
});
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={
"type": "Json",
"encoding": "UTF8",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/storage"
"github.com/pulumi/pulumi-azure/sdk/v6/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: 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.ReferenceInputBlobSerializationArgs{
Type: pulumi.String("Json"),
Encoding: pulumi.String("UTF8"),
},
})
if err != nil {
return err
}
return nil
})
}
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",
},
});
});
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());
}
}
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}
Create ReferenceInputBlob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReferenceInputBlob(name: string, args: ReferenceInputBlobArgs, opts?: CustomResourceOptions);
@overload
def ReferenceInputBlob(resource_name: str,
args: ReferenceInputBlobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ReferenceInputBlob(resource_name: str,
opts: Optional[ResourceOptions] = None,
date_format: Optional[str] = None,
path_pattern: Optional[str] = None,
resource_group_name: Optional[str] = None,
serialization: Optional[ReferenceInputBlobSerializationArgs] = None,
storage_account_name: Optional[str] = None,
storage_container_name: Optional[str] = None,
stream_analytics_job_name: Optional[str] = None,
time_format: Optional[str] = None,
authentication_mode: Optional[str] = None,
name: Optional[str] = None,
storage_account_key: Optional[str] = None)
func NewReferenceInputBlob(ctx *Context, name string, args ReferenceInputBlobArgs, opts ...ResourceOption) (*ReferenceInputBlob, error)
public ReferenceInputBlob(string name, ReferenceInputBlobArgs args, CustomResourceOptions? opts = null)
public ReferenceInputBlob(String name, ReferenceInputBlobArgs args)
public ReferenceInputBlob(String name, ReferenceInputBlobArgs args, CustomResourceOptions options)
type: azure:streamanalytics:ReferenceInputBlob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ReferenceInputBlobArgs
- 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 ReferenceInputBlobArgs
- 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 ReferenceInputBlobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReferenceInputBlobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReferenceInputBlobArgs
- 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 referenceInputBlobResource = new Azure.StreamAnalytics.ReferenceInputBlob("referenceInputBlobResource", new()
{
DateFormat = "string",
PathPattern = "string",
ResourceGroupName = "string",
Serialization = new Azure.StreamAnalytics.Inputs.ReferenceInputBlobSerializationArgs
{
Type = "string",
Encoding = "string",
FieldDelimiter = "string",
},
StorageAccountName = "string",
StorageContainerName = "string",
StreamAnalyticsJobName = "string",
TimeFormat = "string",
AuthenticationMode = "string",
Name = "string",
StorageAccountKey = "string",
});
example, err := streamanalytics.NewReferenceInputBlob(ctx, "referenceInputBlobResource", &streamanalytics.ReferenceInputBlobArgs{
DateFormat: pulumi.String("string"),
PathPattern: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Serialization: &streamanalytics.ReferenceInputBlobSerializationArgs{
Type: pulumi.String("string"),
Encoding: pulumi.String("string"),
FieldDelimiter: pulumi.String("string"),
},
StorageAccountName: pulumi.String("string"),
StorageContainerName: pulumi.String("string"),
StreamAnalyticsJobName: pulumi.String("string"),
TimeFormat: pulumi.String("string"),
AuthenticationMode: pulumi.String("string"),
Name: pulumi.String("string"),
StorageAccountKey: pulumi.String("string"),
})
var referenceInputBlobResource = new ReferenceInputBlob("referenceInputBlobResource", ReferenceInputBlobArgs.builder()
.dateFormat("string")
.pathPattern("string")
.resourceGroupName("string")
.serialization(ReferenceInputBlobSerializationArgs.builder()
.type("string")
.encoding("string")
.fieldDelimiter("string")
.build())
.storageAccountName("string")
.storageContainerName("string")
.streamAnalyticsJobName("string")
.timeFormat("string")
.authenticationMode("string")
.name("string")
.storageAccountKey("string")
.build());
reference_input_blob_resource = azure.streamanalytics.ReferenceInputBlob("referenceInputBlobResource",
date_format="string",
path_pattern="string",
resource_group_name="string",
serialization={
"type": "string",
"encoding": "string",
"fieldDelimiter": "string",
},
storage_account_name="string",
storage_container_name="string",
stream_analytics_job_name="string",
time_format="string",
authentication_mode="string",
name="string",
storage_account_key="string")
const referenceInputBlobResource = new azure.streamanalytics.ReferenceInputBlob("referenceInputBlobResource", {
dateFormat: "string",
pathPattern: "string",
resourceGroupName: "string",
serialization: {
type: "string",
encoding: "string",
fieldDelimiter: "string",
},
storageAccountName: "string",
storageContainerName: "string",
streamAnalyticsJobName: "string",
timeFormat: "string",
authenticationMode: "string",
name: "string",
storageAccountKey: "string",
});
type: azure:streamanalytics:ReferenceInputBlob
properties:
authenticationMode: string
dateFormat: string
name: string
pathPattern: string
resourceGroupName: string
serialization:
encoding: string
fieldDelimiter: string
type: string
storageAccountKey: string
storageAccountName: string
storageContainerName: string
streamAnalyticsJobName: string
timeFormat: string
ReferenceInputBlob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ReferenceInputBlob resource accepts the following input properties:
- Date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - Path
Pattern string - 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.
- Resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - Storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- Storage
Container stringName - The name of the Container within the Storage Account.
- Stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - Authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - Name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- Storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
- Date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - Path
Pattern string - 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.
- Resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Reference
Input Blob Serialization Args - A
serialization
block as defined below. - Storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- Storage
Container stringName - The name of the Container within the Storage Account.
- Stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - Authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - Name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- Storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
- date
Format String - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - path
Pattern String - 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.
- resource
Group StringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - storage
Account StringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container StringName - The name of the Container within the Storage Account.
- stream
Analytics StringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format String - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - authentication
Mode String - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - name String
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- storage
Account StringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
- date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - path
Pattern string - 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.
- resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container stringName - The name of the Container within the Storage Account.
- stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
- date_
format str - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - path_
pattern str - 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.
- resource_
group_ strname - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization Args - A
serialization
block as defined below. - storage_
account_ strname - The name of the Storage Account that has the blob container with reference data.
- storage_
container_ strname - The name of the Container within the Storage Account.
- stream_
analytics_ strjob_ name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time_
format str - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - authentication_
mode str - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - name str
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- storage_
account_ strkey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
- date
Format String - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - path
Pattern String - 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.
- resource
Group StringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization Property Map
- A
serialization
block as defined below. - storage
Account StringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container StringName - The name of the Container within the Storage Account.
- stream
Analytics StringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format String - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead. - authentication
Mode String - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - name String
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- storage
Account StringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReferenceInputBlob resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ReferenceInputBlob Resource
Get an existing ReferenceInputBlob 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?: ReferenceInputBlobState, opts?: CustomResourceOptions): ReferenceInputBlob
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication_mode: Optional[str] = None,
date_format: Optional[str] = None,
name: Optional[str] = None,
path_pattern: Optional[str] = None,
resource_group_name: Optional[str] = None,
serialization: Optional[ReferenceInputBlobSerializationArgs] = None,
storage_account_key: Optional[str] = None,
storage_account_name: Optional[str] = None,
storage_container_name: Optional[str] = None,
stream_analytics_job_name: Optional[str] = None,
time_format: Optional[str] = None) -> ReferenceInputBlob
func GetReferenceInputBlob(ctx *Context, name string, id IDInput, state *ReferenceInputBlobState, opts ...ResourceOption) (*ReferenceInputBlob, error)
public static ReferenceInputBlob Get(string name, Input<string> id, ReferenceInputBlobState? state, CustomResourceOptions? opts = null)
public static ReferenceInputBlob get(String name, Output<String> id, ReferenceInputBlobState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - Date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - Name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- Path
Pattern string - 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.
- Resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - Storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - Storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- Storage
Container stringName - The name of the Container within the Storage Account.
- Stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
- Authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - Date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - Name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- Path
Pattern string - 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.
- Resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Reference
Input Blob Serialization Args - A
serialization
block as defined below. - Storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - Storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- Storage
Container stringName - The name of the Container within the Storage Account.
- Stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
- authentication
Mode String - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - date
Format String - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - name String
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- path
Pattern String - 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.
- resource
Group StringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - storage
Account StringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - storage
Account StringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container StringName - The name of the Container within the Storage Account.
- stream
Analytics StringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format String - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
- authentication
Mode string - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - date
Format string - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - name string
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- path
Pattern string - 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.
- resource
Group stringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization - A
serialization
block as defined below. - storage
Account stringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - storage
Account stringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container stringName - The name of the Container within the Storage Account.
- stream
Analytics stringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format string - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
- authentication_
mode str - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - date_
format str - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - name str
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- path_
pattern str - 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.
- resource_
group_ strname - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Reference
Input Blob Serialization Args - A
serialization
block as defined below. - storage_
account_ strkey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - storage_
account_ strname - The name of the Storage Account that has the blob container with reference data.
- storage_
container_ strname - The name of the Container within the Storage Account.
- stream_
analytics_ strjob_ name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time_
format str - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
- authentication
Mode String - The authentication mode for the Stream Analytics Reference Input. Possible values are
Msi
andConnectionString
. Defaults toConnectionString
. - date
Format String - The date format. Wherever
{date}
appears inpath_pattern
, the value of this property is used as the date format instead. - name String
- The name of the Reference Input Blob. Changing this forces a new resource to be created.
- path
Pattern String - 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.
- resource
Group StringName - The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization Property Map
- A
serialization
block as defined below. - storage
Account StringKey - The Access Key which should be used to connect to this Storage Account. Required if
authentication_mode
isConnectionString
. - storage
Account StringName - The name of the Storage Account that has the blob container with reference data.
- storage
Container StringName - The name of the Container within the Storage Account.
- stream
Analytics StringJob Name - The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- time
Format String - The time format. Wherever
{time}
appears inpath_pattern
, the value of this property is used as the time format instead.
Supporting Types
ReferenceInputBlobSerialization, ReferenceInputBlobSerializationArgs
- Type string
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - Encoding string
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- Field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
- Type string
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - Encoding string
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- Field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
- type String
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - encoding String
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- field
Delimiter String The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
- type string
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - encoding string
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
- type str
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - encoding str
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- field_
delimiter str The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
- type String
- The serialization format used for the reference data. Possible values are
Avro
,Csv
andJson
. - encoding String
The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to
UTF8
.NOTE: This is required when
type
is set toCsv
orJson
.- field
Delimiter String The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are
(space),
,
(comma),(tab),
|
(pipe) and;
.NOTE: This is required when
type
is set toCsv
.
Import
Stream Analytics Reference Input Blob’s can be imported using the resource id
, e.g.
$ pulumi import azure:streamanalytics/referenceInputBlob:ReferenceInputBlob example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/inputs/input1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.