OutputPowerbi

class OutputPowerbi : KotlinCustomResource

Manages a Stream Analytics Output powerBI.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.inputs.GetResourceGroupArgs;
import com.pulumi.azure.streamanalytics.StreamanalyticsFunctions;
import com.pulumi.azure.streamanalytics.inputs.GetJobArgs;
import com.pulumi.azure.streamanalytics.OutputPowerbi;
import com.pulumi.azure.streamanalytics.OutputPowerbiArgs;
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) {
final var exampleResourceGroup = CoreFunctions.getResourceGroup(GetResourceGroupArgs.builder()
.name("example-resources")
.build());
final var exampleJob = StreamanalyticsFunctions.getJob(GetJobArgs.builder()
.name("example-job")
.resourceGroupName(exampleResourceGroup.applyValue(getResourceGroupResult -> getResourceGroupResult.name()))
.build());
var exampleOutputPowerbi = new OutputPowerbi("exampleOutputPowerbi", OutputPowerbiArgs.builder()
.streamAnalyticsJobId(exampleJob.applyValue(getJobResult -> getJobResult.id()))
.dataset("example-dataset")
.table("example-table")
.groupId("00000000-0000-0000-0000-000000000000")
.groupName("some-group-name")
.build());
}
}

Import

Stream Analytics Output to Power BI can be imported using the resource id, e.g.

$ pulumi import azure:streamanalytics/outputPowerbi:OutputPowerbi example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/outputs/output1

Properties

Link copied to clipboard
val dataset: Output<String>

The name of the Power BI dataset.

Link copied to clipboard
val groupId: Output<String>

The ID of the Power BI group, this must be a valid UUID.

Link copied to clipboard
val groupName: Output<String>

The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard
val table: Output<String>

The name of the Power BI table under the specified dataset.

Link copied to clipboard

The user display name of the user that was used to obtain the refresh token.

Link copied to clipboard

The user principal name (UPN) of the user that was used to obtain the refresh token.

Link copied to clipboard
val urn: Output<String>