@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets details about the specified input.
*
* Uses Azure REST API version 2020-03-01.
*
* Other available API versions: 2021-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native streamanalytics [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getInput(args: GetInputArgs, opts?: pulumi.InvokeOptions): Promise<GetInputResult>;
export interface GetInputArgs {
/**
* The name of the input.
*/
inputName: string;
/**
* The name of the streaming job.
*/
jobName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* An input object, containing all information associated with the named input. All inputs are contained under a streaming job.
*/
export interface GetInputResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Resource Id
*/
readonly id: string;
/**
* Resource name
*/
readonly name?: string;
/**
* The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
*/
readonly properties: outputs.streamanalytics.ReferenceInputPropertiesResponse | outputs.streamanalytics.StreamInputPropertiesResponse;
/**
* Resource type
*/
readonly type: string;
}
/**
* Gets details about the specified input.
*
* Uses Azure REST API version 2020-03-01.
*
* Other available API versions: 2021-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native streamanalytics [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getInputOutput(args: GetInputOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInputResult>;
export interface GetInputOutputArgs {
/**
* The name of the input.
*/
inputName: pulumi.Input<string>;
/**
* The name of the streaming job.
*/
jobName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}