PowerBIOutputDataSourceProperties Class

The properties that are associated with a Power BI output.

Inheritance
azure.mgmt.streamanalytics.models._models_py3.OAuthBasedDataSourceProperties
PowerBIOutputDataSourceProperties

Constructor

PowerBIOutputDataSourceProperties(*, refresh_token: Optional[str] = None, token_user_principal_name: Optional[str] = None, token_user_display_name: Optional[str] = None, dataset: Optional[str] = None, table: Optional[str] = None, group_id: Optional[str] = None, group_name: Optional[str] = None, authentication_mode: Optional[Union[str, azure.mgmt.streamanalytics.models._stream_analytics_management_client_enums.AuthenticationMode]] = None, **kwargs)

Parameters

refresh_token
str
Required

A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.

token_user_principal_name
str
Required

The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

token_user_display_name
str
Required

The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

dataset
str
Required

The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.

table
str
Required

The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.

group_id
str
Required

The ID of the Power BI group.

group_name
str
Required

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

authentication_mode
str or <xref:stream_analytics_management_client.models.AuthenticationMode>
Required

Authentication Mode. Possible values include: "Msi", "UserToken", "ConnectionString".