Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Updates the parameters values for the specified semantic models from the specified workspace.

Target Properties

Property Name

Property Code

Required

Description

Azure Power BI Account

FDPBI_ACCOUNT_CODE

No

The Power BI Cloud Account

Azure Power BI Workspace ID

FDPBI_TGT_WORKSPACE_ID

No

Workspace Id of the Power BI content

Azure Power BI Workspace Name

FDPBI_TGT_WORKSPACE_NAME

No

Workspace Name of the Power BI content. (Workspace Name is case-sensitive)

Project Properties

Property Name

Property Code

Required

Description

Parameters Details

FDPBI_PARAMS_DETAILS

No

Provide the json input.

Supports updating same/different params for multiple semantic models.

Parameters Details File Path

FDPBI_PARAMS_FILE_PATH

No

The File Path specifying the parameters details.

Inputs

Input Name

Input Code

Required

Description

Power BI Account

FDPBI_INP_ACCOUNT_CODE

No

Power BI Cloud account

Parameters Details

FDPBI_INP_PARAMS_DETAILS

No

Provide the json input.

Supports updating same/different params for multiple semantic models.

(Supports Property Replacement)

Code Block
{
	"parametersDetails": [
		{
			"semanticmodelNames": [
				"input1",
				"input2"
			],
			"parameters": [
				{
					"key": "mymodelparameter",
					"value": "${{parameterValue}}"
				}
			]
		}
	]
}

Parameters Details File Path

FDPBI_INP_PARAMS_FILE_PATH

No

The File Path specifying the parameters details.

If no file or parameter is specified (It will pick up the parameters-properties.json in the Artifacts Dir).

Use Either the Details File Path or the Parameter Details

...