Show / Hide Table of Contents

Class ReferenceInputBlob

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.

Inheritance
System.Object
Resource
CustomResource
ReferenceInputBlob
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.StreamAnalytics
Assembly: Pulumi.Azure.dll
Syntax
public class ReferenceInputBlob : CustomResource

Constructors

View Source

ReferenceInputBlob(String, ReferenceInputBlobArgs, CustomResourceOptions)

Create a ReferenceInputBlob resource with the given unique name, arguments, and options.

Declaration
public ReferenceInputBlob(string name, ReferenceInputBlobArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ReferenceInputBlobArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

DateFormat

The date format. Wherever {date} appears in path_pattern, the value of this property is used as the date format instead.

Declaration
public Output<string> DateFormat { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The name of the Reference Input Blob. Changing this forces a new resource to be created.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

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.

Declaration
public Output<string> PathPattern { get; }
Property Value
Type Description
Output<System.String>
View Source

ResourceGroupName

The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.

Declaration
public Output<string> ResourceGroupName { get; }
Property Value
Type Description
Output<System.String>
View Source

Serialization

A serialization block as defined below.

Declaration
public Output<ReferenceInputBlobSerialization> Serialization { get; }
Property Value
Type Description
Output<ReferenceInputBlobSerialization>
View Source

StorageAccountKey

The Access Key which should be used to connect to this Storage Account.

Declaration
public Output<string> StorageAccountKey { get; }
Property Value
Type Description
Output<System.String>
View Source

StorageAccountName

The name of the Storage Account that has the blob container with reference data.

Declaration
public Output<string> StorageAccountName { get; }
Property Value
Type Description
Output<System.String>
View Source

StorageContainerName

The name of the Container within the Storage Account.

Declaration
public Output<string> StorageContainerName { get; }
Property Value
Type Description
Output<System.String>
View Source

StreamAnalyticsJobName

The name of the Stream Analytics Job. Changing this forces a new resource to be created.

Declaration
public Output<string> StreamAnalyticsJobName { get; }
Property Value
Type Description
Output<System.String>
View Source

TimeFormat

The time format. Wherever {time} appears in path_pattern, the value of this property is used as the time format instead.

Declaration
public Output<string> TimeFormat { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, ReferenceInputBlobState, CustomResourceOptions)

Get an existing ReferenceInputBlob resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static ReferenceInputBlob Get(string name, Input<string> id, ReferenceInputBlobState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ReferenceInputBlobState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
ReferenceInputBlob
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.