PSTableauREST.psm1
### Module variables and helper functions $TableauRestMinVersion = [version] 2.4 # supported version for initial sign-in calls $TableauRestFileSizeLimit = 64MB # 64MB is the maximum file size for single publishing request $TableauRestChunkSize = 2MB # multipart chunk size for file uploads function Invoke-TableauRestMethod { <# .SYNOPSIS Call Tableau Server REST API method .DESCRIPTION Helper function that implements Tableau Server REST API calls with Invoke-RestMethod. See help for Invoke-RestMethod for common parameters description. This function should only be used by advanced users for non-implemented API calls. .PARAMETER Method Specifies the method used for the web request. The typical values for this parameter are: Get, Post, Put, Delete, Patch, Options, Head .PARAMETER Uri Specifies the Uniform Resource Identifier (URI) of the Internet resource to which the web request is sent. .PARAMETER Body (Optional) Specifies the body of the request. The body is the content of the request that follows the headers. .PARAMETER InFile (Optional) Gets the content of the web request from a file. Enter a path and file name. If you omit the path, the default is the current location. .PARAMETER OutFile (Optional) Saves the response body in the specified output file. Enter a path and file name. If you omit the path, the default is the current location. .PARAMETER TimeoutSec (Optional) Specifies how long the request can be pending before it times out. Enter a value in seconds. The default value, 0, specifies an indefinite time-out. .PARAMETER ContentType (Optional) Specifies the content type of the web request. Typical values: application/xml, application/json .PARAMETER SkipCertificateCheck (Optional) Skips certificate validation checks that include all validations such as expiration, revocation, trusted root authority, etc. .PARAMETER AddHeaders (Optional) Specifies additional HTTP headers in a hashtable. .PARAMETER NoStandardHeader (Optional) Switch parameter, indicates not to include the standard Tableau Server auth token in the headers .EXAMPLE $serverInfo = Invoke-TableauRestMethod -Uri $ServerUrl/api/$apiVersion/serverinfo -Method Get -NoStandardHeader .LINK Invoke-RestMethod #> [OutputType()] Param( # proxy params [Parameter(Mandatory)][Microsoft.PowerShell.Commands.WebRequestMethod] $Method, [Parameter(Mandatory)][uri] $Uri, [Parameter(ValueFromPipeline=$true)][System.Object] $Body, [Parameter()][string] $InFile, [Parameter()][string] $OutFile, [Parameter()][ValidateRange(0, 2147483647)][int] $TimeoutSec, [Parameter()][string] $ContentType, [Parameter()][switch] $SkipCertificateCheck, # own params [Parameter()][hashtable] $AddHeaders, [Parameter()][switch] $NoStandardHeader ) begin { if ($NoStandardHeader) { $PSBoundParameters.Remove('NoStandardHeader') } else { $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" if ($script:TableauAuthToken) { $headers.Add('X-Tableau-Auth', $script:TableauAuthToken) } # ContentType header not needed, already considered via the param to Invoke-RestMethod if ($AddHeaders) { $AddHeaders.GetEnumerator() | ForEach-Object { $headers.Add($_.Key, $_.Value) } $PSBoundParameters.Remove('AddHeaders') } $PSBoundParameters.Add('Headers', $headers) Write-Debug ($headers | ConvertTo-Json -Compress) } if ($DebugPreference -eq 'Continue') { $requestInfo = "{0} {1} " -f $Method.ToString().ToUpper(), $Uri $PSBoundParameters.GetEnumerator() | ForEach-Object { if ($_.Key -notin 'Method','Uri') { $requestInfo += "<{0}>" -f $_.Key } } Write-Debug $requestInfo } } process { try { Invoke-RestMethod @PSBoundParameters } catch [System.Net.WebException],[System.Net.Http.HttpRequestException] { # WebException is generated on PS5, HttpRequestException on PS7 # note: if parameter -Exception $_.Exception is included, re-throws same exception, but doesn't show message in output (PS7) # therefore we generate "WriteErrorException" instead Write-Error ($_.Exception.Message + " " + $_.ErrorDetails.Message) -Category InvalidResult -ErrorAction Stop #-Exception $_.Exception } } end {} } function Get-TableauRequestUri { <# .SYNOPSIS Generates and returns specific Tableau Server REST API call URL .DESCRIPTION Internal function. Generates and returns specific Tableau Server REST API call URL. .PARAMETER Endpoint Endpoint entity. Usually the URL includes the entity in plural. .PARAMETER Param URL parameter to add upon the endpoint entity. .NOTES Expand ValidateSet to add support for more Endpoints. #> [OutputType([string])] Param( [Parameter(Mandatory)][ValidateSet('Versionless','Auth','OIDC','Site','Session','Domain', 'Setting','ServerSetting','ConnectedApp','EAS','VirtualConnection', 'Project','User','Group','Groupset','Workbook','Datasource','View','Flow', 'FileUpload','Recommendation','CustomView','Favorite','OrderFavorite', 'Schedule','ServerSchedule','Job','Task', 'Subscription','DataAlert','Webhook', 'Database','Table','GraphQL')][string] $Endpoint, [Parameter()][string] $Param ) if ($Endpoint -eq 'Versionless') { $uri = "$script:TableauServerUrl/api/-/$Param" } else { $uri = "$script:TableauServerUrl/api/$script:TableauRestVersion/" switch ($Endpoint) { 'Auth' { $uri += "auth/$Param" } 'Site' { $uri += "sites" if ($Param) { $uri += "/$Param" } } 'Session' { $uri += "sessions" if ($Param) { $uri += "/$Param" } } 'Domain' { $uri += "domains" if ($Param) { $uri += "/$Param" } } 'ServerSchedule' { $uri += "schedules" if ($Param) { $uri += "/$Param" } } 'ServerSetting' { $uri += "settings" if ($Param) { $uri += "/$Param" } } 'ConnectedApp' { if ($script:TableauRestVersion -ge 3.17) { $uri += "sites/$script:TableauSiteId/connected-apps/direct-trust" } else { $uri += "sites/$script:TableauSiteId/connected-applications" } if ($Param) { $uri += "/$Param" } } 'EAS' { $uri += "sites/$script:TableauSiteId/connected-apps/external-authorization-servers" if ($Param) { $uri += "/$Param" } } 'OIDC' { if ($Param -eq 'remove') { $uri += "sites/$script:TableauSiteId/disable-oidc-configuration" } else { $uri += "sites/$script:TableauSiteId/site-oidc-configuration" } } 'GraphQL' { $uri = "$script:TableauServerUrl/api/metadata/graphql" } default { $uri += "sites/$script:TableauSiteId/" + $Endpoint.ToLower() + "s" # User -> users, etc. if ($Param) { $uri += "/$Param" } } } } return $uri } function Add-TableauRequestCredentialsElement { <# .SYNOPSIS Helper function for generating XML element connectionCredentials .DESCRIPTION Internal function. Helper function for generating XML element "connectionCredentials". Modifies the XML object by appending into $Element. #> [OutputType()] Param( [Parameter(Mandatory)][System.Xml.XmlElement] $Element, [Parameter(Mandatory)][hashtable] $Credentials ) if (-Not ($Credentials["username"] -and $Credentials["password"])) { Write-Error "Credentials must contain both username and password" -Category InvalidArgument -ErrorAction Stop } $el_connection = $Element.AppendChild($Element.OwnerDocument.CreateElement("connectionCredentials")) $el_connection.SetAttribute("name", $Credentials["username"]) if ($Credentials["password"] -isnot [securestring]) { Write-Error "Password must be a SecureString" -Category InvalidArgument -ErrorAction Stop } $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $Credentials["password"])).Password $el_connection.SetAttribute("password", $private:PlainPassword) if ($Credentials["embed"]) { $el_connection.SetAttribute("embed", $Credentials["embed"]) } if ($Credentials["oAuth"]) { $el_connection.SetAttribute("oAuth", $Credentials["oAuth"]) } } function Add-TableauRequestConnectionsElement { <# .SYNOPSIS Helper function for generating XML element connections .DESCRIPTION Internal function. Helper function for generating XML element "connections". Modifies the XML object by appending into $Element. #> [OutputType()] Param( [Parameter(Mandatory)][System.Xml.XmlElement] $Element, [Parameter(Mandatory)][hashtable[]] $Connections ) $el_connections = $Element.AppendChild($Element.OwnerDocument.CreateElement("connections")) foreach ($connection in $Connections) { $el_connection = $el_connections.AppendChild($Element.OwnerDocument.CreateElement("connection")) if ($connection["serverAddress"]) { $el_connection.SetAttribute("serverAddress", $connection["serverAddress"]) } else { Write-Error "Connection must have a server address" -Category InvalidArgument -ErrorAction Stop } if ($connection["serverPort"]) { $el_connection.SetAttribute("serverPort", $connection["serverPort"]) } if ($connection["credentials"] -and ($connection["credentials"] -is [hashtable])) { Add-TableauRequestCredentialsElement -Element $el_connection -Credentials $connection["credentials"] } elseif ($connection["username"] -and $connection["password"] -and $connection["embed"]) { Add-TableauRequestCredentialsElement -Element $el_connection -Credentials @{ username = $connection["username"] password = $connection["password"] embed = $connection["embed"] } } } } ### API version methods function Assert-TableauRestVersion { <# .SYNOPSIS Assert check for Tableau Server REST API version .DESCRIPTION Assert check for Tableau Server REST API version. If the version is not compatible with the parameter inputs, an exception is generated through Write-Error call. .PARAMETER AtLeast Demands that the REST API version has to be at least this version number. This is useful when a specific functionality has been introduced with this version. .PARAMETER LessThan Demands that the REST API version has to be less than this version number. This is needed for compatibility when a specific functionality has been decommissioned. .EXAMPLE Assert-TableauRestVersion -AtLeast 3.16 .NOTES Version mapping: https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_versions.htm What's new in REST API: https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_whats_new.htm #> [OutputType()] Param( [Parameter()][version] $AtLeast, [Parameter()][version] $LessThan ) if ($AtLeast -and $script:TableauRestVersion -lt $AtLeast) { Write-Error "Method or parameter not supported, needs API version >= $AtLeast" -Category NotImplemented -ErrorAction Stop } if ($LessThan -and $script:TableauRestVersion -ge $LessThan) { Write-Error "Method or parameter not supported, needs API version < $LessThan" -Category NotImplemented -ErrorAction Stop } } function Get-TableauRestVersion { <# .SYNOPSIS Returns currently selected Tableau Server REST API version .DESCRIPTION Returns currently selected Tableau Server REST API version (stored in module variable). .EXAMPLE $apiVer = Get-TableauRestVersion #> [OutputType([version])] Param() return $script:TableauRestVersion } function Set-TableauRestVersion { <# .SYNOPSIS Selects Tableau Server REST API version for future calls .DESCRIPTION Selects Tableau Server REST API version for future calls (stored in module variable). .PARAMETER ApiVersion The specific API version to switch to. .EXAMPLE Set-TableauRestVersion -ApiVersion 3.20 #> [CmdletBinding(SupportsShouldProcess)] [OutputType()] Param( [Parameter()][version] $ApiVersion ) if ($PSCmdlet.ShouldProcess($ApiVersion)) { $script:TableauRestVersion = $ApiVersion } } ### Authentication / Server methods function Get-TableauServerInfo { <# .SYNOPSIS Retrieves the object with Tableau Server info .DESCRIPTION Retrieves the object with Tableau Server info, such as build number, product version, etc. .PARAMETER ServerUrl Optional parameter with Tableau Server URL. If not provided, the current Server URL (when signed-in) is used. .EXAMPLE $serverInfo = Get-TableauServerInfo .NOTES This API can be called by anyone, even non-authenticated, so it doesn't require X-Tableau-Auth header. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_server.htm#server_info #> [OutputType([PSCustomObject])] Param( [Parameter()][string] $ServerUrl ) if (-Not $ServerUrl) { $ServerUrl = $script:TableauServerUrl } $apiVersion = $script:TableauRestMinVersion if ($script:TableauRestVersion) { $apiVersion = $script:TableauRestVersion } $response = Invoke-TableauRestMethod -Uri $ServerUrl/api/$apiVersion/serverinfo -Method Get -NoStandardHeader return $response.tsResponse.serverInfo } function Connect-TableauServer { <# .SYNOPSIS Connect / Sign-In to Tableau Server or Tableau Cloud service. .DESCRIPTION Signs in as a specific user on the specified site of Tableau Server or Tableau Cloud. This function initiates the session and stores the auth token that's required for most other REST API calls. Authentication on Tableau Server (or Tableau Cloud) can be done with either - username and password - personal access token (PAT), using PAT name and PAT secret .PARAMETER ServerUrl The URL of the Tableau Server, including the protocol (usually https://) and the FQDN (not including the URL path). For Tableau Cloud, the server address in the URI must contain the pod name, such as 10az, 10ay, or us-east-1. .PARAMETER Credential The credential object for signing in. It contains either: - username and password (as SecureString) - name and the secret value of the personal access token .PARAMETER PersonalAccessToken This switch parameter indicates that the credential contain personal access token. The token can be created/viewed on an account page of an individual user (on Tableau Server or Tableau Cloud). .PARAMETER Site The permanent name of the site to sign in to (aka content URL). By default, the default site with content URL "" is selected. .PARAMETER ImpersonateUserId The user ID to impersonate upon sign-in. This can be only used by Server Administrators. .PARAMETER UseServerVersion Boolean, if true, sets current REST API version to the latest version supported by the Tableau Server. Default is true. If false, the minimum supported version (2.4) is retained. .EXAMPLE $credentials = Connect-TableauServer -Server https://tableau.myserver.com -Credential (New-Object System.Management.Automation.PSCredential ($user, $securePw)) .EXAMPLE $credentials = Connect-TableauServer -Server https://10ay.online.tableau.com -Site sandboxXXXXXXNNNNNN -Credential $pat_credential -PersonalAccessToken .NOTES This function has to be called prior to other REST API function calls. Typically, a credentials token is valid for 240 minutes. With administrator permissions on Tableau Server you can increase this idle timeout. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_authentication.htm #> [Alias('Login-TableauServer')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ServerUrl, [Parameter(Mandatory)][pscredential] $Credential, [Parameter()][switch] $PersonalAccessToken, [Parameter()][string] $Site = '', [Parameter()][string] $ImpersonateUserId, [Parameter()][bool] $UseServerVersion = $true ) $serverInfo = Get-TableauServerInfo -ServerUrl $ServerUrl $script:TableauServerUrl = $ServerUrl # $script:TableauProductVersion = $serverInfo.productVersion.InnerText # $script:TableauProductVersionBuild = $serverInfo.productVersion.build # $script:TableauPrepConductorVersion = $serverInfo.prepConductorVersion if ($UseServerVersion) { $script:TableauRestVersion = [version]$serverInfo.restApiVersion } else { $script:TableauRestVersion = [version]$script:TableauRestMinVersion } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_credentials = $tsRequest.AppendChild($xml.CreateElement("credentials")) $el_site = $el_credentials.AppendChild($xml.CreateElement("site")) $el_site.SetAttribute("contentUrl", $Site) if ($ImpersonateUserId) { $el_user = $el_credentials.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $ImpersonateUserId) } if ($PersonalAccessToken) { Assert-TableauRestVersion -AtLeast 3.6 $el_credentials.SetAttribute("personalAccessTokenName", $Credential.GetNetworkCredential().UserName) $el_credentials.SetAttribute("personalAccessTokenSecret", $Credential.GetNetworkCredential().Password) if ($ImpersonateUserId) { Assert-TableauRestVersion -AtLeast 3.11 } } else { # Username and Password $el_credentials.SetAttribute("name", $Credential.GetNetworkCredential().UserName) $el_credentials.SetAttribute("password", $Credential.GetNetworkCredential().Password) } $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Auth -Param signin) -Body $xml.OuterXml -Method Post -NoStandardHeader $script:TableauAuthToken = $response.tsResponse.credentials.token $script:TableauSiteId = $response.tsResponse.credentials.site.id $script:TableauUserId = $response.tsResponse.credentials.user.id return $response.tsResponse.credentials } function Assert-TableauAuthToken { <# .SYNOPSIS Asserts that the authentication token exists .DESCRIPTION Asserts that the authentication token exists. The auth token is initialized when a successful sign-in is performed. .EXAMPLE Assert-TableauAuthToken #> [OutputType()] Param() if (-Not $script:TableauAuthToken) { Write-Error "Sign in first with Connect-TableauServer" -Category OperationStopped -ErrorAction Stop } } function Switch-TableauSite { <# .SYNOPSIS Switch Site .DESCRIPTION Switches you onto another site of Tableau Server without having to provide a user name and password again. .PARAMETER Site The permanent name of the site to sign in to (aka content URL). E.g. mySite is the content URL in the following example: http://<server or cloud URL>/#/site/mySite/explore .EXAMPLE $credentials = Switch-TableauSite -Site 'mySite' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_authentication.htm#switch_site #> [OutputType([PSCustomObject])] Param( [Parameter()][string] $Site = '' ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 2.6 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_site = $tsRequest.AppendChild($xml.CreateElement("site")) $el_site.SetAttribute("contentUrl", $Site) $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Auth -Param switchSite) -Body $xml.OuterXml -Method Post $script:TableauAuthToken = $response.tsResponse.credentials.token $script:TableauSiteId = $response.tsResponse.credentials.site.id $script:TableauUserId = $response.tsResponse.credentials.user.id return $response.tsResponse.credentials } function Disconnect-TableauServer { <# .SYNOPSIS Sign Out .DESCRIPTION Signs you out of the current session. This call invalidates the authentication token that is created by a call to Connect-TableauServer. .EXAMPLE Disconnect-TableauServer .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_authentication.htm#sign_out #> [Alias('Logout-TableauServer')] [OutputType([PSCustomObject])] Param() $response = $null if ($null -ne $script:TableauServerUrl -and $null -ne $script:TableauAuthToken) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Auth -Param signout) -Method Post $script:TableauServerUrl = $null $script:TableauAuthToken = $null $script:TableauSiteId = $null $script:TableauUserId = $null $script:TableauRestVersion = $script:TableauRestMinVersion # reset to minimum supported version } else { Write-Warning "Currently not signed in." } return $response } function Revoke-TableauServerAdminPAT { <# .SYNOPSIS Revoke Administrator Personal Access Tokens .DESCRIPTION Revokes all personal access tokens created by server administrators. This method is not available for Tableau Cloud. .EXAMPLE $response = Revoke-TableauServerAdminPAT .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_authentication.htm#revoke_administrator_personal_access_tokens #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.10 if ($PSCmdlet.ShouldProcess()) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Auth -Param serverAdminAccessTokens) -Method Delete } } function Get-TableauCurrentUserId { <# .SYNOPSIS Returns the current user ID .DESCRIPTION Returns the user ID of the currently signed in user (stored in an internal module variable) .EXAMPLE $userId = Get-TableauCurrentUserId #> [OutputType([string])] Param() return $script:TableauUserId } function Get-TableauSession { <# .SYNOPSIS Get Current Server Session .DESCRIPTION Returns details of the current session of Tableau Server. .EXAMPLE $session = Get-TableauSession .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_server.htm#get-current-server-session #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.1 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Session -Param current) -Method Get return $response.tsResponse.session } function Remove-TableauSession { <# .SYNOPSIS Delete Server Session .DESCRIPTION Deletes a specified session. This method is not available for Tableau Cloud and is typically used in programmatic management of the life cycles of embedded Tableau sessions. .PARAMETER SessionId The session ID to be deleted. .EXAMPLE $response = Remove-TableauSession -SessionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_server.htm#delete_server_session #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SessionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.9 if ($PSCmdlet.ShouldProcess($SessionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Session -Param $SessionId) -Method Delete } } function Get-TableauActiveDirectoryDomain { <# .SYNOPSIS List Server Active Directory Domains .DESCRIPTION Returns the details of the Active Directory domains that are in use on the server, including their full domain names, nicknames and IDs. If the server is configured to use local authentication, the command returns only the domain name local. .EXAMPLE $domains = Get-TableauActiveDirectoryDomain .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_server.htm#list_server_active_directory_domains #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Domain) -Method Get return $response.tsResponse.domainList.domain } function Set-TableauActiveDirectoryDomain { <# .SYNOPSIS Update Server Active Directory Domain .DESCRIPTION Changes the nickname or full domain name of an Active Directory domain on the server. This method can only be called by server administrators; it is not available on Tableau Cloud. .PARAMETER DomainId The integer ID of the of the Active Directory domain being updated. .PARAMETER Name A new full domain name you are using to replace the existing one. .PARAMETER ShortName A new domain nickname you are using to replace the existing one. .EXAMPLE $domain = Set-TableauActiveDirectoryDomain .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_server.htm#update_server_active_directory_domain #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauActiveDirectoryDomain')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DomainId, [Parameter()][string] $Name, [Parameter()][string] $ShortName ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_domain = $tsRequest.AppendChild($xml.CreateElement("domain")) $el_domain.SetAttribute("id", $DomainId) if ($Name) { $el_domain.SetAttribute("name", $Name) } if ($ShortName) { $el_domain.SetAttribute("shortName", $ShortName) } if ($PSCmdlet.ShouldProcess($DomainId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Domain) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.domain } } ### OpenID Connect Methods - introduced in API 3.22 function Get-TableauOIDConnectConfig { <# .SYNOPSIS Get OpenID Connect Configuration .DESCRIPTION Get details about the Tableau Cloud site's OpenID Connect (OIDC) configuration. Tableau site admins privileges are required to call this method. .EXAMPLE $config = Get-TableauOIDConnectConfig .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_openid_connect.htm#create_openid_connect_configuration1 #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint OIDC) -Method Get return $response.tsResponse.siteOIDCConfiguration } function Set-TableauOIDConnectConfig { <# .SYNOPSIS Create OpenID Connect Configuration or Update OpenID Connect Configuration .DESCRIPTION Create the Tableau Cloud site's OpenID Connect (OIDC) configuration. or Update the Tableau Cloud site's OpenID Connect (OIDC) configuration. (uses the same API endpoint) Tableau site admins privileges are required to call this method. .PARAMETER Enabled Controls whether the configuration is enabled or not. Value can be "true" or "false". .PARAMETER ClientId The client ID from your IdP. For example, "0oa111usf1gpUkVUt0h1". .PARAMETER ClientSecret The client secret from your IdP. .PARAMETER AuthorizationEndpoint Use the authorization endpoint from your IdP. To find the value, enter the configuration URL in a browser and obtain the user information endpoint (authorization_endpoint) from the details that are returned. For example, "https://myidp.com/oauth2/v1/authorize". .PARAMETER TokenEndpoint Use the token endpoint from your IdP. To find the value, enter the configuration URL in a browser and obtain the token endpoint (token_endpoint) from the details that are returned. For example, "https://myidp.com/oauth2/v1/token". .PARAMETER UserinfoEndpoint Use the user information endpoint from your IdP. To find the value, enter the configuration URL in a browser and obtain the user information endpoint (userinfo_endpoint) from the details that are returned. For example, "https://myidp.com/oauth2/v1/userinfo". .PARAMETER JwksUri Use the JWK set URI from your IdP. To find the value, enter the configuration URL in a browser and obtain the JWK set URI endpoint (jwks_uri) from the details that are returned. For example, "https://myidp.com/oauth2/v1/keys". .PARAMETER EndSessionEndpoint (Optional) If single logout (SLO) is enabled for the site, which is done through Tableau Cloud site UI, you can specify the configuration URL or the end session endpoint from your IdP. For example, "https://myidp.com/oauth2/v1/logout". .PARAMETER AllowEmbeddedAuthentication (Optional) Controls how users authenticate when accessing embedded views. Value can be "true" or "false". Default value is "false", which authenticates users in a separate pop-up window. When set to "true", users authenticate using an inline frame (IFrame), which is less secure. .PARAMETER Prompt (Optional) Specifies whether the user is prompted for re-authentication and consent. For example, "login, consent". .PARAMETER CustomScope (Optional) Specifies a custom scope user-related value that you can use to query the IdP. For example, "openid, email, profile". .PARAMETER ClientAuthentication (Optional) Token endpoint authentication method. Value can be "client_secret_basic" or "client_secret_post". Default value is "client_secret_basic". .PARAMETER EssentialAcrValues (Optional) List of essential Authentication Context Reference Class values used for authentication. For example, "phr". .PARAMETER VoluntaryAcrValues (Optional) List of voluntary Authentication Context Reference Class values used for authentication. .PARAMETER EmailMapping (Optional) Claim for retrieving email from the OIDC token. Default value is "email". .PARAMETER FirstNameMapping (Optional) Claim for retrieving first name from the OIDC token. Default value is "given_name". You can use this attribute to retrieve the user’s display name when useFullName attribute is set to "false". .PARAMETER LastNameMapping (Optional) Claim for retrieving last name from the OIDC token. Default value is "family_name". You can use this attribute to retrieve the user’s display name when useFullName attribute is set to "false". .PARAMETER FullNameMapping (Optional) Claim for retrieving name from the OIDC token. Default value is "name". You can use this attribute to retrieve the user’s display name when useFullName attribute is set to "true". .PARAMETER UseFullName (Optional) Controls what is used as the display name. Value can be "true" or "false". Default value is "false", which uses first name (firstNameMapping attribute) and last name (lastNameMapping attribute) as the user display name. When set to "true", full name (fullNameMapping attribute) is used as the user display name. .EXAMPLE $config = Set-TableauOIDConnectConfig -Enabled true -ClientId '0oa111usf1gpUkVUt0h1' -ClientSecret 'abcde' -AuthorizationEndpoint 'https://myidp.com/oauth2/v1/authorize' -TokenEndpoint 'https://myidp.com/oauth2/v1/token' -UserinfoEndpoint 'https://myidp.com/oauth2/v1/userinfo' -JwksUri 'https://myidp.com/oauth2/v1/keys' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_openid_connect.htm#create_openid_connect_configuration .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_openid_connect.htm#update_openid_connect_configuration #> [CmdletBinding(SupportsShouldProcess)] [Alias('New-TableauOIDConnectConfig')] [Alias('Update-TableauOIDConnectConfig')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][ValidateSet('true','false')][string] $Enabled, [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $ClientSecret, [Parameter(Mandatory)][string] $AuthorizationEndpoint, [Parameter(Mandatory)][string] $TokenEndpoint, [Parameter(Mandatory)][string] $UserinfoEndpoint, [Parameter(Mandatory)][string] $JwksUri, [Parameter()][string] $EndSessionEndpoint, [Parameter()][ValidateSet('true','false')][string] $AllowEmbeddedAuthentication, [Parameter()][string] $Prompt, [Parameter()][string] $CustomScope, [Parameter()][ValidateSet('client_secret_basic','client_secret_post')][string] $ClientAuthentication, [Parameter()][string] $EssentialAcrValues, [Parameter()][string] $VoluntaryAcrValues, [Parameter()][string] $EmailMapping, [Parameter()][string] $FirstNameMapping, [Parameter()][string] $LastNameMapping, [Parameter()][string] $FullNameMapping, [Parameter()][ValidateSet('true','false')][string] $UseFullName ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_oidc = $tsRequest.AppendChild($xml.CreateElement("siteOIDCConfiguration")) $el_oidc.SetAttribute("enabled", $Enabled) $el_oidc.SetAttribute("clientId", $ClientId) $el_oidc.SetAttribute("clientSecret", $ClientSecret) $el_oidc.SetAttribute("authorizationEndpoint", $AuthorizationEndpoint) $el_oidc.SetAttribute("tokenEndpoint", $TokenEndpoint) $el_oidc.SetAttribute("userinfoEndpoint", $UserinfoEndpoint) $el_oidc.SetAttribute("jwksUri", $JwksUri) if ($EndSessionEndpoint) { $el_oidc.SetAttribute("endSessionEndpoint", $EndSessionEndpoint) } if ($AllowEmbeddedAuthentication) { $el_oidc.SetAttribute("allowEmbeddedAuthentication", $AllowEmbeddedAuthentication) } if ($Prompt) { $el_oidc.SetAttribute("prompt", $Prompt) } if ($CustomScope) { $el_oidc.SetAttribute("customScope", $CustomScope) } if ($ClientAuthentication) { $el_oidc.SetAttribute("clientAuthentication", $ClientAuthentication) } if ($EssentialAcrValues) { $el_oidc.SetAttribute("essentialAcrValues", $EssentialAcrValues) } if ($VoluntaryAcrValues) { $el_oidc.SetAttribute("voluntaryAcrValues", $VoluntaryAcrValues) } if ($EmailMapping) { $el_oidc.SetAttribute("emailMapping", $EmailMapping) } if ($FirstNameMapping) { $el_oidc.SetAttribute("firstNameMapping", $FirstNameMapping) } if ($LastNameMapping) { $el_oidc.SetAttribute("lastNameMapping", $LastNameMapping) } if ($FullNameMapping) { $el_oidc.SetAttribute("fullNameMapping", $FullNameMapping) } if ($UseFullName) { $el_oidc.SetAttribute("useFullName", $UseFullName) } if ($PSCmdlet.ShouldProcess('site-oidc-configuration')) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint OIDC) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.siteOIDCConfiguration } } function Remove-TableauOIDConnectConfig { <# .SYNOPSIS Remove OpenID Connect Configuration .DESCRIPTION Disable and clear the Tableau Cloud site's OpenID Connect (OIDC) configuration. Tableau site admins privileges are required to call this method. Important: Before removing the OIDC configuration, make sure that users who are set to authenticate with OIDC are set to use a different authentication type. Users who are not set with a different authentication type before removing the OIDC configuration will not be able to sign in to Tableau Cloud. .EXAMPLE $result = Remove-TableauOIDConnectConfig .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_openid_connect.htm#remove_openid_connect_configuration #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 if ($PSCmdlet.ShouldProcess('site-oidc-configuration')) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint OIDC -Param remove) -Method Put -ContentType 'application/xml' } } ### Site methods function Get-TableauSite { <# .SYNOPSIS Query Site / Query Sites .DESCRIPTION Option 1: $Current = $true Returns information about the specified site, with the option to return information about the storage space and user count for the site. Option 2: $Current = $false Returns a list of the sites on the server that the caller of this method has access to. This method is not available for Tableau Cloud. .PARAMETER Current Boolean switch, specifies if only the current site (where the user session is signed in) is returned (option 1), or all sites (option 2). .PARAMETER IncludeUsageStatistics (Optional for current site) Boolean switch, specifies if site usage statistics should be included in the response. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $site = Get-TableauSite -Current .NOTES Notes on API query options: it's also possible to use ?key=contentUrl to get site, but also works only with current site. It's also possible to use ?key=name to get site, but also works only with current site. Thus it doesn't make much sense to implement these options .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#query_site .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#query_sites #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='CurrentSite')][switch] $Current, [Parameter(ParameterSetName='CurrentSite')][switch] $IncludeUsageStatistics, [Parameter(ParameterSetName='Sites')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($Current) { # get single (current) site $uri = Get-TableauRequestUri -Endpoint Site -Param $script:TableauSiteId if ($IncludeUsageStatistics) { $uri += "?includeUsageStatistics=true" } $response = Invoke-TableauRestMethod -Uri $uri -Method Get return $response.tsResponse.site } else { # get all sites $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Site $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.sites.site } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauSite { <# .SYNOPSIS Create Site .DESCRIPTION Creates a site on Tableau Server. To make changes to an existing site, call Update Site. This method is not available for Tableau Cloud. .PARAMETER Name The name of the site. .PARAMETER ContentUrl The subdomain name of the site's URL. This value can contain only characters that are upper or lower case alphabetic characters, numbers, hyphens (-), or underscores (_). .PARAMETER SiteParams (Optional) Hashtable with site options. Please check the linked help page for up-to-date supported options. Currently supported SiteParams: - adminMode, userQuota, storageQuota, disableSubscriptions, subscribeOthersEnabled - revisionLimit, dataAccelerationMode - set_versioned_flow_attributes(flows_all, flows_edit, flows_schedule, parent_srv, site_element, site_item) - allowSubscriptionAttachments, guestAccessEnabled, cacheWarmupEnabled, commentingEnabled, revisionHistoryEnabled - extractEncryptionMode, requestAccessEnabled, runNowEnabled, tierCreatorCapacity, tierExplorerCapacity, tierViewerCapacity - dataAlertsEnabled, commentingMentionsEnabled, catalogObfuscationEnabled, flowAutoSaveEnabled, webExtractionEnabled - metricsContentTypeEnabled, notifySiteAdminsOnThrottle, authoringEnabled, customSubscriptionEmailEnabled, customSubscriptionEmail - customSubscriptionFooterEnabled, customSubscriptionFooter, askDataMode, namedSharingEnabled, mobileBiometricsEnabled - sheetImageEnabled, catalogingEnabled, derivedPermissionsEnabled, userVisibilityMode, useDefaultTimeZone, timeZone - autoSuspendRefreshEnabled, autoSuspendRefreshInactivityWindow .EXAMPLE $site = New-TableauSite -Name "Test Site" -ContentUrl TestSite -SiteParams @{adminMode='ContentOnly'; revisionLimit=20} .NOTES This method can only be called by server administrators. No validation is done for SiteParams. If some invalid option is included in the request, an HTTP error will be returned by the request. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#create_site #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter(Mandatory)][string] $ContentUrl, [Parameter()][hashtable] $SiteParams ) Assert-TableauAuthToken if ($SiteParams.Keys -contains 'adminMode' -and $SiteParams.Keys -contains 'userQuota' -and $SiteParams["adminMode"] -eq "ContentOnly") { Write-Error "You cannot set admin_mode to ContentOnly and also set a user quota" -Category InvalidArgument -ErrorAction Stop } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_site = $tsRequest.AppendChild($xml.CreateElement("site")) $el_site.SetAttribute("name", $Name) $el_site.SetAttribute("contentUrl", $ContentUrl) foreach ($param in $SiteParams.Keys) { $el_site.SetAttribute($param, $SiteParams[$param]) } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site) -Body $xml.OuterXml -Method Post return $response.tsResponse.site } } function Set-TableauSite { <# .SYNOPSIS Update Site .DESCRIPTION Modifies settings for the specified site, including the content URL, administration mode, user quota, state (active or suspended), storage quota, whether flows are enabled, whether subscriptions are enabled, and whether revisions are enabled. .PARAMETER SiteId The LUID of the site to update. .PARAMETER Name (Optional) The new name of the site. .PARAMETER SiteParams (Optional) Hashtable with site options. Please check the linked help page for up-to-date supported options. See also New-TableauSite .EXAMPLE $site = Set-TableauSite -SiteId $siteId -Name "New Site" -SiteParams @{adminMode="ContentAndUsers"; userQuota="1"} .NOTES You must be signed in to a site in order to update it. No validation is done for SiteParams. If some invalid option is included in the request, an HTTP error will be returned by the request. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#update_site #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSite')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SiteId, [Parameter()][string] $Name, [Parameter()][hashtable] $SiteParams ) Assert-TableauAuthToken if ($SiteParams.Keys -contains 'adminMode' -and $SiteParams.Keys -contains 'userQuota' -and $SiteParams["adminMode"] -eq "ContentOnly") { Write-Error "You cannot set admin_mode to ContentOnly and also set a user quota" -Category InvalidArgument -ErrorAction Stop } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_site = $tsRequest.AppendChild($xml.CreateElement("site")) if ($Name) { $el_site.SetAttribute("name", $Name) } foreach ($param in $SiteParams.Keys) { $el_site.SetAttribute($param, $SiteParams[$param]) } if ($PSCmdlet.ShouldProcess($SiteId)) { if ($SiteId -eq $script:TableauSiteId) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param $SiteId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.site } else { Write-Error "You can only update the site for which you are currently authenticated" -Category PermissionDenied -ErrorAction Stop } } } function Remove-TableauSite { <# .SYNOPSIS Delete Site .DESCRIPTION Deletes the specified site. .PARAMETER SiteId The LUID of the site to be deleted. Should be the current site's ID. .PARAMETER BackgroundTask (Introduced in API 3.18) If you set this to true, the process runs asynchronously. .EXAMPLE $response = Remove-TableauSite -SiteId $testSiteId .NOTES You must be signed in to a site in order to update it. This method can only be called by server administrators. Not supported on Tableau Cloud. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#delete_site #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SiteId, [Parameter()][switch] $BackgroundTask ) Assert-TableauAuthToken $uri = Get-TableauRequestUri -Endpoint Site -Param $SiteId if ($BackgroundTask) { # Assert-TableauRestVersion -AtLeast 3.18 # no restriction by the Tableau Server implied, don't need to assert API version $uri += "?asJob=true" } if ($SiteId -eq $script:TableauSiteId) { if ($PSCmdlet.ShouldProcess($SiteId)) { Invoke-TableauRestMethod -Uri $uri -Method Delete } } else { Write-Error "You can only remove the site for which you are currently authenticated" -Category PermissionDenied -ErrorAction Stop } } function Get-TableauRecentlyViewedContent { <# .SYNOPSIS Get Recently Viewed for Site .DESCRIPTION Gets the details of the views and workbooks on a site that have been most recently created, updated, or accessed by the signed in user. The 24 most recently viewed items are returned, though it may take some minutes after being viewed for an item to appear in the results. .EXAMPLE $recents = Get-TableauRecentlyViewedContent .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#get_recently_viewed #> [OutputType([PSCustomObject[]])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param $SiteId/content/recent) -Method Get return $response.tsResponse.recents.recent } function Get-TableauSiteSettingsEmbedding { <# .SYNOPSIS Get Embedding Settings for a Site .DESCRIPTION Returns the current embedding settings for the current site. .EXAMPLE $settings = Get-TableauSiteSettingsEmbedding .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#embedding_settings_for_site #> [OutputType([PSCustomObject[]])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param $SiteId/settings/embedding) -Method Get return $response.tsResponse.site.settings } function Set-TableauSiteSettingsEmbedding { <# .SYNOPSIS Update Embedding Settings for Site .DESCRIPTION Updates the embedding settings for a site. Embedding settings can be used to restrict embedding Tableau views to only certain domains. .PARAMETER UnrestrictedEmbedding (Optional) Boolean switch, specifies whether embedding is not restricted to certain domains. When supplied, Tableau views on this site can be embedded in any domain. .PARAMETER AllowDomains (Optional) Specifies the domains where Tableau views on this site can be embedded. Use this setting with UnrestrictedEmbedding set to false, to restrict embedding functionality to only certain domains. .EXAMPLE $result = Set-TableauSiteSettingsEmbedding -Unrestricted false -Allow "mydomain.com" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_site.htm#update_embedding_settings_for_site #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSiteSettingsEmbedding')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='Unrestricted')][switch] $UnrestrictedEmbedding, [Parameter(Mandatory,ParameterSetName='AllowDomains')][string] $AllowDomains ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_site = $tsRequest.AppendChild($xml.CreateElement("site")) $el_settings = $el_site.AppendChild($xml.CreateElement("settings")) if ($UnrestrictedEmbedding) { $el_settings.SetAttribute("unrestrictedEmbedding", $UnrestrictedEmbedding) } else { $el_settings.SetAttribute("unrestrictedEmbedding", $false) $el_settings.SetAttribute("allowList", $AllowDomains) } if ($PSCmdlet.ShouldProcess("Unrestricted embedding: $UnrestrictedEmbedding, allow domains: $AllowDomains")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param $SiteId/settings/embedding) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.site.settings } } ### Projects methods function Get-TableauProject { <# .SYNOPSIS Query Projects .DESCRIPTION Returns a list of projects on the specified site, with optional parameters. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#projects .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#projects .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_projects .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $defaultProject = Get-TableauProject -Filter "name:eq:Default","topLevelProject:eq:true" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_projects.htm#query_projects #> [Alias('Query-TableauProject')] [OutputType([PSCustomObject[]])] Param( [Parameter()][string[]] $Filter, # https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm [Parameter()][string[]] $Sort, [Parameter()][string[]] $Fields, # https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_projects [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Project $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.projects.project } until ($PageSize*$pageNumber -ge $totalAvailable) } function New-TableauProject { <# .SYNOPSIS Create Project .DESCRIPTION Creates a project on the specified site. .PARAMETER Name The name for the project. .PARAMETER Description (Optional) The description for the project. .PARAMETER ContentPermissions (Optional) This option specifies content permissions inheritance in the project. .PARAMETER OwnerId (Optional) The LUID of the user that owns the project. .PARAMETER ParentProjectId (Optional) The project LUID of the parent project. Use this option to create or change project hierarchies. If omitted, the project is created at the top level. .EXAMPLE $project = New-TableauProject -Name $projectName .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_projects.htm#create_project #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter()][string] $Description, [Parameter()][ValidateSet('ManagedByOwner','LockedToProject','LockedToProjectWithoutNested')][string] $ContentPermissions, [Parameter()][string] $OwnerId, [Parameter()][string] $ParentProjectId ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_project = $tsRequest.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("name", $Name) if ($Description) { $el_project.SetAttribute("description", $Description) } if ($ContentPermissions) { $el_project.SetAttribute("contentPermissions", $ContentPermissions) } if ($ParentProjectId) { $el_project.SetAttribute("parentProjectId", $ParentProjectId) } if ($OwnerId) { Assert-TableauRestVersion -AtLeast 3.21 $el_owner = $el_project.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $OwnerId) } if ($PSCmdlet.ShouldProcess($Name)) { $uri = Get-TableauRequestUri -Endpoint Project $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Post $response.tsResponse.project } } function Set-TableauProject { <# .SYNOPSIS Update Project .DESCRIPTION Updates the name, description, or project hierarchy of the specified project. .PARAMETER ProjectId The LUID of the project being updated. .PARAMETER Name (Optional) The new name for the project. .PARAMETER Description (Optional) The new description for the project. .PARAMETER ContentPermissions (Optional) This option specifies content permissions inheritance in the project. .PARAMETER ParentProjectId (Optional) The new identifier of the parent project. Use this option to create or change project hierarchies. .PARAMETER OwnerId (Optional) The LUID of the user that owns the project. .PARAMETER PublishSamples (Optional) Boolean switch value that specifies whether to publish the sample workbooks provided by Tableau to the project when you update the project. .EXAMPLE $project = Set-TableauProject -ProjectId $testProjectId -Name $projectNewName -PublishSamples .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_projects.htm#update_project #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauProject')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ProjectId, [Parameter()][string] $Name, [Parameter()][string] $Description, [Parameter()][ValidateSet('ManagedByOwner','LockedToProject','LockedToProjectWithoutNested')][string] $ContentPermissions, [Parameter()][string] $ParentProjectId, [Parameter()][string] $OwnerId, [Parameter()][switch] $PublishSamples ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_project = $tsRequest.AppendChild($xml.CreateElement("project")) if ($Name) { $el_project.SetAttribute("name", $Name) } if ($Description) { $el_project.SetAttribute("description", $Description) } if ($ContentPermissions) { $el_project.SetAttribute("contentPermissions", $ContentPermissions) } if ($ParentProjectId) { $el_project.SetAttribute("parentProjectId", $ParentProjectId) } if ($OwnerId) { Assert-TableauRestVersion -AtLeast 3.21 $el_owner = $el_project.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $OwnerId) } $uri = Get-TableauRequestUri -Endpoint Project -Param $ProjectId if ($PublishSamples) { $uri += "?publishSamples=true" } if ($PSCmdlet.ShouldProcess($ProjectId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' $response.tsResponse.project } } function Remove-TableauProject { <# .SYNOPSIS Delete Project .DESCRIPTION Deletes the specified project on a specific site. When a project is deleted, all Tableau assets inside of it are also deleted, including assets like associated workbooks, data sources, project view options, and rights. .PARAMETER ProjectId The LUID of the project to delete. .EXAMPLE $response = Remove-TableauProject -ProjectId $testProjectId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_projects.htm#delete_project #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ProjectId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess($ProjectId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Project -Param $ProjectId) -Method Delete } } function Get-TableauDefaultProject { <# .SYNOPSIS Get Default Project .DESCRIPTION Helper function that queries the projects with filter and returns the Default project. .EXAMPLE $defaultProject = Get-TableauDefaultProject #> [OutputType([PSCustomObject[]])] Param() Get-TableauProject -Filter "name:eq:Default","topLevelProject:eq:true" } ### Users and Groups methods function Get-TableauUser { <# .SYNOPSIS Query User On Site / Get Users on Site .DESCRIPTION Returns the users associated with the specified site, or information about the specified user. .PARAMETER UserId Query User On Site: the LUID of the user to get information for. .PARAMETER Filter (Optional, Get Users on Site) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#users .PARAMETER Sort (Optional, Get Users on Site) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#users .PARAMETER Fields (Optional, Get Users on Site) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#get-users_site .PARAMETER PageSize (Optional, Get Users on Site) Page size when paging through results. .EXAMPLE $user = Get-TableauUser -Filter "name:eq:$userName" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#query_user_on_site .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#get_users_on_site #> [Alias('Query-TableauUser')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='UserById')][string] $UserId, [Parameter(ParameterSetName='Users')][string[]] $Filter, [Parameter(ParameterSetName='Users')][string[]] $Sort, [Parameter(ParameterSetName='Users')][string[]] $Fields, [Parameter(ParameterSetName='Users')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($UserId) { # Query User On Site $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint User -Param $UserId) -Method Get $response.tsResponse.user } else { # Get Users on Site $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint User $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.users.user } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauUser { <# .SYNOPSIS Add User to Site .DESCRIPTION Adds a user to Tableau Server or Tableau Cloud and assigns the user to the specified site. .PARAMETER Name The name of the user. For local authentication: any valid user name. For AD authentication: the name of an existing user in Active Directory. For Tableau Cloud: The user-name is the email address the user will use to sign in to Tableau Cloud. .PARAMETER SiteRole The site role to assign to the user. You can assign the following roles: Creator, Explorer, ExplorerCanPublish, SiteAdministratorExplorer, SiteAdministratorCreator, Unlicensed, or Viewer. .PARAMETER AuthSetting (Optional) The authentication type for the user, e.g. if site-specific SAML is enabled. .EXAMPLE $user = New-TableauUser -Name $userName -SiteRole Viewer .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#add_user_to_site #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauUser')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter(Mandatory)][ValidateSet('Creator','Explorer','ExplorerCanPublish','SiteAdministratorExplorer','SiteAdministratorCreator','Viewer','Unlicensed')][string] $SiteRole, [Parameter()][string] $AuthSetting ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_user = $tsRequest.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("name", $Name) $el_user.SetAttribute("siteRole", $SiteRole) if ($AuthSetting) { $el_user.SetAttribute("authSetting", $AuthSetting) } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint User) -Body $xml.OuterXml -Method Post return $response.tsResponse.user } } function Set-TableauUser { <# .SYNOPSIS Update User .DESCRIPTION Modifies information about the specified user. .PARAMETER UserId The LUID of the user to update. .PARAMETER FullName (Optional) The new display name for the user. .PARAMETER Email (Optional) The new email address for the user. Not supported in Tableau Cloud. .PARAMETER SecurePassword (Optional) The new password for the user, if local authentication is used. Should be provided via SecureString. .PARAMETER SiteRole (Optional) The new site role to assign to the user. .PARAMETER AuthSetting (Optional) The authentication type for the user (e.g. if site-specific SAML is enabled) .EXAMPLE $user = Set-TableauUser -UserId $userId -SiteRole Explorer -FullName "John Doe" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#update_user #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauUser')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][string] $FullName, [Parameter()][string] $Email, [Parameter()][securestring] $SecurePassword, [Parameter()][ValidateSet('Creator','Explorer','ExplorerCanPublish','SiteAdministratorExplorer','SiteAdministratorCreator','Viewer','Unlicensed')][string] $SiteRole, [Parameter()][string] $AuthSetting ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_user = $tsRequest.AppendChild($xml.CreateElement("user")) if ($FullName) { $el_user.SetAttribute("fullName", $FullName) } if ($Email) { $el_user.SetAttribute("email", $Email) } if ($SecurePassword) { $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password $el_user.SetAttribute("password", $private:PlainPassword) } if ($SiteRole) { $el_user.SetAttribute("siteRole", $SiteRole) } if ($AuthSetting) { $el_user.SetAttribute("authSetting", $AuthSetting) } if ($PSCmdlet.ShouldProcess($UserId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint User -Param $UserId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.user } } function Remove-TableauUser { <# .SYNOPSIS Remove User from Site .DESCRIPTION Removes a user from the specified site. .PARAMETER UserId The LUID of the user to remove. .PARAMETER MapAssetsToUserId (Optional) The LUID of a user that receives ownership of contents of the user being removed. .EXAMPLE Remove-TableauUser -UserId $userId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#remove_user_from_site #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][string] $MapAssetsToUserId ) Assert-TableauAuthToken $uri = Get-TableauRequestUri -Endpoint User -Param $UserId if ($MapAssetsToUserId) { $uri += "?mapAssetsTo=$MapAssetsToUserId" } if ($PSCmdlet.ShouldProcess($UserId)) { Invoke-TableauRestMethod -Uri $uri -Method Delete } } function Get-TableauGroup { <# .SYNOPSIS Query Groups .DESCRIPTION Returns a list of groups on current site. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#groups .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#groups .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_groups .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $group = Get-TableauGroup -Filter "name:eq:$groupName" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#query_groups #> [Alias('Query-TableauGroup')] [OutputType([PSCustomObject[]])] Param( [Parameter()][string[]] $Filter, [Parameter()][string[]] $Sort, [Parameter()][string[]] $Fields, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Group $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.groups.group } until ($PageSize*$pageNumber -ge $totalAvailable) } function New-TableauGroup { <# .SYNOPSIS Create Group .DESCRIPTION Creates a group on Tableau Server or Tableau Cloud site. .PARAMETER Name The name for the new group. .PARAMETER MinimumSiteRole Site role that is granted for new users of this group (grant license on-sync or on-login mode). .PARAMETER DomainName (Optional) The domain of the Active Directory group to import (applicable for AD setup). .PARAMETER GrantLicenseMode (Optional) The mode for automatically applying licenses for group members. When the mode is onLogin, a license is granted for each group member when they log in to a site. For AD setup, the mode can be also onSync. .PARAMETER EphemeralUsersEnabled (Optional) A boolean value that is used to enable on-demand access for embedded Tableau content when the Tableau Cloud site is licensed with Embedded Analytics(Link opens in a new window) usage-based model. .PARAMETER BackgroundTask (Optional) Boolean switch, if true, the import process runs as an asynchronous process. .EXAMPLE $group = New-TableauGroup -Name $groupName -MinimumSiteRole Viewer -GrantLicenseMode onLogin .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#create_group #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauGroup')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter()][ValidateSet('Creator','Explorer','ExplorerCanPublish','SiteAdministratorExplorer','SiteAdministratorCreator','Viewer','Unlicensed')][string] $MinimumSiteRole, [Parameter()][string] $DomainName, [Parameter()][ValidateSet('onLogin','onSync')][string] $GrantLicenseMode, [Parameter()][switch] $EphemeralUsersEnabled, [Parameter()][switch] $BackgroundTask ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_group = $tsRequest.AppendChild($xml.CreateElement("group")) $el_group.SetAttribute("name", $Name) if ($DomainName) { # Importing a group from Active Directory $el_import = $el_group.AppendChild($xml.CreateElement("import")) $el_import.SetAttribute("source", "ActiveDirectory") $el_import.SetAttribute("domainName", $DomainName) if ($GrantLicenseMode) { $el_import.SetAttribute("grantLicenseMode", $GrantLicenseMode) $el_import.SetAttribute("siteRole", $MinimumSiteRole) } } else { # Creating a local group if ($MinimumSiteRole) { $el_group.SetAttribute("minimumSiteRole", $MinimumSiteRole) } if ($EphemeralUsersEnabled) { Assert-TableauRestVersion -AtLeast 3.21 $el_group.SetAttribute("ephemeralUsersEnabled", "true") } } $uri = Get-TableauRequestUri -Endpoint Group if ($BackgroundTask) { $uri += "?asJob=true" } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Post if ($BackgroundTask) { return $response.tsResponse.job } else { return $response.tsResponse.group } } } function Set-TableauGroup { <# .SYNOPSIS Update Group .DESCRIPTION Updates a group on a Tableau Server or Tableau Cloud site. .PARAMETER GroupId The LUID of the group to update. .PARAMETER Name (Optional) The new name for the group. .PARAMETER MinimumSiteRole (Optional) Site role that is granted for new users of this group (grant license on-sync or on-login mode). .PARAMETER DomainName (Optional) The domain of the Active Directory group (for AD setup). .PARAMETER GrantLicenseMode (Optional) The mode for automatically applying licenses for group members. When the mode is onLogin, a license is granted for each group member when they log in to a site. For AD setup, the mode can be also onSync. .PARAMETER EphemeralUsersEnabled (Optional) A boolean value that is used to enable on-demand access for embedded Tableau content when the Tableau Cloud site is licensed with Embedded Analytics(Link opens in a new window) usage-based model. .PARAMETER BackgroundTask (Optional) Boolean switch, if true, the import process runs as an asynchronous process. .EXAMPLE $group = Set-TableauGroup -GroupId $groupId -Name $groupNewName .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#update_group #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauGroup')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupId, [Parameter()][string] $Name, [Parameter()][ValidateSet('Creator','Explorer','ExplorerCanPublish','SiteAdministratorExplorer','SiteAdministratorCreator','Viewer','Unlicensed')][string] $MinimumSiteRole, [Parameter()][string] $DomainName, [Parameter()][ValidateSet('onLogin','onSync')][string] $GrantLicenseMode, [Parameter()][switch] $EphemeralUsersEnabled, [Parameter()][switch] $BackgroundTask ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_group = $tsRequest.AppendChild($xml.CreateElement("group")) $el_group.SetAttribute("name", $Name) if ($DomainName) { # Updating an Active Directory group $el_import = $el_group.AppendChild($xml.CreateElement("import")) $el_import.SetAttribute("source", "ActiveDirectory") $el_import.SetAttribute("domainName", $DomainName) if ($GrantLicenseMode) { $el_import.SetAttribute("grantLicenseMode", $GrantLicenseMode) $el_import.SetAttribute("siteRole", $MinimumSiteRole) } } else { # Updating a local group if ($MinimumSiteRole) { $el_group.SetAttribute("minimumSiteRole", $MinimumSiteRole) } if ($PSBoundParameters.ContainsKey('EphemeralUsersEnabled')) { Assert-TableauRestVersion -AtLeast 3.21 $el_group.SetAttribute("ephemeralUsersEnabled", $EphemeralUsersEnabled) } } $uri = Get-TableauRequestUri -Endpoint Group -Param $GroupId if ($BackgroundTask) { $uri += "?asJob=true" } if ($PSCmdlet.ShouldProcess($GroupId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' if ($BackgroundTask) { return $response.tsResponse.job } else { return $response.tsResponse.group } } } function Remove-TableauGroup { <# .SYNOPSIS Delete Group .DESCRIPTION Deletes the group on the current site. Deleting a group does not delete the users in group, but users are no longer members of the group. .PARAMETER GroupId The LUID of the group to delete. .EXAMPLE $response = Remove-TableauGroup -GroupId $testGroupId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#delete_group #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess($GroupId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Group -Param $GroupId) -Method Delete } } function Add-TableauUserToGroup { <# .SYNOPSIS Add User to Group .DESCRIPTION Adds a user to the specified group. .PARAMETER UserId The LUID of the user to add. .PARAMETER GroupId The LUID of the group to add the user to. .EXAMPLE $user = Add-TableauUserToGroup -UserId $userId -GroupId $adminGroupId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#add_user_to_group #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter(Mandatory)][string] $GroupId ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_user = $tsRequest.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $UserId) if ($PSCmdlet.ShouldProcess("user:$UserId, group:$GroupId")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Group -Param $GroupId/users) -Body $xml.OuterXml -Method Post return $response.tsResponse.user } } function Remove-TableauUserFromGroup { <# .SYNOPSIS Remove User from Group .DESCRIPTION Removes a user from the specified group. .PARAMETER UserId The LUID of the user to remove. .PARAMETER GroupId The LUID of the group to remove the user from. .EXAMPLE $response = Remove-TableauUserFromGroup -UserId $userId -GroupId $adminGroupId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#remove_user_to_group #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter(Mandatory)][string] $GroupId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess("user:$UserId, group:$GroupId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Group -Param $GroupId/users/$UserId) -Method Delete } } function Get-TableauUsersInGroup { <# .SYNOPSIS Get Users in Group .DESCRIPTION Gets a list of users in the specified group. .PARAMETER GroupId The LUID of the group to get the users for. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $users = Get-TableauUsersInGroup -GroupId $groupId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#get_users_in_group #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $GroupId, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Group -Param $GroupId/users $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.users.user } until ($PageSize*$pageNumber -ge $totalAvailable) } function Get-TableauGroupsForUser { <# .SYNOPSIS Get Groups for a User .DESCRIPTION Gets a list of groups of which the specified user is a member. .PARAMETER UserId The LUID of the user whose group memberships are listed. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $groups = Get-TableauGroupsForUser -UserId $selectedUserId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#get_groups_for_a_user #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.7 $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint User -Param $UserId/groups $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.groups.group } until ($PageSize*$pageNumber -ge $totalAvailable) } function Import-TableauUsersCsv { <# .SYNOPSIS Import Users to Site from CSV file .DESCRIPTION Creates a job to import the users listed in a specified .csv file to a site, and assign their roles and authorization settings. .PARAMETER CsvFile The CSV file with users to import. The .csv file should comply with the rules described in the CSV import file guidelines: https://help.tableau.com/current/server/en-us/csvguidelines.htm .PARAMETER AuthSetting The auth setting that will be applied for all imported users. The setting should be one of the values: ServerDefault, SAML, OpenID, TableauIDWithMFA .PARAMETER UserAuthSettings The hashtable array with user names (key) and their individual auth setting (value). .EXAMPLE Import-TableauUsersCsv -CsvFile users_to_add.csv .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#import_users_to_site_from_csv #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='OnlyCsv')] [Parameter(Mandatory,ParameterSetName='AuthSetting')] [Parameter(Mandatory,ParameterSetName='UserAuthSettings')] [string] $CsvFile, [Parameter(Mandatory,ParameterSetName='AuthSetting')] [ValidateSet('ServerDefault','SAML','OpenID','TableauIDWithMFA')] [string] $AuthSetting, [Parameter(Mandatory,ParameterSetName='UserAuthSettings')][hashtable] $UserAuthSettings ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.15 $fileItem = Get-Item -LiteralPath $CsvFile $fileName = $fileItem.Name -replace '["`]','' # remove special chars $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_user = $tsRequest.AppendChild($xml.CreateElement("user")) if ($AuthSetting) { $el_user.SetAttribute("authSetting", $AuthSetting) } elseif ($UserAuthSettings) { $UserAuthSettings.GetEnumerator() | ForEach-Object { $el_user.SetAttribute("name", $_.Key) $el_user.SetAttribute("authSetting", $_.Value) } } Write-Debug $xml.OuterXml $boundaryString = (New-Guid).ToString("N") $bodyLines = @( "--$boundaryString", "Content-Type: text/csv", "Content-Disposition: form-data; name=tableau_user_import; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString([System.IO.File]::ReadAllBytes($fileItem.FullName)), "--$boundaryString", "Content-Type: text/xml; charset=utf-8", "Content-Disposition: form-data; name=request_payload", "", $xml.OuterXml "--$boundaryString--" ) $multipartContent = $bodyLines -join "`r`n" # Write-Debug $multipartContent $uri = Get-TableauRequestUri -Endpoint User -Param import if ($PSCmdlet.ShouldProcess("import users using file $fileName")) { $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post -ContentType "multipart/mixed; boundary=$boundaryString" return $response.tsResponse.job } } function Remove-TableauUsersCsv { <# .SYNOPSIS Delete Users from Site with CSV file .DESCRIPTION Creates a job to remove a list of users, specified in a .csv file, from a site. .PARAMETER CsvFile The CSV file with users to remove. The .csv file should comply with the rules described in the CSV import file guidelines: https://help.tableau.com/current/server/en-us/csvguidelines.htm .EXAMPLE Remove-TableauUsersCsv -CsvFile users_to_remove.csv .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#delete_users_from_site_with_csv #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $CsvFile ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.15 $fileItem = Get-Item -LiteralPath $CsvFile $fileName = $fileItem.Name -replace '["`]','' # remove special chars $boundaryString = (New-Guid).ToString("N") $bodyLines = @( "--$boundaryString", "Content-Type: text/csv", "Content-Disposition: form-data; name=tableau_user_delete; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString([System.IO.File]::ReadAllBytes($fileItem.FullName)), "--$boundaryString--" ) $multipartContent = $bodyLines -join "`r`n" # Write-Debug $multipartContent $uri = Get-TableauRequestUri -Endpoint User -Param delete if ($PSCmdlet.ShouldProcess("delete users using file $fileName")) { $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post -ContentType "multipart/mixed; boundary=$boundaryString" return $response.tsResponse.job } } function Get-TableauGroupSet { <# .SYNOPSIS Query Group Sets or Get Group Set .DESCRIPTION Lists all group sets matching optional filter and ordered by optional sort expression. or Returns information about the specified group set including ID, name, and member groups. .PARAMETER GroupSetId Get Group Set: specifies the LUID of the group set. .PARAMETER ResultLevel (Optional) tbd .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#groups .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#groups .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_groups .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $group = Get-TableauGroupSet -Filter "name:eq:$groupSet" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#query_group_sets .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#get_group_set #> [Alias('Query-TableauGroupSet')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='GroupsetById')][string] $GroupSetId, [Parameter(ParameterSetName='Groupsets')][ValidateSet('member','local')][string] $ResultLevel, [Parameter(ParameterSetName='Groupsets')][string[]] $Filter, [Parameter(ParameterSetName='Groupsets')][string[]] $Sort, [Parameter(ParameterSetName='Groupsets')][string[]] $Fields, [Parameter(ParameterSetName='Groupsets')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 if ($GroupSetId) { # Get Group Set $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset -Param $GroupSetId) -Method Get $response.tsResponse.groupSet } else { # Query Group Sets $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Groupset $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($ResultLevel) { $uriParam.Add("resultlevel", $ResultLevel) } if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.groupSets.groupSet } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauGroupSet { <# .SYNOPSIS Create Group Set .DESCRIPTION Creates a group set with a specified name. .PARAMETER Name The name for the new group set. .EXAMPLE $group = New-TableauGroupSet -Name $groupSetName .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#create_group_set #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauGroupSet')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_groupset = $tsRequest.AppendChild($xml.CreateElement("groupSet")) $el_groupset.SetAttribute("name", $Name) if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset) -Body $xml.OuterXml -Method Post return $response.tsResponse.groupSet } } function Set-TableauGroupSet { <# .SYNOPSIS Update Group Set .DESCRIPTION Updates a group set name on a Tableau Server or Tableau Cloud site. If a Tableau Server or Tableau Cloud site is configured to use local authentication, the method lets you update the group name. If Tableau Server is configured to use Active Directory authentication, the method synchronizes the group with Active Directory. .PARAMETER GroupSetId The LUID of the group set to update. .PARAMETER Name (Optional) The new name for the group set. .EXAMPLE $groupset = Set-TableauGroupSet -GroupSetId $groupSetId -Name $newName .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#update_group_set #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauGroupSet')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupSetId, [Parameter()][string] $Name ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_groupset = $tsRequest.AppendChild($xml.CreateElement("groupSet")) $el_groupset.SetAttribute("name", $Name) if ($PSCmdlet.ShouldProcess($GroupSetId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset -Param $GroupSetId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.groupSet } } function Remove-TableauGroupSet { <# .SYNOPSIS Delete Group Set .DESCRIPTION Deletes the group set on a specific site. Deleting a group set doesn’t delete the users in the group set, but users are no longer members of the group set. Any permissions that were previously assigned to the group set no longer apply. .PARAMETER GroupSetId The LUID of the group set to delete. .EXAMPLE $response = Remove-TableauGroupSet -GroupSetId $gsId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#delete_group_set #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupSetId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 if ($PSCmdlet.ShouldProcess($GroupSetId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset -Param $GroupSetId) -Method Delete } } function Add-TableauGroupToGroupSet { <# .SYNOPSIS Add Group to Group Set .DESCRIPTION Adds group to a group set. .PARAMETER GroupId The LUID of the group to add. .PARAMETER GroupSetId The LUID of the group set to add the group to. .EXAMPLE $result = Add-TableauGroupToGroupSet -GroupId $groupId -GroupSetId $gsId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#add_group_to_group_set #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupId, [Parameter(Mandatory)][string] $GroupSetId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 if ($PSCmdlet.ShouldProcess("group:$GroupId, group set:$GroupSetId")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset -Param $GroupSetId/groups/$GroupId) -Method Put -ContentType 'application/xml' return $response #.tsResponse } } function Remove-TableauGroupFromGroupSet { <# .SYNOPSIS Remove Group from Group Set .DESCRIPTION Removes a group from the specified group set. .PARAMETER GroupId The LUID of the group to remove. .PARAMETER GroupSetId The LUID of the group set to remove the group from. .EXAMPLE $response = Remove-TableauGroupFromGroupSet -GroupId $groupId -GroupSetId $gsId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#remove_group_from_group_set #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $GroupId, [Parameter(Mandatory)][string] $GroupSetId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.22 if ($PSCmdlet.ShouldProcess("group:$GroupId, group set:$GroupSetId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Groupset -Param $GroupSetId/groups/$GroupId) -Method Delete } } ### Publishing methods function Send-TableauFileUpload { <# .SYNOPSIS Perform File Upload in Chunks .DESCRIPTION Initiates the upload process for a file, and then performs Append to File Upload to send individual blocks of the file to the server. When the complete file has been sent to the server, the result (upload id string) can be used to publish the file as workbook, datasource or flow. Note: this is an internal routine for Publish- methods, should not be used separately. .PARAMETER InFile The filename of the file to upload. .PARAMETER FileName (Optional) The filename (without path) that is included into the request payload. This usually doesn't matter for Tableau Server uploads. By default, the filename is sent as "file". .EXAMPLE $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_publishing.htm#initiate_file_upload .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_publishing.htm#append_to_file_upload #> [Alias('Add-TableauFileUpload')] [OutputType([string])] Param( [Parameter(Mandatory)][string] $InFile, [Parameter()][string] $FileName = "file" ) Assert-TableauAuthToken if ($FileName -match '[^\x20-\x7e]') { # special non-ASCII characters in the filename cause issues on some API versions Write-Verbose "Filename $FileName contains special characters, replacing with tableau_file" $FileName = "tableau_file" # fallback to standard filename (doesn't matter for file upload) } $fileItem = Get-Item -LiteralPath $InFile $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint FileUpload) -Method Post $uploadSessionId = $response.tsResponse.fileUpload.GetAttribute("uploadSessionId") $chunkNumber = 0 $buffer = New-Object System.Byte[]($script:TableauRestChunkSize) $fileStream = New-Object System.IO.FileStream($fileItem.FullName, [System.IO.FileMode]::Open) $byteReader = $null try { $byteReader = New-Object System.IO.BinaryReader($fileStream) # $totalChunks = [Math]::Ceiling($fileItem.Length / $script:TableauRestChunkSize) # not required here $totalSizeMb = [Math]::Round($fileItem.Length / 1048576) $bytesUploaded = 0 $startTime = Get-Date do { $chunkNumber++ $boundaryString = (New-Guid).ToString("N") $bytesRead = $byteReader.Read($buffer, 0, $buffer.Length) if ($PSVersionTable.PSVersion.Major -ge 6) { Write-Verbose "Using MultipartFormDataContent as -Body in Invoke-RestMethod (PS6.0+)" $multipartContent = New-Object System.Net.Http.MultipartFormDataContent($boundaryString) $null = $multipartContent.Headers.Remove("Content-Type") $null = $multipartContent.Headers.TryAddWithoutValidation("Content-Type", "multipart/mixed; boundary=$boundaryString") $stringContent = New-Object System.Net.Http.StringContent("", [System.Text.Encoding]::UTF8) $stringContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $stringContent.Headers.ContentDisposition.Name = "request_payload" $multipartContent.Add($stringContent) $memoryStream = New-Object System.IO.MemoryStream($buffer, 0, $bytesRead) $fileContent = New-Object System.Net.Http.StreamContent($memoryStream) $fileContent.Headers.ContentType = New-Object System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream") $fileContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $fileContent.Headers.ContentDisposition.Name = "tableau_file" $fileContent.Headers.ContentDisposition.FileName = "`"$FileName`"" $multipartContent.Add($fileContent) $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint FileUpload -Param $uploadSessionId) -Body $multipartContent -Method Put } else { Write-Verbose "Using String as -Body in Invoke-RestMethod (PS5.x)" $bodyLines = @( "--$boundaryString", "Content-Type: text/xml; charset=utf-8", "Content-Disposition: form-data; name=request_payload", "", "", "--$boundaryString", "Content-Type: application/octet-stream", "Content-Disposition: form-data; name=tableau_file; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString($buffer[0..($bytesRead-1)]), "--$boundaryString--" ) $multipartContent = $bodyLines -join "`r`n" $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint FileUpload -Param $uploadSessionId) -Body $multipartContent -Method Put -ContentType "multipart/mixed; boundary=$boundaryString" } $bytesUploaded += $bytesRead $elapsedTime = $(Get-Date) - $startTime # $remainingTime = $elapsedTime * ($fileItem.Length / $bytesUploaded - 1) # note compatibility issue: op_Multiply for TimeSpan is not available in PS5.1 $remainingTime = New-Object TimeSpan($elapsedTime.Ticks * ($fileItem.Length / $bytesUploaded - 1)) # calculate via conversion to Ticks # calculate uploaded size and percentage for Write-Progress $uploadedSizeMb = [Math]::Round($bytesUploaded / 1048576) $percentCompleted = [Math]::Round($bytesUploaded / $fileItem.Length * 100) Write-Progress -Activity "Uploading file $FileName" -Status "$uploadedSizeMb / $totalSizeMb MB uploaded ($percentCompleted%)" -PercentComplete $percentCompleted -SecondsRemaining $remainingTime.TotalSeconds } until ($script:TableauRestChunkSize*$chunkNumber -ge $fileItem.Length) } finally { if ($byteReader) { $byteReader.Dispose() } $fileStream.Dispose() } # final Write-Progress update Write-Progress -Activity "Uploading file $FileName" -Status "$totalSizeMb / $totalSizeMb MB uploaded (100%)" -PercentComplete 100 Start-Sleep -m 100 Write-Progress -Activity "Uploading file $FileName" -Status "$totalSizeMb MB uploaded" -Completed return $uploadSessionId } ### Workbooks methods function Get-TableauWorkbook { <# .SYNOPSIS Get Workbook / Workbooks on Site / Workbook Revisions .DESCRIPTION Returns information about the specified workbook, or workbooks on a site. .PARAMETER WorkbookId Get Workbook by Id: The LUID of the workbook. .PARAMETER ContentUrl Get Workbook by Content URL: The content URL of the workbook. .PARAMETER Revisions (Get Workbook Revisions) Boolean switch, if supplied, the workbook revisions are returned. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#workbooks .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#workbooks .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_workbooks_site .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $workbook = Get-TableauWorkbook -WorkbookId $workbookId .EXAMPLE $workbookRevisions = Get-TableauWorkbook -WorkbookId $workbookId -Revisions .EXAMPLE $workbooks = Get-TableauWorkbook -Filter "name:eq:$workbookName" -Sort name:asc -Fields id,name .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_workbooks_for_site .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_workbook_revisions #> [Alias('Query-TableauWorkbook')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='WorkbookById')] [Parameter(Mandatory,ParameterSetName='WorkbookRevisions')] [string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='WorkbookByContentUrl')][string] $ContentUrl, [Parameter(Mandatory,ParameterSetName='WorkbookRevisions')][switch] $Revisions, [Parameter(ParameterSetName='Workbooks')][string[]] $Filter, [Parameter(ParameterSetName='Workbooks')][string[]] $Sort, [Parameter(ParameterSetName='Workbooks')][string[]] $Fields, [Parameter(ParameterSetName='Workbooks')] [Parameter(ParameterSetName='WorkbookRevisions')] [ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($ContentUrl) { Assert-TableauRestVersion -AtLeast 3.17 } if ($Revisions) { # Get Workbook Revisions $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/revisions $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.revisions.revision } until ($PageSize*$pageNumber -ge $totalAvailable) } elseif ($WorkbookId) { # Get Workbook by Id $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId) -Method Get $response.tsResponse.workbook } elseif ($ContentUrl) { # Get Workbook by ContentUrl $uri = Get-TableauRequestUri -Endpoint Workbook -Param $ContentUrl $uri += "?key=contentUrl" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $response.tsResponse.workbook } else { # Query Workbooks on Site $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Workbook $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.workbooks.workbook } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauWorkbooksForUser { <# .SYNOPSIS Query Workbooks for User .DESCRIPTION Returns the workbooks that the specified user owns or has read (view) permissions for. .PARAMETER UserId The LUID of the user to get workbooks for. .PARAMETER IsOwner (Optional) Boolean switch, if supplied, returns only workbooks that the specified user owns. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $workbooks = Get-TableauWorkbooksForUser -UserId (Get-TableauCurrentUserId) .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_workbooks_for_user #> [Alias('Query-TableauWorkbooksForUser')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][switch] $IsOwner, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint User -Param $UserId/workbooks $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" if ($IsOwner) { $uri += "&ownedBy=true" } $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.workbooks.workbook } until ($PageSize*$pageNumber -ge $totalAvailable) } function Get-TableauWorkbookConnection { <# .SYNOPSIS Query Workbook Connections .DESCRIPTION Returns a list of data connections for the specific workbook. .PARAMETER WorkbookId The LUID of the workbook to return connection information about. .EXAMPLE $workbookConnections = Get-TableauWorkbookConnection -WorkbookId $workbookId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_workbook_connections #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $WorkbookId ) Assert-TableauAuthToken $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/connections) -Method Get return $response.tsResponse.connections.connection } function Set-TableauWorkbookConnection { <# .SYNOPSIS Update Workbook Connection .DESCRIPTION Updates the server address, port, username, or password for the specified workbook connection. .PARAMETER WorkbookId The LUID of the workbook to update. .PARAMETER ConnectionId The LUID of the connection to update. .PARAMETER ServerAddress (Optional) The new server address of the connection. .PARAMETER ServerPort (Optional) The new server port of the connection. .PARAMETER Username (Optional) The new user name of the connection. .PARAMETER SecurePassword (Optional) The new password of the connection, should be supplied as SecurePassword. .PARAMETER EmbedPassword (Optional) Boolean switch, if supplied, the connection password is embedded. .PARAMETER QueryTagging (Optional) Boolean, true to enable query tagging for the connection. https://help.tableau.com/current/pro/desktop/en-us/performance_tips.htm .EXAMPLE $workbookConnection = Set-TableauWorkbookConnection -WorkbookId $sampleWorkbookId -ConnectionId $connectionId -ServerAddress myserver.com .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#update_workbook_connection #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauWorkbookConnection')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter(Mandatory)][string] $ConnectionId, [Parameter()][string] $ServerAddress, [Parameter()][string] $ServerPort, [Parameter()][string] $Username, [Parameter()][securestring] $SecurePassword, [Parameter()][switch] $EmbedPassword, [Parameter()][switch] $QueryTagging ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_connection = $tsRequest.AppendChild($xml.CreateElement("connection")) if ($ServerAddress) { $el_connection.SetAttribute("serverAddress", $ServerAddress) } if ($ServerPort) { $el_connection.SetAttribute("serverPort", $ServerPort) } if ($Username) { $el_connection.SetAttribute("userName", $Username) } if ($SecurePassword) { $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password $el_connection.SetAttribute("password", $private:PlainPassword) } if ($PSBoundParameters.ContainsKey('EmbedPassword')) { $el_connection.SetAttribute("embedPassword", $EmbedPassword) } if ($PSBoundParameters.ContainsKey('QueryTagging')) { Assert-TableauRestVersion -AtLeast 3.13 $el_connection.SetAttribute("queryTaggingEnabled", $QueryTagging) } $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/connections/$ConnectionId if ($PSCmdlet.ShouldProcess($ConnectionId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.connection } } function Export-TableauWorkbook { <# .SYNOPSIS Download Workbook / Download Workbook Revision .DESCRIPTION Downloads a workbook or workbook revision in .twb or .twbx format. .PARAMETER WorkbookId The LUID of the workbook to be downloaded. .PARAMETER OutFile (Optional) Filename where the workbook is saved upon download. If not provided, the downloaded content is piped to the output. .PARAMETER ExcludeExtract (Optional) Boolean switch, if supplied and the workbook contains an extract, it is not included for the download. .PARAMETER Revision (Optional) If revision number is specified, this revision will be downloaded. .EXAMPLE Export-TableauWorkbook -WorkbookId $sampleWorkbookId -OutFile "Superstore.twbx" .EXAMPLE Export-TableauWorkbook -WorkbookId $sampleWorkbookId -OutFile "Superstore_1.twbx" -Revision 1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#download_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_revisions.htm#download_workbook_revision #> [Alias('Download-TableauWorkbook')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter()][string] $OutFile, [Parameter()][switch] $ExcludeExtract, [Parameter()][int] $Revision ) Assert-TableauAuthToken $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId if ($Revision) { $lastRevision = Get-TableauWorkbook -WorkbookId $WorkbookId -Revisions | Sort-Object revisionNumber -Descending | Select-Object -First 1 -ExpandProperty revisionNumber # Note that the current revision of a workbook cannot be accessed by the /revisions endpoint; in this case we ignore the -Revision parameter if ($Revision -lt $lastRevision) { $uri += "/revisions/$Revision" } } $uri += "/content" if ($ExcludeExtract) { Assert-TableauRestVersion -AtLeast 2.5 $uri += "?includeExtract=false" } Invoke-TableauRestMethod -Uri $uri -Method Get -TimeoutSec 600 @OutFileParam } function Publish-TableauWorkbook { <# .SYNOPSIS Publish Workbook .DESCRIPTION Publishes supplied workbook. .PARAMETER InFile The filename (incl. path) of the workbook to upload and publish. .PARAMETER Name The name for the published workbook. .PARAMETER FileName (Optional) The filename (without path) that is included into the request payload. If omitted, the filename is derived from the InFile parameter. .PARAMETER FileType (Optional) The file type of the workbook file. If omitted, the file type is derived from the Filename parameter. .PARAMETER Description (Optional) The description for the published workbook. .PARAMETER ProjectId (Optional) The LUID of the project to assign the workbook to. If the project is not specified, the workbook will be published to the default project. .PARAMETER ShowTabs (Optional) Boolean switch, if supplied, the published workbook shows views in tabs. .PARAMETER HideViews (Optional) Hashtable, containing the mapping of view names and true/false if the specific view should be hidden in the published workbook. If omitted, all original views are snown. .PARAMETER ThumbnailsUserId (Optional) The LUID of the user to generate thumbnails as. .PARAMETER Overwrite (Optional) Boolean switch, if supplied, the workbook will be overwritten (otherwise existing published workbook with the same name is not overwritten). .PARAMETER SkipConnectionCheck (Optional) Boolean switch, if supplied, Tableau server will not check if a non-published connection of a workbook is reachable. .PARAMETER BackgroundTask (Optional) Boolean switch, if supplied, the publishing process (its final stage) is run asynchronously. .PARAMETER Chunked (Optional) Boolean switch, if supplied, the publish process is forced to run as chunked. By default, the payload is send in one request for files < 64MB size. This can be helpful if timeouts occur during upload. .PARAMETER Credentials (Optional) Hashtable containing connection credentials (see online help). .PARAMETER Connections (Optional) Hashtable array containing connection attributes and credentials (see online help). .EXAMPLE $workbook = Publish-TableauWorkbook -Name $sampleWorkbookName -InFile "Superstore.twbx" -ProjectId $samplesProjectId .EXAMPLE $workbook = Publish-TableauWorkbook -Name $sampleWorkbookName -InFile "Superstore.twbx" -ProjectId $samplesProjectId -Overwrite -HideViews @{Shipping="true";Performance="true";Forecast="true"} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#publish_workbook #> [Alias('Upload-TableauWorkbook')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $InFile, [Parameter(Mandatory)][string] $Name, [Parameter()][string] $FileName, [Parameter()][string] $FileType, [Parameter()][string] $Description, [Parameter()][string] $ProjectId, [Parameter()][switch] $ShowTabs, [Parameter()][hashtable] $HideViews, [Parameter()][string] $ThumbnailsUserId, [Parameter()][switch] $Overwrite, [Parameter()][switch] $SkipConnectionCheck, [Parameter()][switch] $BackgroundTask, [Parameter()][switch] $Chunked, [Parameter()][hashtable] $Credentials, [Parameter()][hashtable[]] $Connections # [Parameter()][switch] $EncryptExtracts, ) Assert-TableauAuthToken $fileItem = Get-Item -LiteralPath $InFile if (-Not $FileName) { $FileName = $fileItem.Name -replace '["`]','' # remove special chars } if (-Not $FileType) { $FileType = $fileItem.Extension.Substring(1) } if ($FileType -eq 'zip') { $FileType = 'twbx' $FileName = $FileName -ireplace 'zip$','twbx' } elseif ($FileType -eq 'xml') { $FileType = 'twb' $FileName = $FileName -ireplace 'xml$','twb' } if (-Not ($FileType -In @("twb", "twbx"))) { throw "File type unsupported (supported types are: twb, twbx)" } if ($FileName -match '[^\x20-\x7e]') { # special non-ASCII characters in the filename cause issues on some API versions Write-Verbose "Filename $FileName contains special characters, replacing with tableau_workbook.$FileType" $FileName = "tableau_workbook.$FileType" # fallback to standard filename (doesn't matter for file upload) } if ($fileItem.Length -ge $script:TableauRestFileSizeLimit) { $Chunked = $true } $uri = Get-TableauRequestUri -Endpoint Workbook $uri += "?workbookType=$FileType" if ($Overwrite) { $uri += "&overwrite=true" } if ($SkipConnectionCheck) { $uri += "&skipConnectionCheck=true" } if ($BackgroundTask) { Assert-TableauRestVersion -AtLeast 3.0 $uri += "&asJob=true" } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_workbook = $tsRequest.AppendChild($xml.CreateElement("workbook")) $el_workbook.SetAttribute("name", $Name) if ($Description) { Assert-TableauRestVersion -AtLeast 3.21 $el_workbook.SetAttribute("description", $Description) } $el_workbook.SetAttribute("showTabs", $ShowTabs) if ($ThumbnailsUserId) { $el_workbook.SetAttribute("thumbnailsUserId", $ThumbnailsUserId) } if ($Credentials) { Add-TableauRequestCredentialsElement -Element $el_workbook -Credentials $Credentials } if ($Connections) { Assert-TableauRestVersion -AtLeast 2.8 Add-TableauRequestConnectionsElement -Element $el_workbook -Connections $Connections } if ($ProjectId) { $el_project = $el_workbook.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $ProjectId) } if ($HideViews) { $el_views = $el_workbook.AppendChild($xml.CreateElement("views")) $HideViews.GetEnumerator() | ForEach-Object { $el_view = $el_views.AppendChild($xml.CreateElement("view")) $el_view.SetAttribute("name", $_.Key) $el_view.SetAttribute("hidden", $_.Value) } } $boundaryString = (New-Guid).ToString("N") if ($PSVersionTable.PSVersion.Major -ge 6) { Write-Verbose "Using MultipartFormDataContent as -Body in Invoke-RestMethod (PS6.0+)" # see also https://get-powershellblog.blogspot.com/2017/09/multipartform-data-support-for-invoke.html $multipartContent = New-Object System.Net.Http.MultipartFormDataContent($boundaryString) # first we need to replace the default content type, boundary quoting and multipart/form-data are not supported! # see also https://github.com/PowerShell/PowerShell/issues/9241 - remove boundary quoting $null = $multipartContent.Headers.Remove("Content-Type") $null = $multipartContent.Headers.TryAddWithoutValidation("Content-Type", "multipart/mixed; boundary=$boundaryString") $stringContent = New-Object System.Net.Http.StringContent($xml.OuterXml, [System.Text.Encoding]::UTF8, [System.Net.Http.Headers.MediaTypeHeaderValue]::Parse("text/xml")) $stringContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $stringContent.Headers.ContentDisposition.Name = "request_payload" $multipartContent.Add($stringContent) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } else { $fileStream = New-Object System.IO.FileStream($fileItem.FullName, [System.IO.FileMode]::Open) try { $fileContent = New-Object System.Net.Http.StreamContent($fileStream) $fileContent.Headers.ContentType = New-Object System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream") $fileContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $fileContent.Headers.ContentDisposition.Name = "tableau_workbook" $fileContent.Headers.ContentDisposition.FileName = "`"$FileName`"" $multipartContent.Add($fileContent) $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } finally { $fileStream.Dispose() } } } else { Write-Verbose "Using String as -Body in Invoke-RestMethod (PS5.x)" # https://stackoverflow.com/questions/68677742/multipart-form-data-file-upload-with-powershell # https://stackoverflow.com/questions/25075010/upload-multiple-files-from-powershell-script # other solution: saving the request body in a file and using -InFile parameter for Invoke-RestMethod # https://hochwald.net/upload-file-powershell-invoke-restmethod/ $bodyLines = @( "--$boundaryString", "Content-Type: text/xml; charset=utf-8", "Content-Disposition: form-data; name=request_payload", "", $xml.OuterXml ) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" } else { $bodyLines += @( "--$boundaryString", "Content-Type: application/octet-stream", "Content-Disposition: form-data; name=tableau_workbook; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString([System.IO.File]::ReadAllBytes($fileItem.FullName)) # was: (Get-Content $InFile -Raw) ) } $bodyLines += "--$boundaryString--" $multipartContent = $bodyLines -join "`r`n" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post -ContentType "multipart/mixed; boundary=$boundaryString" } if ($BackgroundTask) { return $response.tsResponse.job } else { return $response.tsResponse.workbook } } function Set-TableauWorkbook { <# .SYNOPSIS Update Workbook .DESCRIPTION Updates the owner, project or other properties of the specified workbook. .PARAMETER WorkbookId The LUID of the workbook to update. .PARAMETER Name (Optional) The new name for the published workbook. .PARAMETER Description (Optional) The new description for the published workbook. .PARAMETER NewProjectId (Optional) The LUID of the project where the published workbook should be moved. .PARAMETER NewOwnerId (Optional) The LUID of the user who should own the workbook. .PARAMETER ShowTabs (Optional) Boolean, controls if the published workbook shows views in tabs. .PARAMETER RecentlyViewed (Optional) Boolean switch, if supplied, the updated workbook will show in the site's recently viewed list. .PARAMETER EncryptExtracts (Optional) Boolean switch, include to encrypt the embedded extracts. .PARAMETER EnableDataAcceleration (Optional) Boolean switch, include to enable data acceleration for the workbook. Note: this feature is not supported anymore in API 3.16 and higher. .PARAMETER AccelerateNow (Optional) Boolean switch, when acceleration is enabled, start the pre-computation for acceleration immediately when the next backgrounder process becomes available. Note: this feature is not supported anymore in API 3.16 and higher. .EXAMPLE $workbook = Set-TableauWorkbook -WorkbookId $sampleWorkbookId -ShowTabs:$false .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#update_workbook #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauWorkbook')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter()][string] $Name, [Parameter()][string] $Description, [Parameter()][string] $NewProjectId, [Parameter()][string] $NewOwnerId, [Parameter()][switch] $ShowTabs, [Parameter()][switch] $RecentlyViewed, [Parameter()][switch] $EncryptExtracts, [Parameter()][switch] $EnableDataAcceleration, [Parameter()][switch] $AccelerateNow ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_workbook = $tsRequest.AppendChild($xml.CreateElement("workbook")) if ($Name) { $el_workbook.SetAttribute("name", $Name) } if ($Description) { Assert-TableauRestVersion -AtLeast 3.21 $el_workbook.SetAttribute("description", $Description) } if ($PSBoundParameters.ContainsKey('ShowTabs')) { $el_workbook.SetAttribute("showTabs", $ShowTabs) } if ($PSBoundParameters.ContainsKey('RecentlyViewed')) { $el_workbook.SetAttribute("recentlyViewed", $RecentlyViewed) } if ($PSBoundParameters.ContainsKey('EncryptExtracts')) { $el_workbook.SetAttribute("encryptExtracts", $EncryptExtracts) } if ($NewProjectId) { $el_project = $el_workbook.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $NewProjectId) } if ($NewOwnerId) { $el_owner = $el_workbook.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $NewOwnerId) } if ($PSBoundParameters.ContainsKey('EnableDataAcceleration')) { Assert-TableauRestVersion -AtLeast 3.16 $el_dataaccel = $el_workbook.AppendChild($xml.CreateElement("dataAccelerationConfig")) $el_dataaccel.SetAttribute("accelerationEnabled", $EnableDataAcceleration) if ($PSBoundParameters.ContainsKey('AccelerateNow')) { $el_dataaccel.SetAttribute("accelerateNow", $AccelerateNow) } } $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId if ($PSCmdlet.ShouldProcess($WorkbookId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.workbook } } function Remove-TableauWorkbook { <# .SYNOPSIS Delete Workbook / Delete Workbook Revision .DESCRIPTION Deletes a published workbook. When a workbook is deleted, all of its assets and revisions are also deleted. If a specific revision is deleted, the workbook is still available. It's not possible to delete the latest revision of the workbook. .PARAMETER WorkbookId The LUID of the workbook to remove. .PARAMETER Revision (Delete Workbook Revision) The revision number of the workbook to delete. .EXAMPLE Remove-TableauWorkbook -WorkbookId $sampleWorkbookId .EXAMPLE Remove-TableauWorkbook -WorkbookId $sampleWorkbookId -Revision 2 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#delete_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_revisions.htm#remove_workbook_revision #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter()][int] $Revision ) Assert-TableauAuthToken if ($Revision) { # Remove Workbook Revision if ($PSCmdlet.ShouldProcess("$WorkbookId, revision $Revision")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/revisions/$Revision) -Method Delete } } else { # Remove Workbook if ($PSCmdlet.ShouldProcess($WorkbookId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId) -Method Delete } } } function Get-TableauWorkbookDowngradeInfo { <# .SYNOPSIS Get Workbook Downgrade Info .DESCRIPTION Returns a list of the features that would be impacted, and the severity of the impact, when a workbook is exported as a downgraded version (for instance, exporting a v2019.3 workbook to a v10.5 version). .PARAMETER WorkbookId The LUID of the workbook which would be downgraded. .PARAMETER DowngradeVersion The Tableau release version number the workbook would be downgraded to. .EXAMPLE $downgradeInfo = Get-TableauWorkbookDowngradeInfo -WorkbookId $sampleWorkbookId -DowngradeVersion 2019.3 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_workbook_downgrade_info #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter(Mandatory)][version] $DowngradeVersion ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/downGradeInfo?productVersion=$DowngradeVersion) -Method Get return $response.tsResponse.downgradeInfo } function Export-TableauWorkbookToFormat { <# .SYNOPSIS Download Workbook as PDF / PowerPoint / Image .DESCRIPTION Downloads a .pdf containing images of the sheets that the user has permission to view in a workbook or Downloads a PowerPoint (.pptx) file containing slides with images of the sheets that the user has permission to view in a workbook or Query Workbook Preview Image .PARAMETER WorkbookId The LUID of the workbook to use as the source. .PARAMETER Format The output format of the export: pdf, powerpoint or image. .PARAMETER PageType (Optional, for PDF) The type of page, which determines the page dimensions of the .pdf file returned. The value can be: A3, A4, A5, B5, Executive, Folio, Ledger, Legal, Letter, Note, Quarto, or Tabloid. Default is A4. .PARAMETER PageOrientation (Optional, for PDF) The orientation of the pages in the .pdf file produced. The value can be Portrait or Landscape. Default is Portrait. .PARAMETER MaxAge (Optional) The maximum number of minutes a workbook export output will be cached before being refreshed. .PARAMETER OutFile (Optional) Filename where the download is saved. If not provided, the downloaded content is piped to the output. .EXAMPLE Export-TableauWorkbookToFormat -WorkbookId $sampleWorkbookId -Format pdf -PageOrientation Landscape -OutFile "export.pdf" .EXAMPLE Export-TableauWorkbookToFormat -WorkbookId $sampleWorkbookId -Format powerpoint -OutFile "export.pptx" .EXAMPLE Export-TableauWorkbookToFormat -WorkbookId $sampleWorkbookId -Format image -OutFile "export.png" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#download_workbook_pdf .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#download_workbook_powerpoint .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_workbook_preview_image #> [Alias('Download-TableauWorkbookToFormat')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId, [Parameter(Mandatory)][ValidateSet('pdf','powerpoint','image')][string] $Format, [Parameter()][ValidateSet('A3','A4','A5','B4','B5','Executive','Folio','Ledger','Legal','Letter','Note','Quarto','Tabloid','Unspecified')][string] $PageType = 'A4', [Parameter()][ValidateSet('Portrait','Landscape')][string] $PageOrientation = 'Portrait', [Parameter()][int] $MaxAge, # The maximum number of minutes a workbook preview will be cached before being refreshed [Parameter()][string] $OutFile ) Assert-TableauAuthToken $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId if ($Format -eq 'pdf') { Assert-TableauRestVersion -AtLeast 3.4 $uri += "/pdf?type=$PageType&orientation=$PageOrientation" if ($MaxAge) { $uri += "&maxAge=$MaxAge" } # $fileType = 'pdf' } elseif ($Format -eq 'powerpoint') { Assert-TableauRestVersion -AtLeast 3.8 $uri += "/powerpoint" if ($MaxAge) { $uri += "?maxAge=$MaxAge" } # $fileType = 'pptx' } elseif ($Format -eq 'image') { $uri += "/previewImage" # $fileType = 'png' } Invoke-TableauRestMethod -Uri $uri -Method Get -TimeoutSec 600 @OutFileParam } function Update-TableauWorkbookNow { <# .SYNOPSIS Update Workbook Now .DESCRIPTION Performs an immediate extract refresh for the specified workbook. .PARAMETER WorkbookId The LUID of the workbook to refresh. .EXAMPLE $job = Update-TableauWorkbookNow -WorkbookId $workbook.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#update_workbook_now #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WorkbookId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 2.8 $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/refresh if ($PSCmdlet.ShouldProcess($WorkbookId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body '<tsRequest />' -Method Post -ContentType 'application/xml' return $response.tsResponse.job } } ### Datasources methods function Get-TableauDatasource { <# .SYNOPSIS Query Data Source / Query Data Sources / Get Data Source Revisions .DESCRIPTION Returns information about the specified data source or data sources. .PARAMETER DatasourceId (Query Data Source by Id) The LUID of the data source. .PARAMETER Revisions (Get Data Source Revisions) Boolean switch, if supplied, the data source revisions are returned. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#datasources .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#datasources .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_datasources .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $datasource = Get-TableauDatasource -DatasourceId $datasourceId .EXAMPLE $dsRevisions = Get-TableauDatasource -DatasourceId $datasourceId -Revisions .EXAMPLE $datasources = Get-TableauDatasource -Filter "name:eq:$datasourceName" -Sort name:asc -Fields id,name .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#query_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#query_data_sources .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_revisions.htm#get_data_source_revisions #> [Alias('Query-TableauDatasource')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='DatasourceById')] [Parameter(Mandatory,ParameterSetName='DatasourceRevisions')] [string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='DatasourceRevisions')][Parameter()][switch] $Revisions, [Parameter(ParameterSetName='Datasources')][string[]] $Filter, [Parameter(ParameterSetName='Datasources')][string[]] $Sort, [Parameter(ParameterSetName='Datasources')][string[]] $Fields, [Parameter(ParameterSetName='Datasources')] [Parameter(ParameterSetName='DatasourceRevisions')] [ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($Revisions) { # Get Data Source Revisions $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/revisions $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.revisions.revision } until ($PageSize*$pageNumber -ge $totalAvailable) } elseif ($DatasourceId) { # Query Data Source $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId) -Method Get $response.tsResponse.datasource } else { # Query Data Sources $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Datasource $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.datasources.datasource } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauDatasourceConnection { <# .SYNOPSIS Query Data Source Connections .DESCRIPTION Returns a list of data connections for the specific data source. .PARAMETER DatasourceId The LUID of the data source to return connection information about. .EXAMPLE $dsConnections = Get-TableauDatasourceConnection -DatasourceId $datasourceId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#query_data_source_connections #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $DatasourceId ) Assert-TableauAuthToken $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/connections) -Method Get return $response.tsResponse.connections.connection } function Set-TableauDatasourceConnection { <# .SYNOPSIS Update Data Source Connection .DESCRIPTION Updates the server address, port, username, or password for the specified data source connection. .PARAMETER DatasourceId The LUID of the data source to update. .PARAMETER ConnectionId The LUID of the connection to update. .PARAMETER ServerAddress (Optional) The new server address of the connection. .PARAMETER ServerPort (Optional) The new server port of the connection. .PARAMETER Username (Optional) The new user name of the connection. .PARAMETER SecurePassword (Optional) The new password of the connection, should be supplied as SecurePassword. .PARAMETER EmbedPassword (Optional) Boolean switch, if supplied, the connection password is embedded. .PARAMETER QueryTagging (Optional) Boolean, true to enable query tagging for the connection. https://help.tableau.com/current/pro/desktop/en-us/performance_tips.htm .EXAMPLE $datasourceConnection = Set-TableauDatasourceConnection -DatasourceId $sampleDatasourceId -ConnectionId $connectionId -ServerAddress myserver.com .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#update_data_source_connection #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauDatasourceConnection')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DatasourceId, [Parameter(Mandatory)][string] $ConnectionId, [Parameter()][string] $ServerAddress, [Parameter()][string] $ServerPort, [Parameter()][string] $Username, [Parameter()][securestring] $SecurePassword, [Parameter()][switch] $EmbedPassword, [Parameter()][switch] $QueryTagging ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_connection = $tsRequest.AppendChild($xml.CreateElement("connection")) if ($ServerAddress) { $el_connection.SetAttribute("serverAddress", $ServerAddress) } if ($ServerPort) { $el_connection.SetAttribute("serverPort", $ServerPort) } if ($Username) { $el_connection.SetAttribute("userName", $Username) } if ($SecurePassword) { $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password $el_connection.SetAttribute("password", $private:PlainPassword) } if ($PSBoundParameters.ContainsKey('EmbedPassword')) { $el_connection.SetAttribute("embedPassword", $EmbedPassword) } if ($PSBoundParameters.ContainsKey('QueryTagging')) { Assert-TableauRestVersion -AtLeast 3.13 $el_connection.SetAttribute("queryTaggingEnabled", $QueryTagging) } $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/connections/$ConnectionId if ($PSCmdlet.ShouldProcess($ConnectionId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.connection } } function Export-TableauDatasource { <# .SYNOPSIS Download Data Source / Download Data Source Revision .DESCRIPTION Downloads a data source or data source revision in .tds or .tdsx format. .PARAMETER DatasourceId The LUID of the data source to be downloaded. .PARAMETER OutFile (Optional) Filename where the data source is saved upon download. If not provided, the downloaded content is piped to the output. .PARAMETER ExcludeExtract (Optional) Boolean switch, if supplied and the data source contains an extract, it is not included for the download. .PARAMETER Revision (Optional) If revision number is specified, this revision will be downloaded. .EXAMPLE Export-TableauDatasource -DatasourceId $sampleDatasourceId -OutFile "Superstore_Data.tdsx" -ExcludeExtract .EXAMPLE Export-TableauDatasource -DatasourceId $sampleDatasourceId -OutFile "Superstore_Data_1.tdsx" -Revision 1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#download_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_revisions.htm#download_data_source_revision #> [Alias('Download-TableauDatasource')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DatasourceId, [Parameter()][string] $OutFile, [Parameter()][switch] $ExcludeExtract, [Parameter()][int] $Revision ) Assert-TableauAuthToken $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId if ($Revision) { $lastRevision = Get-TableauDatasource -DatasourceId $DatasourceId -Revisions | Sort-Object revisionNumber -Descending | Select-Object -First 1 -ExpandProperty revisionNumber # Note that the current revision of a datasource cannot be accessed by the /revisions endpoint; in this case we ignore the -Revision parameter if ($Revision -lt $lastRevision) { $uri += "/revisions/$Revision" } } $uri += "/content" if ($ExcludeExtract) { Assert-TableauRestVersion -AtLeast 2.5 $uri += "?includeExtract=false" } Invoke-TableauRestMethod -Uri $uri -Method Get -TimeoutSec 600 @OutFileParam } function Publish-TableauDatasource { <# .SYNOPSIS Publish Data Source .DESCRIPTION Publishes supplied data source. .PARAMETER InFile The filename (incl. path) of the data source to upload and publish. .PARAMETER Name The name for the published data source. .PARAMETER FileName (Optional) The filename (without path) that is included into the request payload. If omitted, the filename is derived from the InFile parameter. .PARAMETER FileType (Optional) The file type of the data source file. If omitted, the file type is derived from the Filename parameter. .PARAMETER Description (Optional) The description for the published data source. .PARAMETER ProjectId (Optional) The LUID of the project to assign the data source to. If the project is not specified, the data source will be published to the default project. .PARAMETER Overwrite (Optional) Boolean switch, if supplied, the data source will be overwritten (otherwise existing published data source with the same name is not overwritten). .PARAMETER Append (Optional) Boolean switch, if supplied, the data will be appended to the existin data source. If the data source doesn't already exist, the operation will fail. Append flag cannot be used together with the Overwrite flag. .PARAMETER BackgroundTask (Optional) Boolean switch, if supplied, the publishing process (its final stage) is run asynchronously. .PARAMETER Chunked (Optional) Boolean switch, if supplied, the publish process is forced to run as chunked. By default, the payload is send in one request for files < 64MB size. This can be helpful if timeouts occur during upload. .PARAMETER UseRemoteQueryAgent (Optional) When true, this flag will allow your Tableau Cloud site to use Tableau Bridge clients. Bridge allows you to maintain data sources with live connections to supported on-premises data sources. .PARAMETER Credentials (Optional) Hashtable containing connection credentials (see online help). .PARAMETER Connections (Optional) Hashtable array containing connection attributes and credentials (see online help). .EXAMPLE $datasource = Publish-TableauDatasource -Name $sampleDatasourceName -InFile "Superstore_2023.tdsx" -ProjectId $samplesProjectId -Overwrite .EXAMPLE $datasource = Publish-TableauDatasource -Name "Datasource" -InFile "data.hyper" -ProjectId $samplesProjectId -Append -Chunked .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#publish_data_source #> [Alias('Upload-TableauDatasource')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $InFile, [Parameter(Mandatory)][string] $Name, [Parameter()][string] $FileName, [Parameter()][string] $FileType, [Parameter()][string] $Description, [Parameter()][string] $ProjectId, [Parameter()][switch] $Overwrite, [Parameter()][switch] $Append, [Parameter()][switch] $BackgroundTask, [Parameter()][switch] $Chunked, [Parameter()][switch] $UseRemoteQueryAgent, [Parameter()][hashtable] $Credentials, [Parameter()][hashtable[]] $Connections ) Assert-TableauAuthToken $fileItem = Get-Item -LiteralPath $InFile if (-Not $FileName) { $FileName = $fileItem.Name -replace '["`]','' # remove special chars } if (-Not $FileType) { $FileType = $fileItem.Extension.Substring(1) } if ($FileType -eq 'zip') { $FileType = 'tdsx' $FileName = $FileName -ireplace 'zip$','tdsx' } elseif ($FileType -eq 'xml') { $FileType = 'tds' $FileName = $FileName -ireplace 'xml$','tds' } if (-Not ($FileType -In @("tds", "tdsx", "tde", "hyper", "parquet"))) { throw "File type unsupported (supported types are: tds, tdsx, tde, hyper, parquet)" } if ($FileName -match '[^\x20-\x7e]') { # special non-ASCII characters in the filename cause issues on some API versions Write-Verbose "Filename $FileName contains special characters, replacing with tableau_datasource.$FileType" $FileName = "tableau_datasource.$FileType" # fallback to standard filename (doesn't matter for file upload) } if ($fileItem.Length -ge $script:TableauRestFileSizeLimit) { $Chunked = $true } $uri = Get-TableauRequestUri -Endpoint Datasource $uri += "?datasourceType=$FileType" if ($Append) { $uri += "&append=true" } if ($Overwrite) { $uri += "&overwrite=true" } if ($BackgroundTask) { Assert-TableauRestVersion -AtLeast 3.0 $uri += "&asJob=true" } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_datasource = $tsRequest.AppendChild($xml.CreateElement("datasource")) $el_datasource.SetAttribute("name", $Name) if ($Description) { $el_datasource.SetAttribute("description", $Description) } if ($UseRemoteQueryAgent) { $el_datasource.SetAttribute("useRemoteQueryAgent", "true") } if ($Connections -and $Credentials) { Write-Error "You cannot provide both Connections and Credentials inputs" -Category InvalidArgument -ErrorAction Stop } if ($Credentials) { Add-TableauRequestCredentialsElement -Element $el_datasource -Credentials $Credentials } if ($Connections) { Assert-TableauRestVersion -AtLeast 2.8 Add-TableauRequestConnectionsElement -Element $el_datasource -Connections $Connections } if ($ProjectId) { $el_project = $el_datasource.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $ProjectId) } $boundaryString = (New-Guid).ToString("N") if ($PSVersionTable.PSVersion.Major -ge 6) { Write-Verbose "Using MultipartFormDataContent as -Body in Invoke-RestMethod (PS6.0+)" $multipartContent = New-Object System.Net.Http.MultipartFormDataContent($boundaryString) $null = $multipartContent.Headers.Remove("Content-Type") $null = $multipartContent.Headers.TryAddWithoutValidation("Content-Type", "multipart/mixed; boundary=$boundaryString") $stringContent = New-Object System.Net.Http.StringContent($xml.OuterXml, [System.Text.Encoding]::UTF8, [System.Net.Http.Headers.MediaTypeHeaderValue]::Parse("text/xml")) $stringContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $stringContent.Headers.ContentDisposition.Name = "request_payload" $multipartContent.Add($stringContent) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } else { $fileStream = New-Object System.IO.FileStream($fileItem.FullName, [System.IO.FileMode]::Open) try { $fileContent = New-Object System.Net.Http.StreamContent($fileStream) $fileContent.Headers.ContentType = New-Object System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream") $fileContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $fileContent.Headers.ContentDisposition.Name = "tableau_datasource" $fileContent.Headers.ContentDisposition.FileName = "`"$FileName`"" $multipartContent.Add($fileContent) $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } finally { $fileStream.Dispose() } } } else { Write-Verbose "Using String as -Body in Invoke-RestMethod (PS5.x)" $bodyLines = @( "--$boundaryString", "Content-Type: text/xml; charset=utf-8", "Content-Disposition: form-data; name=request_payload", "", $xml.OuterXml ) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" } else { $bodyLines += @( "--$boundaryString", "Content-Type: application/octet-stream", "Content-Disposition: form-data; name=tableau_datasource; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString([System.IO.File]::ReadAllBytes($fileItem.FullName)) ) } $bodyLines += "--$boundaryString--" $multipartContent = $bodyLines -join "`r`n" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post -ContentType "multipart/mixed; boundary=$boundaryString" } if ($BackgroundTask) { return $response.tsResponse.job } else { return $response.tsResponse.datasource } } function Set-TableauDatasource { <# .SYNOPSIS Update Data Source .DESCRIPTION Updates the owner, project or certification status of the specified data source. .PARAMETER DatasourceId The LUID of the data source to update. .PARAMETER Name (Optional) The new name for the published data source. .PARAMETER NewProjectId (Optional) The LUID of the project where the published data source should be moved. .PARAMETER NewOwnerId (Optional) The LUID of the user who should own the data source. .PARAMETER Certified (Optional) Boolean switch, if supplied, updates whether the data source is certified. .PARAMETER CertificationNote (Optional) A note that provides more information on the certification of the data source, if applicable. .PARAMETER EncryptExtracts (Optional) Boolean switch, include to encrypt the embedded extract. .PARAMETER EnableAskData (Optional) Boolean switch, determines if a data source allows use of Ask Data. Note: This attribute is removed in API 3.12 and later (Tableau Cloud September 2021 / Server 2021.3). .EXAMPLE $datasource = Set-TableauDatasource -DatasourceId $sampleDatasourceId -Certified .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#update_data_source #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauDatasource')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DatasourceId, [Parameter()][string] $Name, [Parameter()][string] $NewProjectId, [Parameter()][string] $NewOwnerId, [Parameter()][switch] $Certified, [Parameter()][string] $CertificationNote, [Parameter()][switch] $EncryptExtracts, [Parameter()][switch] $EnableAskData ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_datasource = $tsRequest.AppendChild($xml.CreateElement("datasource")) if ($Name) { $el_datasource.SetAttribute("name", $Name) } if ($PSBoundParameters.ContainsKey('Certified')) { $el_datasource.SetAttribute("isCertified", $Certified) } if ($CertificationNote) { $el_datasource.SetAttribute("certificationNote", $CertificationNote) } if ($PSBoundParameters.ContainsKey('EncryptExtracts')) { $el_datasource.SetAttribute("encryptExtracts", $EncryptExtracts) } if ($NewProjectId) { $el_project = $el_datasource.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $NewProjectId) } if ($NewOwnerId) { $el_owner = $el_datasource.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $NewOwnerId) } if ($PSBoundParameters.ContainsKey('EnableAskData')) { Assert-TableauRestVersion -LessThan 3.12 $el_askdata = $el_datasource.AppendChild($xml.CreateElement("askData")) $el_askdata.SetAttribute("enablement", $EnableAskData) } $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId if ($PSCmdlet.ShouldProcess($DatasourceId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.datasource } } function Remove-TableauDatasource { <# .SYNOPSIS Delete Data Source / Delete Data Source Revision .DESCRIPTION Deletes a published data source. Note: it's not possible to delete the latest revision of the data source. .PARAMETER DatasourceId The LUID of the data source to remove. .PARAMETER Revision (Delete Data Source Revision) The revision number of the data source to delete. .EXAMPLE Remove-TableauDatasource -DatasourceId $sampleDatasourceId .EXAMPLE Remove-TableauDatasource -DatasourceId $sampleDatasourceId -Revision 1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#delete_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_revisions.htm#remove_data_source_revision #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DatasourceId, [Parameter()][int] $Revision ) Assert-TableauAuthToken if ($Revision) { # Remove Data Source Revision if ($PSCmdlet.ShouldProcess("$DatasourceId, revision $Revision")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/revisions/$Revision) -Method Delete } } else { # Remove Data Source if ($PSCmdlet.ShouldProcess($DatasourceId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId) -Method Delete } } } function Update-TableauDatasourceNow { <# .SYNOPSIS Update Data Source Now .DESCRIPTION Performs an immediate extract refresh for the specified data source. .PARAMETER DatasourceId The LUID of the data source to refresh. .EXAMPLE $job = Update-TableauDatasourceNow -DatasourceId $datasource.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#update_data_source_now #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DatasourceId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 2.8 $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/refresh if ($PSCmdlet.ShouldProcess($DatasourceId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body '<tsRequest />' -Method Post -ContentType 'application/xml' return $response.tsResponse.job } } function Update-TableauHyperData { <# .SYNOPSIS Update Data in Hyper Data Source or Connection .DESCRIPTION Incrementally updates data (insert, update, upsert, replace and delete) in a published data source from a live-to-Hyper connection, where the data source has a single connection or multiple connections. See also: https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_how_to_update_data_to_hyper.htm .PARAMETER Action The actions list to perform. Each element of the list is a hashtable, describing the action's properties. The actions are performed sequentially, first to last, and if any of the actions fail, the whole operation is discarded. The actions have the following properties: - action: insert, update, delete, replace, or upsert - target-table: The table name inside the target database - target-schema: The name of a schema inside the target Hyper file - source-table: The table name inside the source database - source-schema: The name of a schema inside the uploaded source Hyper payload - condition: the condition used to select the columns to be modified (applicable for update, delete, and upsert actions) .PARAMETER DatasourceId The LUID of the data source to update. .PARAMETER ConnectionId (Optional) The LUID of the data source connection to update. .PARAMETER InFile (Optional) The filename (incl. path) of the hyper file payload. .PARAMETER RequestId (Optional) A user-generated identifier that uniquely identifies a request. If this parameter is not supplied, the request ID will be generated randomly. Purpose: If the server receives more than one request with the same ID within 24 hours, all subsequent requests will be treated as duplicates and ignored by the server. This can be used to guarantee idempotency of requests. .EXAMPLE $job = Update-TableauHyperData -InFile upload.hyper -Action $action -DatasourceId $datasource.id .EXAMPLE $job = Update-TableauHyperData -InFile upload.hyper -DatasourceId $datasourceId -Action $action1,$action2 -ConnectionId $connectionId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#update_data_in_hyper_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#update_data_source_now #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][hashtable[]] $Action, [Parameter(Mandatory)][string] $DatasourceId, [Parameter()][string] $ConnectionId, [Parameter()][string] $InFile, [Parameter()][string] $RequestId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.12 if ($ConnectionId) { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/connections/$ConnectionId/data $shouldProcessItem = "datasource:{0}, connection:{1}" -f $DatasourceId, $ConnectionId } else { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/data $shouldProcessItem = "datasource:{0}" -f $DatasourceId } if (-Not $RequestId) { $RequestId = New-Guid # alternative: (New-Guid).ToString("N") } if ($InFile) { $fileItem = Get-Item -LiteralPath $InFile $fileName = $fileItem.Name -replace '["`]','' # remove special chars $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $fileName $uri += "?uploadSessionId=$uploadSessionId" } $actionsArray = @() foreach ($ac in $Action) { $actionsArray += $ac } $jsonBody = @{actions=$actionsArray} | ConvertTo-Json -Compress -Depth 4 # should be enough for condition cases Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri $uri -AddHeaders @{RequestID=$RequestId} -Body $jsonBody -Method Patch -ContentType 'application/json' # Write-Debug ($response.tsResponse.job | Format-List -Force | Out-String) return $response.tsResponse.job } } ### Views methods function Get-TableauView { <# .SYNOPSIS Get View / Query Views for Site / Query Views for Workbook .DESCRIPTION Returns all the views for the specified site or workbook, or gets the details of a specific view. .PARAMETER ViewId Get View: The LUID of the view whose details are requested. .PARAMETER WorkbookId Query Views for Workbook: The LUID of the workbook to get the views for. .PARAMETER IncludeUsageStatistics Query Views: include this boolean switch to return usage statistics with the views in response. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#views Also: Get View by Path - use Get-TableauView with filter viewUrlName:eq:<url> .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#views .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_views_site .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $view = Get-TableauView -ViewId $viewId .EXAMPLE $views = Get-TableauView -Filter "name:eq:$viewName" -Sort name:asc -Fields id,name .EXAMPLE $viewsInWorkbook = Get-TableauView -WorkbookId $workbookId -IncludeUsageStatistics .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_view .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_views_for_site .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_views_for_workbook #> [Alias('Query-TableauView')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='ViewById')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='ViewsInWorkbook')][string] $WorkbookId, [Parameter(ParameterSetName='ViewsInWorkbook')][switch] $IncludeUsageStatistics, [Parameter(ParameterSetName='Views')][string[]] $Filter, [Parameter(ParameterSetName='Views')][string[]] $Sort, [Parameter(ParameterSetName='Views')][string[]] $Fields, [Parameter(ParameterSetName='Views')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($ViewId) { # Get View Assert-TableauRestVersion -AtLeast 3.0 } if ($ViewId) { # Get View $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint View -Param $ViewId) -Method Get $response.tsResponse.view } elseif ($WorkbookId) { # Query Views for Workbook $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/views if ($IncludeUsageStatistics) { $uri += "?includeUsageStatistics=true" } $response = Invoke-TableauRestMethod -Uri $uri -Method Get $response.tsResponse.views.view } else { # Query Views for Site $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint View $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($IncludeUsageStatistics) { $uriParam.Add("includeUsageStatistics", "true") } if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.views.view } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Export-TableauViewImage { <# .SYNOPSIS Query View Preview Image .DESCRIPTION Returns the thumbnail image for the specified view. .PARAMETER ViewId The LUID of the view to return a thumbnail image for. .PARAMETER WorkbookId The LUID of the workbook that contains the view to return a thumbnail image for. .PARAMETER OutFile (Optional) Filename where the download is saved. If not provided, the downloaded content is piped to the output. .EXAMPLE Export-TableauViewImage -ViewId $view.id -WorkbookId $workbookId -OutFile "preview.png" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_view_with_preview #> [Alias('Download-TableauViewImage')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $ViewId, [Parameter(Mandatory)][string] $WorkbookId, [Parameter()][string] $OutFile ) Assert-TableauAuthToken $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/views/$ViewId/previewImage Invoke-TableauRestMethod -Uri $uri -Method Get -TimeoutSec 600 @OutFileParam } function Export-TableauViewToFormat { <# .SYNOPSIS Query View PDF / Image / Data .DESCRIPTION Returns a specified view rendered as a .pdf file. or Returns an image of the specified view. or Returns a specified view rendered as data in comma-separated-value (CSV) format. .PARAMETER ViewId The LUID of the view to export. .PARAMETER Format The output format of the export: pdf, powerpoint or image. .PARAMETER PageType (Optional, for PDF) The type of page, which determines the page dimensions of the .pdf file returned. The value can be: A3, A4, A5, B5, Executive, Folio, Ledger, Legal, Letter, Note, Quarto, or Tabloid. Default is A4. .PARAMETER PageOrientation (Optional, for PDF) The orientation of the pages in the .pdf file produced. The value can be Portrait or Landscape. Default is Portrait. .PARAMETER MaxAge (Optional) The maximum number of minutes a view export output will be cached before being refreshed. .PARAMETER VizWidth The width of the rendered pdf image in pixels, these parameter determine its resolution and aspect ratio. .PARAMETER VizHeight The height of the rendered pdf image in pixels, these parameter determine its resolution and aspect ratio. .PARAMETER Resolution The resolution of the image (high/standard). Image width and actual pixel density are determined by the display context of the image. Aspect ratio is always preserved. Set the value to high to ensure maximum pixel density. .PARAMETER OutFile (Optional) Filename where the download is saved. If not provided, the downloaded content is piped to the output. .PARAMETER ViewFilters Filter expression to modify the view data returned. The expression uses fields in the underlying workbook data to define the filter. To filter a view using a field, add one or more query parameters to your method call, structured as key=value pairs, prefaced by the constant 'vf_' https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#Filter-query-views .EXAMPLE Export-TableauViewToFormat -ViewId $sampleViewId -Format pdf -OutFile "export.pdf" -ViewFilters @{Region="Europe"} .EXAMPLE Export-TableauViewToFormat -ViewId $sampleViewId -Format image -OutFile "export.png" -Resolution high .EXAMPLE Export-TableauViewToFormat -ViewId $sampleViewId -Format csv -OutFile "export.csv" -ViewFilters @{"Ease of Business (clusters)"="Low"} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_view_pdf .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_view_image .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#query_view_data #> [Alias('Download-TableauViewToFormat')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ViewId, [Parameter(Mandatory)][ValidateSet('pdf','image','csv','excel')][string] $Format, [Parameter()][ValidateSet('A3','A4','A5','B4','B5','Executive','Folio','Ledger','Legal','Letter','Note','Quarto','Tabloid','Unspecified')][string] $PageType = 'A4', [Parameter()][ValidateSet('Portrait','Landscape')][string] $PageOrientation = 'Portrait', [Parameter()][int] $MaxAge, [Parameter()][int] $VizWidth, [Parameter()][int] $VizHeight, [Parameter()][ValidateSet('standard','high')][string] $Resolution = 'high', [Parameter()][string] $OutFile, [Parameter()][hashtable] $ViewFilters ) Assert-TableauAuthToken $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint View -Param $ViewId $uriParam = @{} if ($Format -eq 'pdf') { Assert-TableauRestVersion -AtLeast 2.8 $uri += "/pdf" $uriParam.Add('type', $PageType) $uriParam.Add('orientation', $PageOrientation) if ($VizWidth) { $uriParam.Add('vizWidth', $VizWidth) } if ($VizHeight) { $uriParam.Add('vizHeight', $VizHeight) } # $fileType = 'pdf' } elseif ($Format -eq 'image') { Assert-TableauRestVersion -AtLeast 2.5 $uri += "/image" if ($Resolution -eq "high") { $uriParam.Add('resolution', $Resolution) } # $fileType = 'png' } elseif ($Format -eq 'csv') { Assert-TableauRestVersion -AtLeast 2.8 $uri += "/data" # $fileType = 'csv' } elseif ($Format -eq 'excel') { Assert-TableauRestVersion -AtLeast 3.9 $uri += "/crosstab/excel" # $fileType = 'xlsx' } if ($MaxAge) { $uriParam.Add('maxAge', $MaxAge) } if ($ViewFilters) { $ViewFilters.GetEnumerator() | ForEach-Object { $uriParam.Add("vf_"+$_.Key, $_.Value) } } Invoke-TableauRestMethod -Uri $uri -Body $uriParam -Method Get -TimeoutSec 600 @OutFileParam } function Get-TableauViewRecommendation { <# .SYNOPSIS Get Recommendations for Views .DESCRIPTION Gets a list of views that are recommended for a user. .EXAMPLE $recommendations = Get-TableauViewRecommendation .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_view_recommendations #> [OutputType([PSCustomObject[]])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.7 $uri = Get-TableauRequestUri -Endpoint Recommendation -Param "?type=view" $response = Invoke-TableauRestMethod -Uri $uri -Method Get return $response.tsResponse.recommendations.recommendation } function Hide-TableauViewRecommendation { <# .SYNOPSIS Hide a Recommendation for a View .DESCRIPTION Hides a view from being recommended by the server by adding it to a list of views that are dismissed for a user. .PARAMETER ViewId The LUID of the view to be added to the list of views hidden from recommendation for a user. .EXAMPLE Hide-TableauViewRecommendation -ViewId $viewId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#hide_view_recommendation #> [OutputType([string])] Param( [Parameter(Mandatory)][string] $ViewId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.7 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_rd = $tsRequest.AppendChild($xml.CreateElement("recommendationDismissal")) $el_view = $el_rd.AppendChild($xml.CreateElement("view")) $el_view.SetAttribute("id", $ViewId) $uri = Get-TableauRequestUri -Endpoint Recommendation -Param dismissals Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' } function Show-TableauViewRecommendation { <# .SYNOPSIS Unhide a Recommendation for a View .DESCRIPTION Unhides a view from being recommended by the server by removing it from the list of views that are dimissed for a user. .PARAMETER ViewId The LUID of the view to be removed from the list of views hidden from recommendation for a user. .EXAMPLE Show-TableauViewRecommendation -ViewId $viewId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#unhide_view_recommendation #> [Alias('Unhide-TableauViewRecommendation')] [OutputType([string])] Param( [Parameter(Mandatory)][string] $ViewId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.7 $uri = Get-TableauRequestUri -Endpoint Recommendation -Param "dismissals/?type=view&id=$ViewId" Invoke-TableauRestMethod -Uri $uri -Method Delete } function Get-TableauCustomView { <# .SYNOPSIS Get Custom View / List Custom Views .DESCRIPTION Gets the details of a specified custom view, or a list of custom views on a site. .PARAMETER CustomViewId (Get Custom View) The LUID for the custom view. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#views Also: Get View by Path - use Get-TableauView with filter viewUrlName:eq:<url> .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#views .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_views_site .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $customView = Get-TableauCustomView -CustomViewId $id .EXAMPLE $views = Get-TableauCustomView -Filter "name:eq:Overview" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_custom_view .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#list_custom_views #> [Alias('Query-TableauCustomView')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='CustomViewById')][string] $CustomViewId, [Parameter(ParameterSetName='CustomViews')][string[]] $Filter, [Parameter(ParameterSetName='CustomViews')][string[]] $Sort, [Parameter(ParameterSetName='CustomViews')][string[]] $Fields, [Parameter(ParameterSetName='CustomViews')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 if ($CustomViewId) { # Get Custom View $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint CustomView -Param $CustomViewId) -Method Get $response.tsResponse.customView } else { # List Custom Views $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint CustomView $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.customViews.customView } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauCustomViewUserDefault { <# .SYNOPSIS List Users with Custom View as Default - Preview Release .DESCRIPTION Gets the list of users whose default view is the specified custom view. Note: This method is currently available as a preview release in some regions. .PARAMETER CustomViewId The LUID for the custom view. .EXAMPLE $users = Get-TableauCustomViewUserDefault -CustomViewId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#list_users_with_custom_view_as_default #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $CustomViewId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $uri = Get-TableauRequestUri -Endpoint CustomView -Param "$CustomViewId/default/users" $response = Invoke-TableauRestMethod -Uri $uri -Method Get return $response.tsResponse.users.user } function Set-TableauCustomViewUserDefault { <# .SYNOPSIS Set Custom View as Default for Users - Preview release .DESCRIPTION Sets the specified custom for as the default view for up to 100 specified users. Note: This method is currently available as a preview release in some regions. .PARAMETER CustomViewId The LUID for the custom view. .PARAMETER UserId List of user LUIDs. .EXAMPLE $result = Set-TableauCustomViewUserDefault -CustomViewId $id -UserId $user1,$user2 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#set_custom_view_as_default_for_users #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $CustomViewId, [Parameter(Mandatory)][string[]] $UserId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_users = $tsRequest.AppendChild($xml.CreateElement("users")) foreach ($id in $UserId) { $el_user = $el_users.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $id) } $uri = Get-TableauRequestUri -Endpoint CustomView -Param "$CustomViewId/default/users" if ($PSCmdlet.ShouldProcess("custom view: $CustomViewId, user: $UserId")) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Post return $response.tsResponse.customViewAsUserDefaultResults.customViewAsUserDefaultViewResult } } function Export-TableauCustomViewImage { <# .SYNOPSIS Get Custom View Image .DESCRIPTION Downloads a .png format image file of a specified custom view. .PARAMETER CustomViewId The LUID of the custom view. .PARAMETER MaxAge (Optional) The maximum number of minutes a view export output will be cached before being refreshed. .PARAMETER Resolution The resolution of the image (high/standard). Image width and actual pixel density are determined by the display context of the image. Aspect ratio is always preserved. Set the value to high to ensure maximum pixel density. .PARAMETER OutFile (Optional) Filename where the download is saved. If not provided, the downloaded content is piped to the output. .PARAMETER ViewFilters Filter expression to modify the view data returned. The expression uses fields in the underlying workbook data to define the filter. To filter a view using a field, add one or more query parameters to your method call, structured as key=value pairs, prefaced by the constant 'vf_' https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#Filter-query-views .EXAMPLE Export-TableauCustomViewImage -CustomViewId $id -OutFile "export.png" -Resolution high .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#get_custom_view_image #> [Alias('Download-TableauCustomViewImage')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $CustomViewId, [Parameter()][int] $MaxAge, [Parameter()][ValidateSet('standard','high')][string] $Resolution = "high", [Parameter()][string] $OutFile, [Parameter()][hashtable] $ViewFilters ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint CustomView -Param $CustomViewId $uriParam = @{} $uri += "/image" if ($Resolution -eq "high") { $uriParam.Add('resolution', $Resolution) } if ($MaxAge) { $uriParam.Add('maxAge', $MaxAge) } if ($ViewFilters) { $ViewFilters.GetEnumerator() | ForEach-Object { $uriParam.Add("vf_"+$_.Key, $_.Value) } } Invoke-TableauRestMethod -Uri $uri -Body $uriParam -Method Get -TimeoutSec 600 @OutFileParam } function Set-TableauCustomView { <# .SYNOPSIS Update Custom View .DESCRIPTION Changes the owner or name of an existing custom view. .PARAMETER CustomViewId The LUID for the custom view being updated. .PARAMETER NewName (Optional) The new name of the custom view that replaces the existing one. .PARAMETER NewOwnerId (Optional) The LUID of the new owner of custom view that replaces the existing one. .EXAMPLE $result = Set-TableauCustomView -CustomViewId $id -Name "My Custom View" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#update_custom_view #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauCustomView')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $CustomViewId, [Parameter()][string] $NewName, [Parameter()][string] $NewOwnerId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_cview = $tsRequest.AppendChild($xml.CreateElement("customView")) if ($NewName) { $el_cview.SetAttribute("name", $NewName) } if ($NewOwnerId) { $el_owner = $el_cview.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $NewOwnerId) } if ($PSCmdlet.ShouldProcess($CustomViewId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint CustomView -Param $CustomViewId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.customView } } function Remove-TableauCustomView { <# .SYNOPSIS Delete Custom View .DESCRIPTION Deletes the specified custom view. .PARAMETER CustomViewId The LUID for the custom view being removed. .EXAMPLE Remove-TableauCustomView -CustomViewId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#delete_custom_view #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $CustomViewId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 if ($PSCmdlet.ShouldProcess($CustomViewId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint CustomView -Param $CustomViewId) -Method Delete } } function Get-TableauViewUrl { <# .SYNOPSIS Get View URL .DESCRIPTION Returns the full URL of the specified view. .PARAMETER ViewId The LUID of the specified view. Either ViewId or ContentUrl needs to be provided. .PARAMETER ContentUrl The content URL of the specified view. Either ViewId or ContentUrl needs to be provided. .EXAMPLE Get-TableauViewUrl -ViewId $view.id #> [OutputType([string])] Param( [Parameter(Mandatory,ParameterSetName='ViewId')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='ContentUrl')][string] $ContentUrl ) if ($ViewId) { $view = Get-TableauView -ViewId $ViewId $ContentUrl = $view.contentUrl } $currentSite = Get-TableauSite -Current $viewUrl = $script:TableauServerUrl + "/#/" if ($currentSite.contentUrl) { # non-default site $viewUrl += "site/" + $currentSite.contentUrl } $viewUrl += "/views/" + $ContentUrl.Replace("/sheets/","/") return $viewUrl } ### Flows methods function Get-TableauFlow { <# .SYNOPSIS Query Flow / Query Flows / Query Flow Revisions .DESCRIPTION Returns information about the specified flow, or flows. .PARAMETER FlowId (Query Flow by Id) The LUID of the flow. .PARAMETER Revisions (Get Flow Revisions) Boolean switch, if supplied, the flow revisions are returned. Note: reserved for future use, flow revisions are currently not supported via REST API .PARAMETER OutputSteps (Optional, Query Flow) Boolean switch, if supplied, the flow output steps are returned, instead of flow. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#flows .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#flows .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_flows .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $flow = Get-TableauFlow -FlowId $flowId .EXAMPLE $outputSteps = Get-TableauFlow -FlowId $flowId -OutputSteps .EXAMPLE $flows = Get-TableauFlow -Filter "name:eq:$flowName" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flow .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flows_for_site #> [Alias('Query-TableauFlow')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='FlowById')] [Parameter(Mandatory,ParameterSetName='FlowRevisions')] [string] $FlowId, [Parameter(Mandatory,ParameterSetName='FlowRevisions')][switch] $Revisions, # Note: flow revisions currently not supported via REST API [Parameter(ParameterSetName='FlowById')][switch] $OutputSteps, [Parameter(ParameterSetName='Flows')][string[]] $Filter, [Parameter(ParameterSetName='Flows')][string[]] $Sort, [Parameter(ParameterSetName='Flows')][string[]] $Fields, [Parameter(ParameterSetName='Flows')] [Parameter(ParameterSetName='FlowRevisions')] [ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 if ($Revisions) { # Get Flow Revisions $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId/revisions $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.revisions.revision } until ($PageSize*$pageNumber -ge $totalAvailable) } elseif ($FlowId) { # Get Flow $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId) -Method Get if ($OutputSteps) { # Get Flow, return output steps $response.tsResponse.flowOutputSteps.flowOutputStep } else { # Get Flow $response.tsResponse.flow } } else { # Query Flows on Site $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Flow $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.flows.flow } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauFlowsForUser { <# .SYNOPSIS Query Flows for User .DESCRIPTION Returns the flows that the specified user owns or has read (view) permissions for. .PARAMETER UserId The LUID of the user to get flows for. .PARAMETER IsOwner (Optional) Boolean switch, if supplied, returns only flows that the specified user owns. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $flows = Get-TableauFlowsForUser -UserId (Get-TableauCurrentUserId) .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flows_for_user #> [Alias('Query-TableauFlowsForUser')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][switch] $IsOwner, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint User -Param $UserId/flows $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" if ($IsOwner) { $uri += "&ownedBy=true" } $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.flows.flow } until ($PageSize*$pageNumber -ge $totalAvailable) } function Get-TableauFlowConnection { <# .SYNOPSIS Query Flow Connections .DESCRIPTION Returns a list of data connections for the specific flow. .PARAMETER FlowId The LUID of the flow to return connection information about. .EXAMPLE $connections = Get-TableauFlowConnection -FlowId $flowId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flow_connections #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $FlowId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId/connections) -Method Get return $response.tsResponse.connections.connection } function Set-TableauFlowConnection { <# .SYNOPSIS Update Flow Connection .DESCRIPTION Updates the server address, port, username, or password for the specified flow connection. .PARAMETER FlowId The LUID of the data source to update. .PARAMETER ConnectionId The LUID of the connection to update. .PARAMETER ServerAddress (Optional) The new server address of the connection. .PARAMETER ServerPort (Optional) The new server port of the connection. .PARAMETER Username (Optional) The new user name of the connection. .PARAMETER SecurePassword (Optional) The new password of the connection, should be supplied as SecurePassword. .PARAMETER EmbedPassword (Optional) Boolean switch, if supplied, the connection password is embedded. .EXAMPLE $flowConnection = Set-TableauFlowConnection -FlowId $flow.id -ConnectionId $connectionId -ServerAddress myserver.com .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#update_flow_connection #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauFlowConnection')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowId, [Parameter(Mandatory)][string] $ConnectionId, [Parameter()][string] $ServerAddress, [Parameter()][string] $ServerPort, [Parameter()][string] $Username, [Parameter()][securestring] $SecurePassword, [Parameter()][switch] $EmbedPassword ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_connection = $tsRequest.AppendChild($xml.CreateElement("connection")) if ($ServerAddress) { $el_connection.SetAttribute("serverAddress", $ServerAddress) } if ($ServerPort) { $el_connection.SetAttribute("serverPort", $ServerPort) } if ($Username) { $el_connection.SetAttribute("userName", $Username) } if ($SecurePassword) { $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password $el_connection.SetAttribute("password", $private:PlainPassword) } if ($PSBoundParameters.ContainsKey('EmbedPassword')) { $el_connection.SetAttribute("embedPassword", $EmbedPassword) } $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId/connections/$ConnectionId if ($PSCmdlet.ShouldProcess($ConnectionId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.connection } } function Export-TableauFlow { <# .SYNOPSIS Download Flow .DESCRIPTION Downloads a flow in .tfl or .tflx format. .PARAMETER FlowId The LUID of the flow to download. .PARAMETER OutFile (Optional) Filename where the download is saved. If not provided, the downloaded content is piped to the output. .PARAMETER Revision (Optional) If revision number is specified, this revision will be downloaded. Note: reserved for future use, flow revisions are currently not supported via REST API .EXAMPLE Export-TableauFlow -FlowId $sampleflowId -OutFile "Flow.tflx" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#download_flow #> [Alias('Download-TableauFlow')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowId, [Parameter()][string] $OutFile, [Parameter()][int] $Revision ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $OutFileParam = @{} if ($OutFile) { $OutFileParam.Add("OutFile", $OutFile) } $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId if ($Revision) { $lastRevision = Get-TableauFlow -FlowId $FlowId -Revisions | Sort-Object revisionNumber -Descending | Select-Object -First 1 -ExpandProperty revisionNumber # Note that the current revision of a flow cannot be accessed by the /revisions endpoint; in this case we ignore the -Revision parameter if ($Revision -lt $lastRevision) { $uri += "/revisions/$Revision" } } $uri += "/content" Invoke-TableauRestMethod -Uri $uri -Method Get -TimeoutSec 600 @OutFileParam } function Publish-TableauFlow { <# .SYNOPSIS Publish Flow .DESCRIPTION Publishes a flow on the current site. .PARAMETER InFile The filename (incl. path) of the flow to upload and publish. .PARAMETER Name The name for the published flow. .PARAMETER FileName (Optional) The filename (without path) that is included into the request payload. If omitted, the filename is derived from the InFile parameter. .PARAMETER FileType (Optional) The file type of the flow file. If omitted, the file type is derived from the Filename parameter. .PARAMETER ProjectId (Optional) The LUID of the project to assign the flow to. If the project is not specified, the flow will be published to the default project. .PARAMETER Overwrite (Optional) Boolean switch, if supplied, the flow will be overwritten (otherwise existing published flow with the same name is not overwritten). .PARAMETER Chunked (Optional) Boolean switch, if supplied, the publish process is forced to run as chunked. By default, the payload is send in one request for files < 64MB size. This can be helpful if timeouts occur during upload. .PARAMETER Connections (Optional) Hashtable array containing connection attributes and credentials (see online help). .EXAMPLE $flow = Publish-TableauFlow -Name $sampleFlowName -InFile "Flow.tflx" -ProjectId $projectId -Overwrite .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#publish_flow #> [Alias('Upload-TableauFlow')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $InFile, [Parameter(Mandatory)][string] $Name, [Parameter()][string] $FileName, [Parameter()][string] $FileType, [Parameter()][string] $ProjectId, [Parameter()][switch] $Overwrite, [Parameter()][switch] $Chunked, # [Parameter()][hashtable] $Credentials, # connectionCredentials is not supported in this API method [Parameter()][hashtable[]] $Connections ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $fileItem = Get-Item -LiteralPath $InFile if (-Not $FileName) { $FileName = $fileItem.Name -replace '["`]','' # remove special chars } if (-Not $FileType) { $FileType = $fileItem.Extension.Substring(1) } if ($FileType -eq 'zip') { $FileType = 'tflx' $FileName = $FileName -ireplace 'zip$','tflx' } elseif ($FileType -eq 'xml') { $FileType = 'tfl' $FileName = $FileName -ireplace 'xml$','tfl' } if (-Not ($FileType -In @("tfl", "tflx"))) { throw "File type unsupported (supported types are: tfl, tflx)" } if ($FileName -match '[^\x20-\x7e]') { # special non-ASCII characters in the filename cause issues on some API versions Write-Verbose "Filename $FileName contains special characters, replacing with tableau_flow.$FileType" $FileName = "tableau_flow.$FileType" # fallback to standard filename (doesn't matter for file upload) } if ($fileItem.Length -ge $script:TableauRestFileSizeLimit) { $Chunked = $true } $uri = Get-TableauRequestUri -Endpoint Flow $uri += "?flowType=$FileType" if ($Overwrite) { $uri += "&overwrite=true" } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_flow = $tsRequest.AppendChild($xml.CreateElement("flow")) $el_flow.SetAttribute("name", $Name) # if ($Credentials) { # Add-TableauRequestCredentialsElement -Element $tsRequest -Credentials $Credentials # } if ($Connections) { Add-TableauRequestConnectionsElement -Element $tsRequest -Connections $Connections } if ($ProjectId) { $el_project = $el_flow.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $ProjectId) } $boundaryString = (New-Guid).ToString("N") if ($PSVersionTable.PSVersion.Major -ge 6) { Write-Verbose "Using MultipartFormDataContent as -Body in Invoke-RestMethod (PS6.0+)" $multipartContent = New-Object System.Net.Http.MultipartFormDataContent($boundaryString) $null = $multipartContent.Headers.Remove("Content-Type") $null = $multipartContent.Headers.TryAddWithoutValidation("Content-Type", "multipart/mixed; boundary=$boundaryString") $stringContent = New-Object System.Net.Http.StringContent($xml.OuterXml, [System.Text.Encoding]::UTF8, [System.Net.Http.Headers.MediaTypeHeaderValue]::Parse("text/xml")) $stringContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $stringContent.Headers.ContentDisposition.Name = "request_payload" $multipartContent.Add($stringContent) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } else { $fileStream = New-Object System.IO.FileStream($fileItem.FullName, [System.IO.FileMode]::Open) try { $fileContent = New-Object System.Net.Http.StreamContent($fileStream) $fileContent.Headers.ContentType = New-Object System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream") $fileContent.Headers.ContentDisposition = New-Object System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") $fileContent.Headers.ContentDisposition.Name = "tableau_flow" $fileContent.Headers.ContentDisposition.FileName = "`"$FileName`"" $multipartContent.Add($fileContent) $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post } finally { $fileStream.Dispose() } } } else { Write-Verbose "Using String as -Body in Invoke-RestMethod (PS5.x)" $bodyLines = @( "--$boundaryString", "Content-Type: text/xml; charset=utf-8", "Content-Disposition: form-data; name=request_payload", "", $xml.OuterXml ) if ($Chunked) { $uploadSessionId = Send-TableauFileUpload -InFile $InFile -FileName $FileName $uri += "&uploadSessionId=$uploadSessionId" } else { $bodyLines += @( "--$boundaryString", "Content-Type: application/octet-stream", "Content-Disposition: form-data; name=tableau_flow; filename=`"$FileName`"", "", [System.Text.Encoding]::GetEncoding("ISO-8859-1").GetString([System.IO.File]::ReadAllBytes($fileItem.FullName)) ) } $bodyLines += "--$boundaryString--" $multipartContent = $bodyLines -join "`r`n" $response = Invoke-TableauRestMethod -Uri $uri -Body $multipartContent -Method Post -ContentType "multipart/mixed; boundary=$boundaryString" } return $response.tsResponse.flow } function Set-TableauFlow { <# .SYNOPSIS Update Flow .DESCRIPTION Updates the owner, project, of the specified flow. .PARAMETER FlowId The LUID of the flow to update. .PARAMETER NewProjectId (Optional) The LUID of a project to add the flow to. .PARAMETER NewOwnerId (Optional) The LUID of a user to assign the flow to as owner. .EXAMPLE $flow = Set-TableauFlow -FlowId $flow.id -NewProjectId $project.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#update_flow #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauFlow')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowId, [Parameter()][string] $NewProjectId, [Parameter()][string] $NewOwnerId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_flow = $tsRequest.AppendChild($xml.CreateElement("flow")) if ($NewProjectId) { $el_project = $el_flow.AppendChild($xml.CreateElement("project")) $el_project.SetAttribute("id", $NewProjectId) } if ($NewOwnerId) { $el_owner = $el_flow.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $NewOwnerId) } if ($PSCmdlet.ShouldProcess($FlowId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.flow } } function Remove-TableauFlow { <# .SYNOPSIS Delete Flow .DESCRIPTION Deletes a flow. When a flow is deleted, its associated connections, the output and input steps, any associated scheduled tasks, and run history are also deleted. .PARAMETER FlowId The LUID of the flow to delete. .PARAMETER Revision (Optional) If revision number is specified, this revision will be removed. Note: reserved for future use, flow revisions are currently not supported via REST API .EXAMPLE Remove-TableauFlow -FlowId $sampleFlowId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#delete_flow #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowId, [Parameter()][int] $Revision # Note: flow revisions currently not supported via REST API ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 if ($Revision) { # Remove Flow Revision if ($PSCmdlet.ShouldProcess("$FlowId, revision $Revision")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $FlowId/revisions/$Revision) -Method Delete } } else { # Remove Flow if ($PSCmdlet.ShouldProcess($FlowId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId) -Method Delete } } } function Start-TableauFlowNow { <# .SYNOPSIS Run Flow Now .DESCRIPTION Runs the specified flow (asynchronously). .PARAMETER FlowId The LUID of the flow to run. .PARAMETER RunMode (Optional) The mode to use for running this flow, either 'full' or 'incremental'. Default is 'full'. .PARAMETER OutputStepId (Optional) The LUID of the output steps you want to run. .PARAMETER FlowParams (Optional) The hashtable of the flow parameters, with flow parameter IDs and values. .EXAMPLE $job = Start-TableauFlowNow -FlowId $flow.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#run_flow_now #> [CmdletBinding(SupportsShouldProcess)] [Alias('Run-TableauFlow')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowId, [Parameter()][ValidateSet('full','incremental')][string] $RunMode = 'full', [Parameter()][string] $OutputStepId, [Parameter()][hashtable] $FlowParams ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.3 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_frs = $tsRequest.AppendChild($xml.CreateElement("flowRunSpec")) $el_frs.SetAttribute("flowId", $FlowId) $el_frs.SetAttribute("runMode", $RunMode) if ($OutputStepId) { $el_steps = $el_frs.AppendChild($xml.CreateElement("flowOutputSteps")) $el_step = $el_steps.AppendChild($xml.CreateElement("flowOutputStep")) $el_step.SetAttribute("id", $OutputStepId) } if ($FlowParams) { Assert-TableauRestVersion -AtLeast 3.15 $el_params = $el_frs.AppendChild($xml.CreateElement("flowParameterSpecs")) $FlowParams.GetEnumerator() | ForEach-Object { $el_param = $el_params.AppendChild($xml.CreateElement("flowParameterSpec")) $el_param.SetAttribute("parameterId", $_.Key) $el_param.SetAttribute("overrideValue", $_.Value) } } $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId/run if ($PSCmdlet.ShouldProcess($FlowId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Post return $response.tsResponse.job } } function Get-TableauFlowRun { <# .SYNOPSIS Get Flow Run / Get Flow Runs .DESCRIPTION Gets a specific flow run details, or flow runs. .PARAMETER FlowRunId (Get Flow Run by Id) The LUID of the flow run. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#flow-runs .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $run = Get-TableauFlowRun -FlowRunId $id .EXAMPLE $runs = Get-TableauFlowRun -Filter "flowId:eq:$($flowRun.flowId)" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_run .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_runs #> [Alias('Query-TableauFlowRun')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='FlowRunById')][string] $FlowRunId, [Parameter(ParameterSetName='FlowRuns')][string[]] $Filter, [Parameter(ParameterSetName='FlowRuns')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.10 if ($FlowRunId) { # Get Flow Run $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param runs/$FlowRunId) -Method Get $response.tsResponse.flowRun } else { # Get Flow Runs $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Flow -Param runs $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.flowRuns.flowRuns } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Stop-TableauFlowRun { <# .SYNOPSIS Cancel Flow Run .DESCRIPTION Cancels a flow run that is in progress. If the flow run was cancelled successfully, $null is returned, otherwise the response error is returned. .PARAMETER FlowRunId The LUID of the flow run. .EXAMPLE Stop-TableauFlowRun -FlowRunId $run.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#cancel_flow_run #> [CmdletBinding(SupportsShouldProcess)] [Alias('Cancel-TableauFlowRun')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $FlowRunId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.10 if ($PSCmdlet.ShouldProcess($FlowRunId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param runs/$FlowRunId) -Method Put -ContentType 'application/xml' if ($response.tsResponse.error) { return $response.tsResponse.error } else { return $null # Flow run cancelled successfully } } } ### Permissions methods function Get-TableauContentPermission { <# .SYNOPSIS Query Workbook / Data Source / View / Project / Flow Permissions .DESCRIPTION Returns a list of permissions for the specific workbook (or data source / view / project / flow). .PARAMETER WorkbookId The LUID of the workbook to get permissions for. .PARAMETER DatasourceId The LUID of the data source to get permissions for. .PARAMETER ViewId The LUID of the view to get permissions for. .PARAMETER ProjectId The LUID of the project to get permissions for. .PARAMETER FlowId The LUID of the flow to get permissions for. .EXAMPLE $permissions = Get-TableauContentPermission -WorkbookId $workbookId .EXAMPLE $permissions = Get-TableauContentPermission -DatasourceId $datasourceId .EXAMPLE $permissions = Get-TableauContentPermission -ProjectId $project.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_workbook_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_data_source_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_view_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_project_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flow_permissions #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Project')][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId ) Assert-TableauAuthToken if ($WorkbookId) { $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId } elseif ($DatasourceId) { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId } elseif ($ViewId) { Assert-TableauRestVersion -AtLeast 3.2 $uri = Get-TableauRequestUri -Endpoint View -Param $ViewId } elseif ($ProjectId) { $uri = Get-TableauRequestUri -Endpoint Project -Param $ProjectId } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId } $uri += "/permissions" $response = Invoke-TableauRestMethod -Uri $uri -Method Get return $response.tsResponse.permissions } function Add-TableauContentPermission { <# .SYNOPSIS Add Workbook / Data Source / View / Project / Flow Permissions .DESCRIPTION Adds permissions to the specified content for list of grantees (Tableau user or group). You can specify multiple sets of permissions using one call. .PARAMETER WorkbookId The LUID of the workbook to add permissions for. .PARAMETER DatasourceId The LUID of the data source to add permissions for. .PARAMETER ViewId The LUID of the view to add permissions for. .PARAMETER ProjectId The LUID of the project to add permissions for. .PARAMETER FlowId The LUID of the flow to add permissions for. .PARAMETER PermissionTable A list of permissions (hashtable), each item must be structured as follows: - granteeType: 'user' or 'group' - granteeId: the LUID of the user or group - capabilities: hashtable with all permissions to add, the key is capability name and the value is allow or deny Note: existing capabilities are not removed. .EXAMPLE $permissions = Add-TableauContentPermission -WorkbookId $workbook.id -PermissionTable @{granteeType="User"; granteeId=(Get-TableauCurrentUserId); capabilities=@{Read="Allow"}} .EXAMPLE $permissions = Add-TableauContentPermission -FlowId $flow.id -PermissionTable @{granteeType="User"; granteeId=(Get-TableauCurrentUserId); capabilities=@{Execute="Allow"}} .NOTES This method uses the corresponding REST API method directly. This implies that existing permissions which are conflicting with the permissions to be added, the response will be an error. To fall back to override existing permissions, and to use permission templates, check Set-TableauContentPermission. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_workbook_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_data_source_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_view_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_project_permissions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#query_flow_permissions #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Project')][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId, [Parameter(Mandatory)][hashtable[]] $PermissionTable ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_pm = $tsRequest.AppendChild($xml.CreateElement("permissions")) if ($WorkbookId) { $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId # $el_pm.AppendChild($xml.CreateElement("workbook")).SetAttribute("id", $WorkbookId) $shouldProcessItem = "workbook:$WorkbookId" } elseif ($DatasourceId) { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId # $el_pm.AppendChild($xml.CreateElement("datasource")).SetAttribute("id", $DatasourceId) $shouldProcessItem = "datasource:$DatasourceId" } elseif ($ViewId) { Assert-TableauRestVersion -AtLeast 3.2 $uri = Get-TableauRequestUri -Endpoint View -Param $ViewId # $el_pm.AppendChild($xml.CreateElement("view")).SetAttribute("id", $ViewId) $shouldProcessItem = "view:$ViewId" } elseif ($ProjectId) { $uri = Get-TableauRequestUri -Endpoint Project -Param $ProjectId # $el_pm.AppendChild($xml.CreateElement("project")).SetAttribute("id", $ProjectId) $shouldProcessItem = "project:$ProjectId" } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId # $el_pm.AppendChild($xml.CreateElement("flow")).SetAttribute("id", $FlowId) $shouldProcessItem = "flow:$FlowId" } $uri += "/permissions" $permissionsCount = 0 foreach ($permission in $PermissionTable) { $el_gc = $el_pm.AppendChild($xml.CreateElement("granteeCapabilities")) $el_gc.AppendChild($xml.CreateElement($permission.granteeType.ToLower())).SetAttribute("id", $permission.granteeId) $el_caps = $el_gc.AppendChild($xml.CreateElement("capabilities")) $permissionsCount += $permission.capabilities.Count $permission.capabilities.GetEnumerator() | ForEach-Object { $el_cap = $el_caps.AppendChild($xml.CreateElement("capability")) $el_cap.SetAttribute("name", $_.Key) $el_cap.SetAttribute("mode", $_.Value) } } $shouldProcessItem += ", grantees:{0}, permissions:{1}" -f $PermissionTable.Length, $permissionsCount if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.permissions } } function Set-TableauContentPermission { <# .SYNOPSIS Set Workbook / Data Source / View / Project / Flow Permissions .DESCRIPTION Sets permissions to the specified content for list of grantees (Tableau user or group). This method is a wrapper for Set-TableauContentPermission with support for overriding conflicting permissions and permission templates. You can specify multiple sets of permissions using one call, and use permission templates (similar to Tableau Server UI). .PARAMETER WorkbookId The LUID of the workbook to set permissions for. .PARAMETER DatasourceId The LUID of the data source to set permissions for. .PARAMETER ViewId The LUID of the view to set permissions for. .PARAMETER ProjectId The LUID of the project to set permissions for. .PARAMETER FlowId The LUID of the flow to set permissions for. .PARAMETER PermissionTable A list of permissions (hashtable), each item must be structured as follows: - granteeType: 'user' or 'group' - granteeId: the LUID of the user or group - capabilities: hashtable with all permissions to add, the key is capability name and the value is allow or deny Note: existing capabilities are removed for the same capability names, but other capabilities are untouched. - template: can be used instead of 'capabilities'. This corresponds to selecting "Template" in Tableau Server UI. The following templates are supported: View, Explore, Publish, Administer, Denied, None Note: existing capabilities are removed for the grantee, if template is used. .EXAMPLE $permissions = Set-TableauContentPermission -ProjectId $projectId -PermissionTable @{granteeType="User"; granteeId=(Get-TableauCurrentUserId); capabilities=@{Read="Allow"}} .EXAMPLE $permissions = Set-TableauContentPermission -DatasourceId $datasourceId -PermissionTable @{granteeType="Group"; granteeId=$groupId; template='Publish'} .NOTES This method is similar to Add-TableauContentPermission, but it can also override existing permissions, and supports permission templates. #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Project')][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId, [Parameter(Mandatory)][hashtable[]] $PermissionTable ) Assert-TableauAuthToken $MainParam = @{} if ($WorkbookId) { $shouldProcessItem = "workbook:$WorkbookId" $MainParam.Add("WorkbookId", $WorkbookId) } elseif ($DatasourceId) { $shouldProcessItem = "datasource:$DatasourceId" $MainParam.Add("DatasourceId", $DatasourceId) } elseif ($ViewId) { Assert-TableauRestVersion -AtLeast 3.2 $shouldProcessItem = "view:$ViewId" $MainParam.Add("ViewId", $ViewId) } elseif ($ProjectId) { $shouldProcessItem = "project:$ProjectId" $MainParam.Add("ProjectId", $ProjectId) } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $shouldProcessItem = "flow:$FlowId" $MainParam.Add("FlowId", $FlowId) } $permissionsCount = 0 $permissionOverrides = @() $currentPermissionTable = Get-TableauContentPermission @MainParam | ConvertTo-TableauPermissionTable $addPermissionTable = @() foreach ($permission in $PermissionTable) { if ($permission.capabilities) { $permissionsCount += $permission.capabilities.Count $currentPermissionTable | Where-Object -FilterScript {($_.granteeType -eq $permission.granteeType) -and ($_.granteeId -eq $permission.granteeId)} | ForEach-Object { $currentCapabilities = $_.capabilities $currentCapabilities.GetEnumerator() | ForEach-Object { $capabilityName = $_.Key $capabilityMode = $_.Value if ($permission.capabilities.ContainsKey($capabilityName) -and $capabilityMode -ne $permission.capabilities[$capabilityName]) { $permissionOverrides += @{granteeType=$permission.granteeType; granteeId=$permission.granteeId; capabilityName=$capabilityName; capabilityMode=$capabilityMode} } } } $addPermissionTable += $permission } elseif ($permission.template) { # support for permission templates switch ($permission.template) { 'View' { if ($WorkbookId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData' } elseif ($ViewId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData' } elseif ($DatasourceId) { $capabilities = 'Read','Connect' } elseif ($FlowId) { $capabilities = 'Read' } elseif ($ProjectId) { $capabilities = 'Read' } } 'Explore' { if ($WorkbookId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData' } elseif ($ViewId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring' } elseif ($DatasourceId) { $capabilities = 'Read','Connect','ExportXml' } elseif ($FlowId) { $capabilities = 'Read','ExportXml' } elseif ($ProjectId) { $capabilities = 'Read' # fallback to View } } 'Publish' { if ($WorkbookId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData','ExportXml','Write','CreateRefreshMetrics' } elseif ($ViewId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring' # fallback to Explore } elseif ($DatasourceId) { $capabilities = 'Read','Connect','ExportXml','Write','SaveAs' } elseif ($FlowId) { $capabilities = 'Read','ExportXml','Execute','Write','WebAuthoringForFlows' } elseif ($ProjectId) { $capabilities = 'Read','Write' } } {$_ -in 'Administer','Denied'} { # full capabilities for both cases if ($WorkbookId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData','ExportXml','Write','CreateRefreshMetrics','ChangeHierarchy','Delete','ChangePermissions' } elseif ($ViewId) { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','Delete','ChangePermissions' } elseif ($DatasourceId) { $capabilities = 'Read','Connect','ExportXml','Write','SaveAs','ChangeHierarchy','Delete','ChangePermissions' } elseif ($FlowId) { $capabilities = 'Read','ExportXml','Execute','Write','WebAuthoringForFlows','ChangeHierarchy','Delete','ChangePermissions' } elseif ($ProjectId) { $capabilities = 'Read','Write' } } default { # incl. None $capabilities = @() } } $permissionsCount += $capabilities.Length $currentPermissionTable | Where-Object -FilterScript {($_.granteeType -eq $permission.granteeType) -and ($_.granteeId -eq $permission.granteeId)} | ForEach-Object { $currentCapabilities = $_.capabilities $currentCapabilities.GetEnumerator() | ForEach-Object { $capabilityName = $_.Key $capabilityMode = $_.Value if ((-not ($capabilities -Contains $capabilityName)) -or (($permission.template -ne 'Denied' -and $capabilityMode -ne 'Allow') -or ($permission.template -eq 'Denied' -and $capabilityMode -ne 'Deny'))) { $permissionOverrides += @{granteeType=$permission.granteeType; granteeId=$permission.granteeId; capabilityName=$capabilityName; capabilityMode=$capabilityMode} } } } $capabilitiesHashtable = @{} foreach ($cap in $capabilities) { if ($permission.template -eq 'Denied') { $mode = "Deny" } else { $mode = "Allow" } $capabilitiesHashtable.Add($cap, $mode) } $addPermissionTable += @{granteeType=$permission.granteeType; granteeId=$permission.granteeId; capabilities=$capabilitiesHashtable} } } $shouldProcessItem += ", grantees:{0}, permissions:{1}, overrides:{2}" -f $PermissionTable.Length, $permissionsCount, $permissionOverrides.Length if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $permissionOverrides | ForEach-Object { # remove all existing incompatible permissions (or that are not included in the permission template) Remove-TableauContentPermission @MainParam -GranteeType $_.granteeType -GranteeId $_.granteeId -CapabilityName $_.capabilityName -CapabilityMode $_.capabilityMode } Add-TableauContentPermission @MainParam -PermissionTable $addPermissionTable } } function Remove-TableauContentPermission { <# .SYNOPSIS Delete Workbook / Data Source / View / Project / Flow Permission .DESCRIPTION Deletes the specified permission (or all permissions) from the specified content for a specific grantee or all grantees. .PARAMETER WorkbookId The LUID of the workbook to set permissions for. .PARAMETER DatasourceId The LUID of the data source to set permissions for. .PARAMETER ViewId The LUID of the view to set permissions for. .PARAMETER ProjectId The LUID of the project to set permissions for. .PARAMETER FlowId The LUID of the flow to set permissions for. .PARAMETER GranteeType Delete permission(s) for specific grantee: the grantee type (User or Group). .PARAMETER GranteeId Delete permission(s) for specific grantee: the LUID of the user or group. .PARAMETER CapabilityName Delete permission(s) for specific grantee: the name of the capability to remove. If this parameter is not provided, all existing permissions for the grantee will be deleted. .PARAMETER CapabilityMode Delete permission(s) for specific grantee: the mode of the capability to remove (Allow or Deny). If this parameter is not provided, all existing permissions for the grantee will be deleted. .PARAMETER All Explicit boolean switch, supply this to delete ALL permissions for ALL grantees. .EXAMPLE Remove-TableauContentPermission -WorkbookId $sampleWorkbookId -All .EXAMPLE Remove-TableauContentPermission -DatasourceId $datasource.id -GranteeType User -GranteeId (Get-TableauCurrentUserId) .EXAMPLE Remove-TableauContentPermission -FlowId $flow.id -GranteeType User -GranteeId (Get-TableauCurrentUserId) -CapabilityName Execute -CapabilityMode Allow .NOTES This function always returns $null. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#delete_workbook_permission .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#delete_data_source_permission .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#delete_view_permission .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#delete_project_permission .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#delete_flow_permission #> [CmdletBinding(SupportsShouldProcess)] [OutputType()] Param( [Parameter(Mandatory,ParameterSetName='WorkbookAll')] [Parameter(Mandatory,ParameterSetName='WorkbookAllGrantee')] [Parameter(Mandatory,ParameterSetName='WorkbookOne')] [string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='DatasourceAll')] [Parameter(Mandatory,ParameterSetName='DatasourceAllGrantee')] [Parameter(Mandatory,ParameterSetName='DatasourceOne')] [string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='ViewAll')] [Parameter(Mandatory,ParameterSetName='ViewAllGrantee')] [Parameter(Mandatory,ParameterSetName='ViewOne')] [string] $ViewId, [Parameter(Mandatory,ParameterSetName='ProjectAll')] [Parameter(Mandatory,ParameterSetName='ProjectAllGrantee')] [Parameter(Mandatory,ParameterSetName='ProjectOne')] [string] $ProjectId, [Parameter(Mandatory,ParameterSetName='FlowAll')] [Parameter(Mandatory,ParameterSetName='FlowAllGrantee')] [Parameter(Mandatory,ParameterSetName='FlowOne')] [string] $FlowId, [Parameter(Mandatory,ParameterSetName='WorkbookAllGrantee')] [Parameter(Mandatory,ParameterSetName='WorkbookOne')] [Parameter(Mandatory,ParameterSetName='DatasourceAllGrantee')] [Parameter(Mandatory,ParameterSetName='DatasourceOne')] [Parameter(Mandatory,ParameterSetName='ViewAllGrantee')] [Parameter(Mandatory,ParameterSetName='ViewOne')] [Parameter(Mandatory,ParameterSetName='ProjectAllGrantee')] [Parameter(Mandatory,ParameterSetName='ProjectOne')] [Parameter(Mandatory,ParameterSetName='FlowAllGrantee')] [Parameter(Mandatory,ParameterSetName='FlowOne')] [ValidateSet('User','Group')][string] $GranteeType, [Parameter(Mandatory,ParameterSetName='WorkbookAllGrantee')] [Parameter(Mandatory,ParameterSetName='WorkbookOne')] [Parameter(Mandatory,ParameterSetName='DatasourceAllGrantee')] [Parameter(Mandatory,ParameterSetName='DatasourceOne')] [Parameter(Mandatory,ParameterSetName='ViewAllGrantee')] [Parameter(Mandatory,ParameterSetName='ViewOne')] [Parameter(Mandatory,ParameterSetName='ProjectAllGrantee')] [Parameter(Mandatory,ParameterSetName='ProjectOne')] [Parameter(Mandatory,ParameterSetName='FlowAllGrantee')] [Parameter(Mandatory,ParameterSetName='FlowOne')] [string] $GranteeId, [Parameter(Mandatory,ParameterSetName='WorkbookOne')] [Parameter(Mandatory,ParameterSetName='DatasourceOne')] [Parameter(Mandatory,ParameterSetName='ViewOne')] [Parameter(Mandatory,ParameterSetName='ProjectOne')] [Parameter(Mandatory,ParameterSetName='FlowOne')] [ValidateSet('AddComment','ChangeHierarchy','ChangePermissions','Connect','Delete','Execute','WebAuthoringForFlows', 'ExportData','ExportImage','ExportXml','Filter','ProjectLeader','Read','ShareView','ViewComments','ViewUnderlyingData', 'WebAuthoring','Write','RunExplainData','CreateRefreshMetrics','SaveAs')][string] $CapabilityName, [Parameter(Mandatory,ParameterSetName='WorkbookOne')] [Parameter(Mandatory,ParameterSetName='DatasourceOne')] [Parameter(Mandatory,ParameterSetName='ViewOne')] [Parameter(Mandatory,ParameterSetName='ProjectOne')] [Parameter(Mandatory,ParameterSetName='FlowOne')] [ValidateSet('Allow','Deny')][string] $CapabilityMode, [Parameter(Mandatory,ParameterSetName='WorkbookAll')] [Parameter(Mandatory,ParameterSetName='DatasourceAll')] [Parameter(Mandatory,ParameterSetName='ViewAll')] [Parameter(Mandatory,ParameterSetName='ProjectAll')] [Parameter(Mandatory,ParameterSetName='FlowAll')] [switch] $All ) Assert-TableauAuthToken $MainParam = @{} if ($WorkbookId) { $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId $shouldProcessItem = "workbook:$WorkbookId" $MainParam.Add("WorkbookId", $WorkbookId) } elseif ($DatasourceId) { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId $shouldProcessItem = "datasource:$DatasourceId" $MainParam.Add("DatasourceId", $DatasourceId) } elseif ($ViewId) { Assert-TableauRestVersion -AtLeast 3.2 $uri = Get-TableauRequestUri -Endpoint View -Param $ViewId $shouldProcessItem = "view:$ViewId" $MainParam.Add("ViewId", $ViewId) } elseif ($ProjectId) { $uri = Get-TableauRequestUri -Endpoint Project -Param $ProjectId $shouldProcessItem = "project:$ProjectId" $MainParam.Add("ProjectId", $ProjectId) } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $uri = Get-TableauRequestUri -Endpoint Flow -Param $FlowId $shouldProcessItem = "flow:$FlowId" $MainParam.Add("FlowId", $FlowId) } $uri += "/permissions/" if ($CapabilityName -and $CapabilityMode) { # Remove one permission/capability $shouldProcessItem += ", {0}:{1}, {2}:{3}" -f $GranteeType, $GranteeId, $CapabilityName, $CapabilityMode $uriAdd = "{0}s/{1}/{2}/{3}" -f $GranteeType.ToLower(), $GranteeId, $CapabilityName, $CapabilityMode if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } elseif ($GranteeType -and $GranteeId) { # Remove all permissions for one grantee $shouldProcessItem += ", all permissions for {0}:{1}" -f $GranteeType, $GranteeId if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $permissions = Get-TableauContentPermission @MainParam if ($permissions.granteeCapabilities) { $permissions.granteeCapabilities | ForEach-Object { if (($GranteeType -eq 'Group' -and $_.group -and $_.group.id -eq $GranteeId) -or ($GranteeType -eq 'User' -and $_.user -and $_.user.id -eq $GranteeId)) { $_.capabilities.capability | ForEach-Object { $uriAdd = "{0}s/{1}/{2}/{3}" -f $GranteeType.ToLower(), $GranteeId, $_.name, $_.mode $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } } } } } elseif ($All) { # Remove all permissions for all grantees $shouldProcessItem += ", ALL PERMISSIONS" if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $permissions = Get-TableauContentPermission @MainParam if ($permissions.granteeCapabilities) { $permissions.granteeCapabilities | ForEach-Object { if ($_.group) { $grtType = 'group' $grtId = $_.group.id } elseif ($_.user) { $grtType = 'user' $grtId = $_.user.id } $_.capabilities.capability | ForEach-Object { $uriAdd = "{0}s/{1}/{2}/{3}" -f $grtType, $grtId, $_.name, $_.mode $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } } } } } function ConvertTo-TableauPermissionTable { <# .SYNOPSIS Convert permissions response into "PermissionTable" .DESCRIPTION Converts the response of permission methods into the list-hashtable which can be used as input (PermissionTable) for: - Add-TableauContentPermission - Set-TableauContentPermission .PARAMETER Permissions XmlElement with the input raw data. .EXAMPLE $currentPermissionTable = Get-TableauContentPermission -WorkbookId $sampleWorkbookId | ConvertTo-TableauPermissionTable .NOTES The following functions can be used as input for ConvertTo-TableauPermissionTable: - Get-TableauContentPermission - Add-TableauContentPermission - Set-TableauContentPermission #> [OutputType([hashtable[]])] Param( [Parameter(Mandatory,Position=0,ValueFromPipeline)][System.Xml.XmlElement] $Permissions ) begin { $permissionTable = @() } process { if ($Permissions.granteeCapabilities) { $Permissions.granteeCapabilities | ForEach-Object { if ($_.group -and $_.group.id) { $granteeType = 'group' $granteeId = $_.group.id } elseif ($_.user -and $_.user.id) { $granteeType = 'user' $granteeId = $_.user.id } else { Write-Error "Invalid grantee in the input object" -Category InvalidData -ErrorAction Continue } $capabilitiesHashtable = @{} $_.capabilities.capability | ForEach-Object { if ($_.name -and $_.mode) { $capabilitiesHashtable.Add($_.name, $_.mode) } else { Write-Error "Invalid permission capability in the input object" -Category InvalidData -ErrorAction Continue } } $permissionTable += @{granteeType=$granteeType; granteeId=$granteeId; capabilities=$capabilitiesHashtable} } } } end { return $permissionTable } } function Get-TableauDefaultPermission { <# .SYNOPSIS Query Default Permissions .DESCRIPTION Returns details of default permission rules granted to users and groups for workbooks, data sources, flows, data roles, lenses, metrics, databases or tables resources in a specific project. Return object is a list of hashtables (similar to the output of ConvertTo-TableauPermissionTable) .PARAMETER ProjectId The LUID of the project to get default permissions for. .PARAMETER ContentType Specific content type to query default permission for. If omitted, the default permissions for all supported content types are returned. .EXAMPLE $defProjectPermissions = Get-TableauDefaultPermission -ProjectId $project.id $wbPermissionTable = Get-TableauDefaultPermission -ProjectId $project.id -ContentType workbooks .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_default_permissions #> [OutputType([hashtable[]])] Param( [Parameter(Mandatory)][string] $ProjectId, [Parameter()][ValidateSet('Workbooks','Datasources','Flows','Dataroles','Lenses','Metrics','Databases','Tables')][string] $ContentType ) Assert-TableauAuthToken $permissionTable = @() $uri = Get-TableauRequestUri -Endpoint Project -Param "$ProjectId/default-permissions/" foreach ($ct in 'workbooks','datasources','flows','dataroles','lenses','metrics','databases','tables') { #,'virtualconnections' not supported yet if ($ct -eq 'dataroles' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -eq 'lenses' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -in 'databases','tables' -and (Get-TableauRestVersion) -lt [version]3.6) { continue } if ((-Not ($ContentType)) -or $ContentType -eq $ct) { $response = Invoke-TableauRestMethod -Uri $uri$ct -Method Get if ($response.tsResponse.permissions.granteeCapabilities) { $response.tsResponse.permissions.granteeCapabilities | ForEach-Object { if ($_.group -and $_.group.id) { $granteeType = 'group' $granteeId = $_.group.id } elseif ($_.user -and $_.user.id) { $granteeType = 'user' $granteeId = $_.user.id } else { Write-Error "Invalid grantee in the response object" -Category InvalidData -ErrorAction Continue } $capabilitiesHashtable = @{} $_.capabilities.capability | ForEach-Object { if ($_.name -and $_.mode) { $capabilitiesHashtable.Add($_.name, $_.mode) } else { Write-Error "Invalid permission capability in the input object" -Category InvalidData -ErrorAction Continue } } $permissionTable += @{contentType=$ct; granteeType=$granteeType; granteeId=$granteeId; capabilities=$capabilitiesHashtable} } } } } return $permissionTable } function Set-TableauDefaultPermission { <# .SYNOPSIS Set (add) Default Permission(s) .DESCRIPTION Sets the default permission rules granted to users and groups for workbooks, data sources, flows, data roles, lenses, metrics, databases or tables resources in a specific project. .PARAMETER ProjectId The LUID of the project to set default permissions for. .PARAMETER PermissionTable A list of permissions (hashtable), each item must be structured as follows: - contentType: the specific content type to set the default permission for, e.g. 'workbooks' or 'datasources' - granteeType: 'user' or 'group' - granteeId: the LUID of the user or group - capabilities: hashtable with all permissions to add, the key is capability name and the value is allow or deny Note: existing capabilities are removed for the same capability names, but other capabilities are untouched. - template: can be used instead of 'capabilities'. This corresponds to selecting "Template" in Tableau Server UI. The following templates are supported: View, Explore, Publish, Administer, Denied, None Note: existing capabilities are removed for the grantee, if template is used. .EXAMPLE $dpt = @{contentType="workbooks"; granteeType="User"; granteeId=(Get-TableauCurrentUserId); capabilities=@{Read="Allow"}} $dpt += @{contentType="datasources"; granteeType="User"; granteeId=(Get-TableauCurrentUserId); capabilities=@{Read="Allow";Connect="Allow"}} $permissions = Set-TableauDefaultPermission -ProjectId $testProjectId -PermissionTable $dpt .NOTES The PermissionTable parameter has similar structure as for Set-TableauContentPermission, but has in addition to provide 'contentType' keys. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#add_default_permissions #> [CmdletBinding(SupportsShouldProcess)] [OutputType([System.Object[]])] Param( [Parameter(Mandatory)][string] $ProjectId, [Parameter(Mandatory)][hashtable[]] $PermissionTable ) Assert-TableauAuthToken $uri = Get-TableauRequestUri -Endpoint Project -Param "$ProjectId/default-permissions/" $outputPermissionTable = @() foreach ($ct in 'workbooks','datasources','flows','dataroles','lenses','metrics','databases','tables') { if ($ct -eq 'dataroles' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -eq 'lenses' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -in 'databases','tables' -and (Get-TableauRestVersion) -lt [version]3.6) { continue } $shouldProcessItem = "project:$ProjectId" $contentTypePermissions = $PermissionTable | Where-Object contentType -eq $ct $currentPermissionTable = Get-TableauDefaultPermission -ProjectId $ProjectId -ContentType $ct if ($contentTypePermissions.Length -gt 0) { $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_pm = $tsRequest.AppendChild($xml.CreateElement("permissions")) $permissionsCount = 0 $permissionOverrides = @() foreach ($permission in $contentTypePermissions) { if ($permission.capabilities -and $permission.capabilities.Count -gt 0) { $permissionsCount += $permission.capabilities.Count $el_gc = $el_pm.AppendChild($xml.CreateElement("granteeCapabilities")) $el_gc.AppendChild($xml.CreateElement($permission.granteeType.ToLower())).SetAttribute("id", $permission.granteeId) $el_caps = $el_gc.AppendChild($xml.CreateElement("capabilities")) $permission.capabilities.GetEnumerator() | ForEach-Object { $el_cap = $el_caps.AppendChild($xml.CreateElement("capability")) $el_cap.SetAttribute("name", $_.Key) $el_cap.SetAttribute("mode", $_.Value) } } elseif ($permission.template) { # support for permission templates switch ($permission.template) { 'View' { switch ($ct) { 'workbooks' { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData' } 'datasources' { $capabilities = 'Read','Connect' } {$_ -in 'flows','dataroles','metrics','lenses','databases','tables'} { $capabilities = 'Read' } } } 'Explore' { switch ($ct) { 'workbooks' { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData' } 'datasources' { $capabilities = 'Read','Connect','ExportXml' } 'flows' { $capabilities = 'Read','ExportXml' } {$_ -in 'dataroles','metrics','lenses','databases','tables'} { $capabilities = 'Read' } } } 'Publish' { switch ($ct) { 'workbooks' { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData','ExportXml','Write','CreateRefreshMetrics' } 'datasources' { $capabilities = 'Read','Connect','ExportXml','Write','SaveAs' } 'flows' { $capabilities = 'Read','ExportXml','Execute','Write','WebAuthoringForFlows' } {$_ -in 'dataroles','metrics','lenses','databases','tables'} { $capabilities = 'Read','Write' } } } {$_ -in 'Administer','Denied'} { # full capabilities for both cases switch ($ct) { 'workbooks' { $capabilities = 'Read','Filter','ViewComments','AddComment','ExportImage','ExportData','ShareView','ViewUnderlyingData','WebAuthoring','RunExplainData','ExportXml','Write','CreateRefreshMetrics','ChangeHierarchy','Delete','ChangePermissions' } 'datasources' { $capabilities = 'Read','Connect','ExportXml','Write','SaveAs','ChangeHierarchy','Delete','ChangePermissions' } 'flows' { $capabilities = 'Read','ExportXml','Execute','Write','WebAuthoringForFlows','ChangeHierarchy','Delete','ChangePermissions' } {$_ -in 'dataroles','metrics','lenses'} { $capabilities = 'Read','Write','ChangeHierarchy','Delete','ChangePermissions' } {$_ -in 'databases','tables'} { $capabilities = 'Read','Write','ChangeHierarchy','ChangePermissions' } } } default { # incl. None $capabilities = @() } } $permissionsCount += $capabilities.Length $currentPermissionTable | Where-Object -FilterScript {($_.granteeType -eq $permission.granteeType) -and ($_.granteeId -eq $permission.granteeId)} | ForEach-Object { $currentCapabilities = $_.capabilities $currentCapabilities.GetEnumerator() | ForEach-Object { $capabilityName = $_.Key $capabilityMode = $_.Value if ((-not ($capabilities -Contains $capabilityName)) -or (($permission.template -ne 'Denied' -and $capabilityMode -ne 'Allow') -or ($permission.template -eq 'Denied' -and $capabilityMode -ne 'Deny'))) { $permissionOverrides += @{granteeType=$permission.granteeType; granteeId=$permission.granteeId; capabilityName=$capabilityName; capabilityMode=$capabilityMode} } } } if ($capabilities.Length -gt 0) { # only for non-empty capabilities (template=None doesn't add permissions) $el_gc = $el_pm.AppendChild($xml.CreateElement("granteeCapabilities")) $el_gc.AppendChild($xml.CreateElement($permission.granteeType.ToLower())).SetAttribute("id", $permission.granteeId) $el_caps = $el_gc.AppendChild($xml.CreateElement("capabilities")) foreach ($cap in $capabilities) { $el_cap = $el_caps.AppendChild($xml.CreateElement("capability")) if ($permission.template -eq 'Denied') { $mode = "Deny" } else { $mode = "Allow" } $el_cap.SetAttribute("name", $cap) $el_cap.SetAttribute("mode", $mode) } } } } $shouldProcessItem += ", {0}, grantees:{1}, permissions:{2}, overrides:{3}" -f $ct, $contentTypePermissions.Length, $permissionsCount, $permissionOverrides.Length if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $permissionOverrides | ForEach-Object { # remove all existing incompatible permissions (or that are not included in the permission template) # note: it's also possible to remove all permissions for one grantee, one content type first, using the following method Remove-TableauDefaultPermission -ProjectId $ProjectId -ContentType $ct -GranteeType $_.granteeType -GranteeId $_.granteeId -CapabilityName $_.capabilityName -CapabilityMode $_.capabilityMode } if ($permissionsCount -gt 0) { # empty permissions element in xml is not allowed $response = Invoke-TableauRestMethod -Uri $uri$ct -Body $xml.OuterXml -Method Put -ContentType 'application/xml' if ($response.tsResponse.permissions.granteeCapabilities) { $response.tsResponse.permissions.granteeCapabilities | ForEach-Object { if ($_.group -and $_.group.id) { $granteeType = 'group' $granteeId = $_.group.id } elseif ($_.user -and $_.user.id) { $granteeType = 'user' $granteeId = $_.user.id } else { Write-Error "Invalid grantee in the response object" -Category InvalidData -ErrorAction Continue } $capabilitiesHashtable = @{} $_.capabilities.capability | ForEach-Object { if ($_.name -and $_.mode) { $capabilitiesHashtable.Add($_.name, $_.mode) } else { Write-Error "Invalid permission capability in the input object" -Category InvalidData -ErrorAction Continue } } $outputPermissionTable += @{contentType=$ct; granteeType=$granteeType; granteeId=$granteeId; capabilities=$capabilitiesHashtable} } } } } } } return $outputPermissionTable } function Remove-TableauDefaultPermission { <# .SYNOPSIS Delete Default Permission(s) .DESCRIPTION Removes the specific default permission rules granted to users and groups for workbooks, data sources, flows, data roles, lenses, metrics, databases or tables resources in a specific project. .PARAMETER ProjectId The LUID of the project to delete default permissions for. .PARAMETER GranteeType Delete default permission(s) for specific grantee: the grantee type (User or Group). .PARAMETER GranteeId Delete default permission(s) for specific grantee: the LUID of the user or group. .PARAMETER CapabilityName Delete default permission(s) for specific grantee: the name of the capability to remove. If this parameter is not provided, all existing permissions for the grantee will be deleted. .PARAMETER CapabilityMode Delete default permission(s) for specific grantee: the mode of the capability to remove (Allow or Deny). If this parameter is not provided, all existing permissions for the grantee will be deleted. .PARAMETER ContentType Specific content type to delete default permission(s) for. If omitted, default permissions for all content types are deleted (for specific grantees or all grantees). .PARAMETER All Explicit boolean switch, supply this to delete ALL permissions for ALL grantees and ALL content types. .EXAMPLE Remove-TableauDefaultPermission -ProjectId $projectId -GranteeType User -GranteeId (Get-TableauCurrentUserId) .EXAMPLE Remove-TableauDefaultPermission -ProjectId $projectId -GranteeType Group -GranteeId $groupId -ContentType workbooks .EXAMPLE Remove-TableauDefaultPermission -ProjectId $project.id -All .NOTES This function always returns $null. .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#delete_default_permission #> [CmdletBinding(SupportsShouldProcess)] [OutputType()] Param( [Parameter(Mandatory)][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='OneGrantee')] [Parameter(Mandatory,ParameterSetName='OneGranteeForContentType')] [Parameter(Mandatory,ParameterSetName='OneCapability')] [ValidateSet('User','Group')][string] $GranteeType, [Parameter(Mandatory,ParameterSetName='OneGrantee')] [Parameter(Mandatory,ParameterSetName='OneGranteeForContentType')] [Parameter(Mandatory,ParameterSetName='OneCapability')] [string] $GranteeId, [Parameter(Mandatory,ParameterSetName='OneCapability')] [ValidateSet('AddComment','ChangeHierarchy','ChangePermissions','Connect','Delete','Execute','WebAuthoringForFlows', 'ExportData','ExportImage','ExportXml','Filter','ProjectLeader','Read','ShareView','ViewComments','ViewUnderlyingData', 'WebAuthoring','Write','RunExplainData','CreateRefreshMetrics','SaveAs')][string] $CapabilityName, [Parameter(Mandatory,ParameterSetName='OneCapability')] [ValidateSet('Allow','Deny')][string] $CapabilityMode, [Parameter(Mandatory,ParameterSetName='OneGranteeForContentType')] [Parameter(Mandatory,ParameterSetName='OneCapability')] [ValidateSet('Workbooks','Datasources','Flows','Dataroles','Lenses','Metrics','Databases','Tables')][string] $ContentType, [Parameter(Mandatory,ParameterSetName='AllPermissions')] [switch] $All ) Assert-TableauAuthToken $uri = Get-TableauRequestUri -Endpoint Project -Param "$ProjectId/default-permissions/" $shouldProcessItem = "project:$ProjectId" if ($CapabilityName -and $CapabilityMode) { # Remove one default permission/capability $shouldProcessItem += ", default permission for {0}:{1}, {2}:{3}" -f $GranteeType, $GranteeId, $CapabilityName, $CapabilityMode $uriAdd = "{0}/{1}s/{2}/{3}/{4}" -f $ContentType, $GranteeType.ToLower(), $GranteeId, $CapabilityName, $CapabilityMode if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } elseif ($GranteeType -and $GranteeId) { # Remove all permissions for one grantee $shouldProcessItem += ", all default permissions for {0}:{1}" -f $GranteeTyp, $GranteeId if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $allDefaultPermissions = Get-TableauDefaultPermission -ProjectId $ProjectId foreach ($ct in 'workbooks','datasources','flows','dataroles','lenses','metrics','databases','tables') { if ($ct -eq 'dataroles' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -eq 'lenses' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -in 'databases','tables' -and (Get-TableauRestVersion) -lt [version]3.6) { continue } if ((-Not ($ContentType)) -or $ContentType -eq $ct) { $permissions = $allDefaultPermissions | Where-Object -FilterScript { ($_.contentType -eq $ct) -and ($_.granteeType -eq $GranteeType) -and ($_.granteeId -eq $GranteeId)} if ($permissions.Length -gt 0) { foreach ($permission in $permissions) { $permission.capabilities.GetEnumerator() | ForEach-Object { $uriAdd = "{0}/{1}s/{2}/{3}/{4}" -f $ct, $GranteeType.ToLower(), $GranteeId, $_.Key, $_.Value $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } } } } } } elseif ($All) { $shouldProcessItem += ", ALL DEFAULT PERMISSIONS" if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $allDefaultPermissions = Get-TableauDefaultPermission -ProjectId $ProjectId foreach ($ct in 'workbooks','datasources','flows','dataroles','lenses','metrics','databases','tables') { if ($ct -eq 'dataroles' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -eq 'lenses' -and ((Get-TableauRestVersion) -lt [version]3.13 -or (Get-TableauRestVersion) -ge [version]3.22)) { continue } elseif ($ct -in 'databases','tables' -and (Get-TableauRestVersion) -lt [version]3.6) { continue } $contentTypePermissions = $allDefaultPermissions | Where-Object contentType -eq $ct if ($contentTypePermissions.Length -gt 0) { foreach ($permission in $contentTypePermissions) { $permission.capabilities.GetEnumerator() | ForEach-Object { $uriAdd = "{0}/{1}s/{2}/{3}/{4}" -f $ct, $permission.granteeType.ToLower(), $permission.granteeId, $_.Key, $_.Value $null = Invoke-TableauRestMethod -Uri $uri$uriAdd -Method Delete } } } } } } } ### Tags methods function Add-TableauContentTag { <# .SYNOPSIS Add Tags to Workbook / Data Source / View / Flow .DESCRIPTION Adds one or more tags to the specified content. .PARAMETER WorkbookId The LUID of the workbook to add tags to. .PARAMETER DatasourceId The LUID of the data source to add tags to. .PARAMETER ViewId The LUID of the view to add tags to. .PARAMETER FlowId The LUID of the flow to add tags to. .PARAMETER Tags List of tags as strings. .EXAMPLE Add-TableauContentTag -WorkbookId $sampleWorkbookId -Tags "active","test" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#add_tags_to_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#add_tags_to_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#add_tags_to_view #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId, [Parameter(Mandatory)][string[]] $Tags ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_tags = $tsRequest.AppendChild($xml.CreateElement("tags")) foreach ($tag in $Tags) { $el_tag = $el_tags.AppendChild($xml.CreateElement("tag")) $el_tag.SetAttribute("label", $tag) } if ($WorkbookId -and $PSCmdlet.ShouldProcess("workbook:$WorkbookId, tags:"+($Tags -join ' '))) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/tags) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.tags.tag } elseif ($DatasourceId -and $PSCmdlet.ShouldProcess("datasource:$DatasourceId, tags:"+($Tags -join ' '))) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/tags) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.tags.tag } elseif ($ViewId -and $PSCmdlet.ShouldProcess("view:$ViewId, tags:"+($Tags -join ' '))) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint View -Param $ViewId/tags) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.tags.tag } elseif ($FlowId -and $PSCmdlet.ShouldProcess("flow:$FlowId, tags:"+($Tags -join ' '))) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId/tags) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.tags.tag } } function Remove-TableauContentTag { <# .SYNOPSIS Delete Tag from Workbook / Data Source / View / Flow .DESCRIPTION Deletes a tag from the specified content. .PARAMETER WorkbookId The ID of the workbook to remove the tag from. .PARAMETER DatasourceId The ID of the data source to remove the tag from. .PARAMETER ViewId The ID of the view to remove the tag from. .PARAMETER FlowId The ID of the flow to remove the tag from. .PARAMETER Tag The name of the tag to remove from the content. .EXAMPLE Remove-TableauContentTag -WorkbookId $sampleWorkbookId -Tag "test" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#delete_tag_from_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_data_sources.htm#delete_tag_from_data_source .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooks_and_views.htm#delete_tag_from_view .NOTES It appears to be impossible to remove a tag named with special characters, e.g. "/". Encoding such names with UrlEncode() or HttpEncode() doesn't work either. #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId, [Parameter(Mandatory)][string] $Tag ) Assert-TableauAuthToken # $Tag = [System.Web.HttpUtility]::UrlEncode($Tag) if ($WorkbookId -and $PSCmdlet.ShouldProcess("workbook:$WorkbookId, tag:'$Tag'")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId/tags/$Tag) -Method Delete } elseif ($DatasourceId -and $PSCmdlet.ShouldProcess("datasource:$DatasourceId, tag:'$Tag'")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId/tags/$Tag) -Method Delete } elseif ($ViewId -and $PSCmdlet.ShouldProcess("view:$ViewId, tag:'$Tag'")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint View -Param $ViewId/tags/$Tag) -Method Delete } elseif ($FlowId -and $PSCmdlet.ShouldProcess("flow:$FlowId, tag:'$Tag'")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Flow -Param $FlowId/tags/$Tag) -Method Delete } } ### Jobs, Tasks and Schedules methods function Get-TableauSchedule { <# .SYNOPSIS Get Server Schedule / List Server Schedules .DESCRIPTION Returns detailed information about the specified server schedule, or list of schedules on Tableau Server. Not available for Tableau Cloud. .PARAMETER ScheduleId (Get Server Schedule by Id) The LUID of the specific schedule. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $schedules = Get-TableauSchedule .EXAMPLE $schedule = Get-TableauSchedule -ScheduleId $testScheduleId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#get-schedule .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_schedules #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='ScheduleById')][string] $ScheduleId, [Parameter(ParameterSetName='Schedules')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($ScheduleId) { # Get Server Schedule Assert-TableauRestVersion -AtLeast 3.8 } if ($ScheduleId) { # Get Server Schedule $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSchedule -Param $ScheduleId) -Method Get $response.tsResponse.schedule } else { # List Server Schedules $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint ServerSchedule $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.schedules.schedule } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauSchedule { <# .SYNOPSIS Create Server Schedule .DESCRIPTION Creates a new server schedule on Tableau Server. This method can be called only by Server Admins. .PARAMETER Name The name to give to the schedule. .PARAMETER Type The schedule typy, which is one of the following: Extract, Subscription, Flow, DataAcceleration. .PARAMETER Priority An integer value between 1 and 100 that determines the default priority of the schedule if multiple tasks are pending in the queue. Default is 50. .PARAMETER ExecutionOrder Parallel to allow jobs associated with this schedule to run at the same time, or Serial to require the jobs to run one after the other. Default is Parallel. .PARAMETER Frequency The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. .PARAMETER StartTime The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional) For Hourly: the interval in hours between schedule runs. .PARAMETER IntervalMinutes (Optional) For Hourly: the interval in minutes between schedule runs. Valid values are 15 or 30. .PARAMETER IntervalWeekdays (Optional) For Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthday (Optional) For Monthly: the day of the month when the schedule is run. For last month day, the value 0 should be supplied. .EXAMPLE $schedule = New-TableauSchedule -Name "Monthly on 3rd day of the month" -Type Extract -Frequency Monthly -StartTime "08:00:00" -IntervalMonthday 3 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#create_schedule #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter(Mandatory)][ValidateSet('Extract','Subscription','Flow','DataAcceleration')][string] $Type, [Parameter()][ValidateRange(1,100)][int] $Priority = 50, [Parameter()][ValidateSet('Parallel','Serial')][string] $ExecutionOrder = 'Parallel', [Parameter(Mandatory,ParameterSetName='HourlyHours')] [Parameter(Mandatory,ParameterSetName='HourlyMinutes')] [Parameter(Mandatory,ParameterSetName='Daily')] [Parameter(Mandatory,ParameterSetName='Weekly')] [Parameter(Mandatory,ParameterSetName='Monthly')] [ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency = 'Daily', [Parameter(Mandatory,ParameterSetName='HourlyHours')] [Parameter(Mandatory,ParameterSetName='HourlyMinutes')] [Parameter(Mandatory,ParameterSetName='Daily')] [Parameter(Mandatory,ParameterSetName='Weekly')] [Parameter(Mandatory,ParameterSetName='Monthly')] [ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime = '00:00:00', [Parameter(ParameterSetName='HourlyHours')] [Parameter(ParameterSetName='HourlyMinutes')] [ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter(Mandatory,ParameterSetName='HourlyHours')][ValidateSet(1,2,4,6,8,12)][int] $IntervalHours, [Parameter(Mandatory,ParameterSetName='HourlyMinutes')][ValidateSet(15,30)][int] $IntervalMinutes, [Parameter(Mandatory,ParameterSetName='Weekly')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter(Mandatory,ParameterSetName='Monthly')][ValidateRange(0,31)][int] $IntervalMonthday ) Assert-TableauAuthToken if ($Type -eq 'DataAcceleration') { Assert-TableauRestVersion -AtLeast 3.8 -LessThan 3.16 } $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("name", $Name) $el_sched.SetAttribute("type", $Type) $el_sched.SetAttribute("priority", $Priority) $el_sched.SetAttribute("executionOrder", $ExecutionOrder) $el_sched.SetAttribute("frequency", $Frequency) $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) $el_freq.SetAttribute("start", $StartTime) if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } switch ($Frequency) { 'Hourly' { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) if ($IntervalHours) { $el_int.SetAttribute("hours", $IntervalHours) } elseif ($IntervalMinutes) { $el_int.SetAttribute("minutes", $IntervalMinutes) } } 'Weekly' { if ($IntervalWeekdays) { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { if ($IntervalMonthday -ge 0) { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) if ($IntervalMonthday -eq 0) { $el_int.SetAttribute("monthDay", "LastDay") } else { $el_int.SetAttribute("monthDay", $IntervalMonthday) } } } } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSchedule) -Body $xml.OuterXml -Method Post return $response.tsResponse.schedule } } function Set-TableauSchedule { <# .SYNOPSIS Update Server Schedule .DESCRIPTION Modifies settings for the specified server schedule, including the name, priority, and frequency details on Tableau Server. This method can only be called by Server Admins. .PARAMETER ScheduleId The LUID of the schedule to update. .PARAMETER Name (Optional) The new name to give to the schedule. .PARAMETER State (Optional) 'Active' to enable the schedule, or 'Suspended' to disable it. .PARAMETER Priority (Optional) An integer value between 1 and 100 that determines the default priority of the schedule if multiple tasks are pending in the queue. .PARAMETER ExecutionOrder (Optional) Parallel to allow jobs associated with this schedule to run at the same time, or Serial to require the jobs to run one after the other. .PARAMETER Frequency (Optional) The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. If frequency is supplied, the StartTime and other relevant frequency details parameters need to be also provided. .PARAMETER StartTime (Optional) The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional) For Hourly: the interval in hours between schedule runs. .PARAMETER IntervalMinutes (Optional) For Hourly: the interval in minutes between schedule runs. Valid values are 15 or 30. .PARAMETER IntervalWeekdays (Optional) For Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthday (Optional) For Monthly: the day of the month when the schedule is run. For last month day, the value 0 should be supplied. .EXAMPLE $schedule = Set-TableauSchedule -ScheduleId $oldScheduleId -State Suspended .EXAMPLE $schedule = Set-TableauSchedule -ScheduleId $testScheduleId -Frequency Hourly -StartTime "12:00:00" -EndTime "16:00:00" -IntervalHours 1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#update_schedule #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSchedule')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ScheduleId, [Parameter()][string] $Name, [Parameter()][ValidateSet('Active','Suspended')][string] $State, [Parameter()][ValidateRange(1,100)][int] $Priority, [Parameter()][ValidateSet('Parallel','Serial')][string] $ExecutionOrder, [Parameter(ParameterSetName='HourlyHours')] [Parameter(ParameterSetName='HourlyMinutes')] [Parameter(ParameterSetName='Daily')] [Parameter(ParameterSetName='Weekly')] [Parameter(ParameterSetName='Monthly')] [ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency, [Parameter(ParameterSetName='HourlyHours')] [Parameter(ParameterSetName='HourlyMinutes')] [Parameter(ParameterSetName='Daily')] [Parameter(ParameterSetName='Weekly')] [Parameter(ParameterSetName='Monthly')] [ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime, [Parameter(ParameterSetName='HourlyHours')] [Parameter(ParameterSetName='HourlyMinutes')] [ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter(Mandatory,ParameterSetName='HourlyHours')][ValidateSet(1,2,4,6,8,12)][int] $IntervalHours, [Parameter(Mandatory,ParameterSetName='HourlyMinutes')][ValidateSet(15,30)][int] $IntervalMinutes, [Parameter(Mandatory,ParameterSetName='Weekly')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter(Mandatory,ParameterSetName='Monthly')][ValidateRange(0,31)][int] $IntervalMonthday # 0 for last day ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) if ($Name) { $el_sched.SetAttribute("name", $Name) } if ($State) { $el_sched.SetAttribute("state", $State) } if ($Priority) { $el_sched.SetAttribute("priority", $Priority) } if ($ExecutionOrder) { $el_sched.SetAttribute("executionOrder", $ExecutionOrder) } if ($Frequency) { $el_sched.SetAttribute("frequency", $Frequency) } if ($Frequency -or $StartTime -or $EndTime) { $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) } if ($StartTime) { $el_freq.SetAttribute("start", $StartTime) } if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } switch ($Frequency) { 'Hourly' { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) if ($IntervalHours) { $el_int.SetAttribute("hours", $IntervalHours) } elseif ($IntervalMinutes) { $el_int.SetAttribute("minutes", $IntervalMinutes) } } 'Weekly' { if ($IntervalWeekdays) { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { # note: updating monthly schedule via REST API doesn't seem to work if ($IntervalMonthday -ge 0) { $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) if ($IntervalMonthday -eq 0) { $el_int.SetAttribute("monthDay", "LastDay") } else { $el_int.SetAttribute("monthDay", $IntervalMonthday) } } } } if ($PSCmdlet.ShouldProcess($ScheduleId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSchedule -Param $ScheduleId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.schedule } } function Remove-TableauSchedule { <# .SYNOPSIS Delete Server Schedule .DESCRIPTION Deletes the specified schedule on Tableau Server. This method can only be called by Server Admins. .PARAMETER ScheduleId The LUID of the schedule to delete. .EXAMPLE $response = Remove-TableauSchedule -ScheduleId $oldScheduleId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#delete_schedule #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ScheduleId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess($ScheduleId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSchedule -Param $ScheduleId) -Method Delete } } function Add-TableauContentToSchedule { <# .SYNOPSIS Add Workbook / Data Source / Flow Task to Server Schedule .DESCRIPTION Adds a task to refresh or accelerate a workbook to an existing schedule on Tableau Server. or Adds a task to refresh a data source to an existing server schedule on Tableau Server. or Adds a task to run a flow to an existing schedule. Tableau Prep Conductor should be enabled for the site to use this feature. Note: this method is not supported on Tableau Cloud. For Tableau Cloud - use the following methods: .PARAMETER ScheduleId The LUID of the schedule that the task will be added into. .PARAMETER WorkbookId Add Workbook to Server Schedule: The LUID of the workbook to add to the schedule. .PARAMETER DataAccelerationTask Add Workbook to Server Schedule: Boolean switch, if supplied, the data acceleration task for the workbook will be added too. Note: starting in Tableau version 2022.1 (API v3.16), the data acceleration feature is deprecated. .PARAMETER DatasourceId Add Data Source to Server Schedule: The LUID of the data source to add to the schedule. .PARAMETER FlowId Add Flow Task to Schedule: The LUID of the flow to add to the schedule. .PARAMETER OutputStepId Add Flow Task to Schedule: (Optional) The LUID of the specific output step, if only this step needs to be run in the scheduled task. .PARAMETER FlowParams Add Flow Task to Schedule: (Optional) The hashtable for the flow parameters. The keys are the parameter LUIDs and the values are the override values. .EXAMPLE $task = Add-TableauContentToSchedule -ScheduleId $extractScheduleId -WorkbookId $workbook.id .EXAMPLE $task = Add-TableauContentToSchedule -ScheduleId $runFlowScheduleId -FlowId $flowForTasks.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#add_workbook_to_schedule .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#add_data_source_to_schedule .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#add_flow_task_to_schedule #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ScheduleId, [Parameter(ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(ParameterSetName='Workbook')][switch] $DataAccelerationTask, [Parameter(ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(ParameterSetName='Flow')][string] $FlowId, [Parameter(ParameterSetName='Flow')][string] $OutputStepId, # note: this input is ignored by the API, maybe will be supported later [Parameter(ParameterSetName='Flow')][hashtable] $FlowParams ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 2.8 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_task = $tsRequest.AppendChild($xml.CreateElement("task")) if ($WorkbookId) { $el_extr = $el_task.AppendChild($xml.CreateElement("extractRefresh")) $el_workbook = $el_extr.AppendChild($xml.CreateElement("workbook")) $el_workbook.SetAttribute("id", $WorkbookId) $uri = Get-TableauRequestUri -Endpoint Schedule -Param $ScheduleId/workbooks $shouldProcessItem = "schedule:$ScheduleId, workbook:$WorkbookId" if ($DataAccelerationTask) { Assert-TableauRestVersion -AtLeast 3.8 -LessThan 3.16 $el_da = $el_task.AppendChild($xml.CreateElement("dataAcceleration")) $el_workbook = $el_da.AppendChild($xml.CreateElement("workbook")) $el_workbook.SetAttribute("id", $WorkbookId) $shouldProcessItem += ", data acceleration" } } elseif ($DatasourceId) { $el_extr = $el_task.AppendChild($xml.CreateElement("extractRefresh")) $el_datasource = $el_extr.AppendChild($xml.CreateElement("datasource")) $el_datasource.SetAttribute("id", $DatasourceId) $uri = Get-TableauRequestUri -Endpoint Schedule -Param $ScheduleId/datasources $shouldProcessItem = "schedule:$ScheduleId, datasource:$DatasourceId" } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $el_fr = $el_task.AppendChild($xml.CreateElement("flowRun")) $el_flow = $el_fr.AppendChild($xml.CreateElement("flow")) $el_flow.SetAttribute("id", $FlowId) $uri = Get-TableauRequestUri -Endpoint Schedule -Param $ScheduleId/flows $shouldProcessItem = "schedule:$ScheduleId, flow:$FlowId" $el_frs = $el_fr.AppendChild($xml.CreateElement("flowRunSpec")) if ($OutputStepId) { $el_steps = $el_frs.AppendChild($xml.CreateElement("flowOutputSteps")) $el_step = $el_steps.AppendChild($xml.CreateElement("flowOutputStep")) $el_step.SetAttribute("id", $OutputStepId) } if ($FlowParams) { Assert-TableauRestVersion -AtLeast 3.15 $el_params = $el_frs.AppendChild($xml.CreateElement("flowParameterSpecs")) $FlowParams.GetEnumerator() | ForEach-Object { $el_param = $el_params.AppendChild($xml.CreateElement("flowParameterSpec")) $el_param.SetAttribute("parameterId", $_.Key) $el_param.SetAttribute("overrideValue", $_.Value) } } } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.task } } # note: return objects are different for two use cases function Get-TableauJob { <# .SYNOPSIS Query Job / Query Jobs .DESCRIPTION Returns the details about a specific job, or a list of active jobs on the current site. .PARAMETER JobId Query Job: The LUID of the job to get status information for. .PARAMETER Filter (Optional, Query Jobs) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#jobs .PARAMETER Sort (Optional, Query Jobs) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#users .PARAMETER Fields (Optional, Query Jobs) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_jobs .PARAMETER PageSize (Optional, Query Jobs) Page size when paging through results. .EXAMPLE $jobStatus = Get-TableauJob -JobId $job.id .EXAMPLE $extractJobs = Get-TableauJob -Filter "jobType:eq:refresh_extracts" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_job .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_jobs #> [Alias('Query-TableauJob')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='JobById')][string] $JobId, [Parameter(ParameterSetName='Jobs')][string[]] $Filter, [Parameter(ParameterSetName='Jobs')][string[]] $Sort, [Parameter(ParameterSetName='Jobs')][string[]] $Fields, [Parameter(ParameterSetName='Jobs')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.1 if ($JobId) { # Query Job $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Job -Param $JobId) -Method Get $response.tsResponse.job } else { # Get Jobs $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Job $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.backgroundJobs.backgroundJob } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Stop-TableauJob { <# .SYNOPSIS Cancel Job .DESCRIPTION Cancels a specific job specified by job ID. If the job was cancelled successfully, $null is returned, otherwise the response error is returned. .PARAMETER JobId The LUID of the job to cancel. .EXAMPLE Stop-TableauJob -JobId $job.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#cancel_job #> [CmdletBinding(SupportsShouldProcess)] [Alias('Cancel-TableauJob')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $JobId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.1 if ($PSCmdlet.ShouldProcess($JobId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Job -Param $JobId) -Method Put -ContentType 'application/xml' if ($response.tsResponse.error) { return $response.tsResponse.error } else { return $null # Job cancelled successfully } } } function Wait-TableauJob { <# .SYNOPSIS Wait For Job to complete .DESCRIPTION Wait until the job completion, while displaying the progress status. .PARAMETER JobId The LUID of the job process. .PARAMETER Timeout (Optional) Timeout in seconds. Default is 3600 (1 hour). Set timeout to 0 to wait indefinitely long. .PARAMETER Interval (Optional) Poll interval in seconds. Default is 1. Increase interval to reduce the frequency of refresh status requests. .EXAMPLE $finished = Wait-TableauJob -JobId $job.id -Timeout 600 .NOTES See also: wait_for_job() in TSC #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $JobId, [Parameter()][int] $Timeout = 3600, [Parameter()][int] $Interval = 1 ) Assert-TableauAuthToken do { Start-Sleep -s $Interval $Timeout-- $jobUpdate = Get-TableauJob -JobId $JobId if ($jobUpdate.progress) { Write-Progress -Activity "Running" -Status ("Job progress: {0}%" -f $jobUpdate.progress) -PercentComplete $jobUpdate.progress } else { Write-Progress -Activity "Waiting" -Status "Job not started yet" -PercentComplete 0 } } until ($jobUpdate.completedAt -or $Timeout -eq 0) if ($jobUpdate.completedAt) { if ($jobUpdate.finishCode -eq 0) { $finishStatus = '(Success)' } elseif ($jobUpdate.finishCode -eq 1) { $finishStatus = '(FAILED)' } elseif ($jobUpdate.finishCode -eq 2) { $finishStatus = '(CANCELLED)' } Write-Progress -Activity "Finished" -Status ("Job progress: {0}% {1}" -f $jobUpdate.progress, $finishStatus) -PercentComplete $jobUpdate.progress Start-Sleep -s 1 Write-Progress -Completed } return $jobUpdate } function Get-TableauTask { <# .SYNOPSIS Get Task / List Tasks on Site .DESCRIPTION Returns information about the specified extract refresh / run flow / run linked / data acceleration task, or a list of such tasks on the current site. This function unifies the following API calls: - Get Extract Refresh Task - Get Flow Run Task - Get Linked Task - Get Data Acceleration Task - List Extract Refresh Tasks in Site - Get Flow Run Tasks - Get Linked Tasks - Get Data Acceleration Tasks in a Site .PARAMETER Type The type of the task, which corresponds to a specific API call. Supported types are: ExtractRefresh, DataAcceleration, FlowRun, Linked .PARAMETER TaskId Get Task by Id: The LUID of the specific task. .PARAMETER PageSize (Optional, List Tasks) Page size when paging through results. .EXAMPLE $extractTasks = Get-TableauTask -Type ExtractRefresh | Where-Object -FilterScript {$_.datasource.id -eq $datasourceForTasks.id} .EXAMPLE $flowTasks = Get-TableauTask -Type FlowRun -TaskId $taskId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#get_extract_refresh_task .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#list_extract_refresh_tasks .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_run_task .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_run_tasks .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_run_task1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#get_flow_run_tasks1 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#get_data_acceleration_tasks #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][ValidateSet('ExtractRefresh','FlowRun','Linked','DataAcceleration')][string] $Type, [Parameter(Mandatory,ParameterSetName='TaskById')][string] $TaskId, [Parameter(ParameterSetName='Tasks')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($TaskId) { # Get Flow Run Task / Get Extract Refresh Task / Get Linked Task / Get Data Acceleration Task switch ($Type) { 'ExtractRefresh' { Assert-TableauRestVersion -AtLeast 2.6 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param extractRefreshes/$TaskId) -Method Get $response.tsResponse.task.extractRefresh } 'FlowRun' { Assert-TableauRestVersion -AtLeast 3.3 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param runFlow/$TaskId) -Method Get $response.tsResponse.task.flowRun } 'Linked' { Assert-TableauRestVersion -AtLeast 3.15 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param linked/$TaskId) -Method Get $response.tsResponse.linkedTask } 'DataAcceleration' { Assert-TableauRestVersion -AtLeast 3.8 -LessThan 3.16 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param dataAcceleration/$TaskId) -Method Get $response.tsResponse.task.dataAcceleration } } } else { # Get Flow Run Tasks / List Extract Refresh Tasks in Site / Get Linked Tasks / Get Data Acceleration Tasks in a Site $pageNumber = 0 do { $pageNumber++ switch ($Type) { 'ExtractRefresh' { $uri = Get-TableauRequestUri -Endpoint Task -Param extractRefreshes } 'FlowRun' { Assert-TableauRestVersion -AtLeast 3.3 $uri = Get-TableauRequestUri -Endpoint Task -Param runFlow } 'Linked' { Assert-TableauRestVersion -AtLeast 3.15 $uri = Get-TableauRequestUri -Endpoint Task -Param linked } 'DataAcceleration' { Assert-TableauRestVersion -AtLeast 3.8 -LessThan 3.16 $uri = Get-TableauRequestUri -Endpoint Task -Param dataAcceleration } } $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable switch ($Type) { 'ExtractRefresh' { $response.tsResponse.tasks.task.extractRefresh } 'FlowRun' { $response.tsResponse.tasks.task.flowRun } 'Linked' { $response.tsResponse.linkedTasks.linkedTasks } 'DataAcceleration' { $response.tsResponse.tasks.task.dataAcceleration } } } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Remove-TableauTask { <# .SYNOPSIS Delete Extract Refresh or Data Acceleration Task .DESCRIPTION Deletes the specified extract refresh task or data acceleration task. .PARAMETER Type The type of the task, which corresponds to a specific API call. Supported types are: ExtractRefresh, DataAcceleration .PARAMETER TaskId The LUID of the task to remove. .EXAMPLE Remove-TableauTask -Type ExtractRefresh -TaskId $extractTaskId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#delete_extract_refresh_task .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#delete_data_acceleration_task #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][ValidateSet('ExtractRefresh','DataAcceleration')][string] $Type, # 'FlowRun' not supported [Parameter(Mandatory)][string] $TaskId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess("$Type $TaskId")) { switch ($Type) { 'ExtractRefresh' { Assert-TableauRestVersion -AtLeast 3.6 Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param extractRefreshes/$TaskId) -Method Delete } 'DataAcceleration' { Assert-TableauRestVersion -AtLeast 3.8 -LessThan 3.16 Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param dataAcceleration/$TaskId) -Method Delete } } } } function Start-TableauTaskNow { <# .SYNOPSIS Run Extract Refresh / Flow / Linked Task .DESCRIPTION Runs the specified extract refresh, flow run or linked task. .PARAMETER TaskId The LUID of the task to run. .PARAMETER Type The type of the task, which corresponds to a specific API call. Supported types are: ExtractRefresh, FlowRun, Linked .EXAMPLE $job = Start-TableauTaskNow -Type ExtractRefresh -TaskId $extractTaskId .EXAMPLE $job = Start-TableauTaskNow -Type FlowRun -TaskId $flowTaskId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#run_extract_refresh_task .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#run_flow_task .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_flow.htm#run_flow_now1 #> [CmdletBinding(SupportsShouldProcess)] [Alias('Run-TableauTask')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $TaskId, [Parameter(Mandatory)][ValidateSet('ExtractRefresh','FlowRun','Linked')][string] $Type ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess("$Type $TaskId")) { switch ($Type) { 'ExtractRefresh' { # Run Extract Refresh Task Assert-TableauRestVersion -AtLeast 2.6 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param extractRefreshes/$TaskId/runNow) -Body "<tsRequest />" -Method Post -ContentType 'application/xml' return $response.tsResponse.job } 'FlowRun' { # Run Flow Task Assert-TableauRestVersion -AtLeast 3.3 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param runFlow/$TaskId/runNow) -Body "<tsRequest />" -Method Post -ContentType 'application/xml' return $response.tsResponse.job } 'Linked' { # Run Linked Task Now Assert-TableauRestVersion -AtLeast 3.15 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param linked/$TaskId/runNow) -Body "<tsRequest />" -Method Post -ContentType 'application/xml' return $response.tsResponse.linkedTaskJob } } } } ### Extract and Encryption methods function Get-TableauExtractRefreshTask { <# .SYNOPSIS List Extract Refresh Tasks in Server Schedule .DESCRIPTION Returns a list of the extract refresh tasks for a specified server schedule on the specified site on Tableau Server. Not available for Tableau Cloud. .PARAMETER ScheduleId The LUID of the schedule to get extract information for. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $tasks = Get-TableauExtractRefreshTask -ScheduleId $extractScheduleId .NOTES https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#list_extract_refresh_tasks1 #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $ScheduleId, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Schedule -Param $ScheduleId/extracts $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.extracts.extract } until ($PageSize*$pageNumber -ge $totalAvailable) } function Add-TableauContentExtract { <# .SYNOPSIS Create an Extract for a Data Source / Create Extracts for Embedded Data Sources in a Workbook .DESCRIPTION Create/adds an extract for a data source or a workbook. .PARAMETER WorkbookId The LUID of the workbook. Either workbook ID or data source ID needs to be provided. .PARAMETER DatasourceId The LUID of the data source. Either workbook ID or data source ID needs to be provided. .PARAMETER EncryptExtracts (Optional) If true, then Tableau will attempt to encrypt the created extracts .EXAMPLE $job = Add-TableauContentExtract -WorkbookId = $workbookId .EXAMPLE $job = Add-TableauContentExtract -DatasourceId = $datasourceId -EncryptExtracts .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#create_extract_for_datasource .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#create_extracts_for_workbook #> [CmdletBinding(SupportsShouldProcess)] [Alias('Create-TableauContentExtract')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter()][switch] $EncryptExtracts ) Assert-TableauAuthToken if ($WorkbookId) { Assert-TableauRestVersion -AtLeast 3.5 $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId $shouldProcessItem = "workbook:$WorkbookId" } elseif ($DatasourceId) { Assert-TableauRestVersion -AtLeast 3.5 $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId $shouldProcessItem = "datasource:$DatasourceId" } $uri += "/createExtract" if ($EncryptExtracts) { $uri += "?encrypt=true" } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri $uri -Method Post return $response.tsResponse.job } } function Remove-TableauContentExtract { <# .SYNOPSIS Delete the Extract from a Data Source / Delete Extracts of Embedded Data Sources from a Workbook .DESCRIPTION Deletes the extract(s) inside a published data source or workbook. .PARAMETER WorkbookId The LUID of the workbook whose extract(s) are to be deleted. Either workbook ID or data source ID needs to be provided. .PARAMETER DatasourceId The LUID of the datasource whose extract is to be deleted. Either workbook ID or data source ID needs to be provided. .EXAMPLE Remove-TableauContentExtract -WorkbookId = $workbookId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#delete_extracts_from_workbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#delete_extract_from_datasource #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 if ($WorkbookId) { $uri = Get-TableauRequestUri -Endpoint Workbook -Param $WorkbookId $shouldProcessItem = "workbook:$WorkbookId" } elseif ($DatasourceId) { $uri = Get-TableauRequestUri -Endpoint Datasource -Param $DatasourceId $shouldProcessItem = "datasource:$DatasourceId" } $uri += "/deleteExtract" if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { Invoke-TableauRestMethod -Uri $uri -Method Post } } function New-TableauCloudExtractRefreshTask { <# .SYNOPSIS Create Cloud Extract Refresh Task .DESCRIPTION Creates a custom schedule for an extract refresh on Tableau Cloud. .PARAMETER WorkbookId The LUID of the workbook that should be included into the custom schedule. Either workbook ID or data source ID needs to be provided. .PARAMETER DatasourceId The LUID of the data source that should be included into the custom schedule. Either workbook ID or data source ID needs to be provided. .PARAMETER Type The type of extract refresh being scheduled: FullRefresh or IncrementalRefresh .PARAMETER Frequency The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. .PARAMETER StartTime The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional) For Hourly: the interval in hours between schedule runs. Valid value is 1. .PARAMETER IntervalMinutes (Optional) For Hourly: the interval in minutes between schedule runs. Valid value is 60. .PARAMETER IntervalWeekdays (Optional) For Hourly, Daily or Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthdayNr (Optional) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 3 should be provided. For last specific weekday day, the value 0 should be supplied. .PARAMETER IntervalMonthdayWeekday (Optional) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 'Tuesday' should be provided. For last day of the month, leave this parameter empty. .PARAMETER IntervalMonthdays (Optional) For Monthly, describing specific days in a month, e.g. for 3rd and 5th days, the list of values 3 and 5 should be provided. .EXAMPLE $extractTaskResult = New-TableauCloudExtractRefreshTask -WorkbookId $workbook.id -Type FullRefresh -Frequency Daily -StartTime 12:00:00 -IntervalHours 24 -IntervalWeekdays 'Sunday','Monday' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#create_cloud_extract_refresh_task #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauCloudExtractRefreshTask')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter()][ValidateSet('FullRefresh','IncrementalRefresh')][string] $Type = 'FullRefresh', [Parameter()][ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency = 'Daily', [Parameter()][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime = '00:00:00', [Parameter()][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter()][ValidateSet(1,2,4,6,8,12,24)][int] $IntervalHours, [Parameter()][ValidateSet(15,30,60)][int] $IntervalMinutes, [Parameter()][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter()][ValidateRange(0,5)][int] $IntervalMonthdayNr, [Parameter()][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string] $IntervalMonthdayWeekday, [Parameter()][ValidateRange(1,31)][int[]] $IntervalMonthdays ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.20 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_extr = $tsRequest.AppendChild($xml.CreateElement("extractRefresh")) $el_extr.SetAttribute("type", $Type) if ($WorkbookId) { $el_workbook = $el_extr.AppendChild($xml.CreateElement("workbook")) $el_workbook.SetAttribute("id", $WorkbookId) $shouldProcessItem = "workbook:$WorkbookId" } elseif ($DatasourceId) { $el_datasource = $el_extr.AppendChild($xml.CreateElement("datasource")) $el_datasource.SetAttribute("id", $DatasourceId) $shouldProcessItem = "datasource:$DatasourceId" } $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("frequency", $Frequency) $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) $el_freq.SetAttribute("start", $StartTime) if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) switch ($Frequency) { 'Hourly' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalMinutes) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("minutes", $IntervalMinutes) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Daily' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Weekly' { if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { if ($IntervalMonthdayNr -ge 0 -and $IntervalMonthdayWeekday) { $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) switch ($IntervalMonthdayNr) { 0 { $el_int.SetAttribute("monthDay", "LastDay") } 1 { $el_int.SetAttribute("monthDay", "First") } 2 { $el_int.SetAttribute("monthDay", "Second") } 3 { $el_int.SetAttribute("monthDay", "Third") } 4 { $el_int.SetAttribute("monthDay", "Fourth") } 5 { $el_int.SetAttribute("monthDay", "Fifth") } } $el_int.SetAttribute("weekDay", $IntervalMonthdayWeekday) } elseif ($IntervalMonthdayNr -eq 0) { # last day of the month $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", "LastDay") } elseif ($IntervalMonthdays) { foreach ($monthday in $IntervalMonthdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", $monthday) } } } } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param extractRefreshes) -Body $xml.OuterXml -Method Post # -ContentType 'application/xml' return $response.tsResponse } } function Set-TableauCloudExtractRefreshTask { <# .SYNOPSIS Update Cloud extract refresh task .DESCRIPTION Updates a custom schedule for an extract refresh task on Tableau Cloud. .PARAMETER TaskId The LUID of the extract refresh task. .PARAMETER WorkbookId The LUID of the workbook that should be included into the custom schedule. Either workbook ID or data source ID needs to be provided. .PARAMETER DatasourceId The LUID of the data source that should be included into the custom schedule. Either workbook ID or data source ID needs to be provided. .PARAMETER Type (Optional) The type of extract refresh being scheduled: FullRefresh or IncrementalRefresh .PARAMETER Frequency (Optional) The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. If frequency is supplied, the StartTime and other relevant frequency details parameters need to be also provided. .PARAMETER StartTime (Optional) The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional) For Hourly: the interval in hours between schedule runs. Valid value is 1. .PARAMETER IntervalMinutes (Optional) For Hourly: the interval in minutes between schedule runs. Valid value is 60. .PARAMETER IntervalWeekdays (Optional) For Hourly, Daily or Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthdayNr (Optional) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 3 should be provided. For last specific weekday day, the value 0 should be supplied. .PARAMETER IntervalMonthdayWeekday (Optional) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 'Tuesday' should be provided. For last day of the month, leave this parameter empty. .PARAMETER IntervalMonthdays (Optional) For Monthly, describing specific days in a month, e.g. for 3rd and 5th days, the list of values 3 and 5 should be provided. .EXAMPLE $extractTaskResult = Set-TableauCloudExtractRefreshTask -TaskId $taskId -DatasourceId $datasource.id -Type FullRefresh -Frequency Hourly -StartTime 08:00:00 -EndTime 20:00:00 -IntervalHours 6 -IntervalWeekdays 'Tuesday' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#update_cloud_extract_refresh_task #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauCloudExtractRefreshTask')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $TaskId, [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter()][ValidateSet('FullRefresh','IncrementalRefresh')][string] $Type, [Parameter()][ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency, [Parameter()][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime, [Parameter()][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter()][ValidateSet(1,2,4,6,8,12,24)][int] $IntervalHours, [Parameter()][ValidateSet(15,30,60)][int] $IntervalMinutes, [Parameter()][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter()][ValidateRange(0,5)][int] $IntervalMonthdayNr, # 0 for last day [Parameter()][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string] $IntervalMonthdayWeekday, [Parameter()][ValidateRange(1,31)][int[]] $IntervalMonthdays # specific month days ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.20 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_extr = $tsRequest.AppendChild($xml.CreateElement("extractRefresh")) if ($Type) { $el_extr.SetAttribute("type", $Type) } if ($WorkbookId) { $el_workbook = $el_extr.AppendChild($xml.CreateElement("workbook")) $el_workbook.SetAttribute("id", $WorkbookId) $shouldProcessItem = "workbook:$WorkbookId" } elseif ($DatasourceId) { $el_datasource = $el_extr.AppendChild($xml.CreateElement("datasource")) $el_datasource.SetAttribute("id", $DatasourceId) $shouldProcessItem = "datasource:$DatasourceId" } if ($Frequency) { $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("frequency", $Frequency) $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) $el_freq.SetAttribute("start", $StartTime) if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) switch ($Frequency) { 'Hourly' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalMinutes) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("minutes", $IntervalMinutes) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Daily' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Weekly' { if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { if ($IntervalMonthdayNr -ge 0 -and $IntervalMonthdayWeekday) { $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) switch ($IntervalMonthdayNr) { 0 { $el_int.SetAttribute("monthDay", "LastDay") } 1 { $el_int.SetAttribute("monthDay", "First") } 2 { $el_int.SetAttribute("monthDay", "Second") } 3 { $el_int.SetAttribute("monthDay", "Third") } 4 { $el_int.SetAttribute("monthDay", "Fourth") } 5 { $el_int.SetAttribute("monthDay", "Fifth") } } $el_int.SetAttribute("weekDay", $IntervalMonthdayWeekday) } elseif ($IntervalMonthdayNr -eq 0) { # last day of the month $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", "LastDay") } elseif ($IntervalMonthdays) { foreach ($monthday in $IntervalMonthdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", $monthday) } } } } } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Task -Param extractRefreshes/$TaskId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse } } function Set-TableauEncryption { <# .SYNOPSIS Encrypt Extracts in a Site / Decrypt Extracts in a Site / Reencrypt Extracts in a Site .DESCRIPTION Encrypts, decrypts or re-encrypts all extracts with new encryption keys on the specified site. Extract encryption at rest is a data security feature that allows you to encrypt .hyper extracts while they are stored on Tableau Server. Note: Depending on the number and size of extracts, this operation may consume significant server resources. Consider running this command outside of normal business hours. .PARAMETER EncryptExtracts Boolean switch, if supplied, the encryption of all extracts is triggered. .PARAMETER DecryptExtracts Boolean switch, if supplied, the decryption of all extracts is triggered. .PARAMETER ReencryptExtracts Boolean switch, if supplied, the re-encryption of all extracts is triggered. .PARAMETER SiteId Site LUID where the encryption process should be conducted. If omitted, the current site is used. .EXAMPLE Set-TableauEncryption -EncryptExtracts .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#encrypt_extracts .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#decrypt_extracts .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm#reencrypt_extracts #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Encrypt')][switch] $EncryptExtracts, [Parameter(Mandatory,ParameterSetName='Decrypt')][switch] $DecryptExtracts, [Parameter(Mandatory,ParameterSetName='Reencrypt')][switch] $ReencryptExtracts, [Parameter()][string] $SiteId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 if (-Not $SiteId) { $SiteId = $script:TableauSiteId } if ($EncryptExtracts) { if ($PSCmdlet.ShouldProcess("encrypt extracts on site $SiteId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param "$SiteId/encrypt-extracts") -Method Post } } elseif ($DecryptExtracts) { if ($PSCmdlet.ShouldProcess("decrypt extracts on site $SiteId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param "$SiteId/decrypt-extracts") -Method Post } } elseif ($ReencryptExtracts) { if ($PSCmdlet.ShouldProcess("reencrypt extracts on site $SiteId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Site -Param "$SiteId/reencrypt-extracts") -Method Post } } } ### Favorites methods function Get-TableauUserFavorite { <# .SYNOPSIS Get Favorites for User .DESCRIPTION Returns a list of favorite projects, data sources, views, workbooks, and flows for a user. .PARAMETER UserId The LUID of the user for which you want to get a list favorites. .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $favorites = Get-TableauUserFavorite -UserId (Get-TableauCurrentUserId) .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#get_favorites_for_user #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 2.5 $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.favorites.favorite } until ($PageSize*$pageNumber -ge $totalAvailable) } function Add-TableauUserFavorite { <# .SYNOPSIS Add Workbook / Data Source / View / Project / Flow to Favorites .DESCRIPTION Adds the specified content to a user's favorites. .PARAMETER UserId The LUID of the user to add the favorite for. .PARAMETER Label (Optional) A label to assign to the favorite. This value is displayed when you search for favorites on the server. Note: label has to be unique for the content type, if an existing label is supplied, an error is returned. If label is omitted, the content ID is used. .PARAMETER WorkbookId The LUID of the workbook to add as a favorite. .PARAMETER DatasourceId The LUID of the data source to add as a favorite. .PARAMETER ViewId The LUID of the view to add as a favorite. .PARAMETER ProjectId The LUID of the project to add as a favorite. .PARAMETER FlowId The LUID of the flow to add as a favorite. .EXAMPLE Add-TableauUserFavorite -UserId (Get-TableauCurrentUserId) -WorkbookId $workbook.id -Label $workbook.name .EXAMPLE Add-TableauUserFavorite -UserId (Get-TableauCurrentUserId) -ProjectId $reportsProjectId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#add_workbook_to_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#add_data_source_to_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#add_view_to_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#add_project_to_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#add_flow_to_favorites #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter()][string] $Label, [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Project')][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_favorite = $tsRequest.AppendChild($xml.CreateElement("favorite")) if ($WorkbookId) { $el_favorite.AppendChild($xml.CreateElement("workbook")).SetAttribute("id", $WorkbookId) if ($Label) { $el_favorite.SetAttribute("label", $Label) } else { $el_favorite.SetAttribute("label", $WorkbookId) } $shouldProcessItem = "user:$UserId, workbook:$WorkbookId" } elseif ($DatasourceId) { $el_favorite.AppendChild($xml.CreateElement("datasource")).SetAttribute("id", $DatasourceId) if ($Label) { $el_favorite.SetAttribute("label", $Label) } else { $el_favorite.SetAttribute("label", $DatasourceId) } $shouldProcessItem = "user:$UserId, datasource:$DatasourceId" } elseif ($ViewId) { $el_favorite.AppendChild($xml.CreateElement("view")).SetAttribute("id", $ViewId) if ($Label) { $el_favorite.SetAttribute("label", $Label) } else { $el_favorite.SetAttribute("label", $ViewId) } $shouldProcessItem = "user:$UserId, view:$ViewId" } elseif ($ProjectId) { Assert-TableauRestVersion -AtLeast 3.1 $el_favorite.AppendChild($xml.CreateElement("project")).SetAttribute("id", $ProjectId) if ($Label) { $el_favorite.SetAttribute("label", $Label) } else { $el_favorite.SetAttribute("label", $ProjectId) } $shouldProcessItem = "user:$UserId, project:$ProjectId" } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $el_favorite.AppendChild($xml.CreateElement("flow")).SetAttribute("id", $FlowId) if ($Label) { $el_favorite.SetAttribute("label", $Label) } else { $el_favorite.SetAttribute("label", $FlowId) } $shouldProcessItem = "user:$UserId, flow:$FlowId" } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Favorite -Param $UserId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.favorites.favorite } } function Remove-TableauUserFavorite { <# .SYNOPSIS Delete Workbook / Data Source / View / Project / Flow from Favorites .DESCRIPTION Removes the specified content to a user's favorites. .PARAMETER UserId The LUID of the user to remove favorite for. .PARAMETER WorkbookId The LUID of the workbook to remove from favorite. .PARAMETER DatasourceId The LUID of the data source to remove from favorite. .PARAMETER ViewId The LUID of the view to remove from favorite. .PARAMETER ProjectId The LUID of the project to remove from favorite. .PARAMETER FlowId The LUID of the flow to remove from favorite. .EXAMPLE Remove-TableauUserFavorite -UserId (Get-TableauCurrentUserId) -WorkbookId $workbook.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#delete_workbook_from_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#delete_data_source_from_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#delete_view_from_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#delete_project_from_favorites .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#ref_delete_flow_from_favorites #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='Datasource')][string] $DatasourceId, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='Project')][string] $ProjectId, [Parameter(Mandatory,ParameterSetName='Flow')][string] $FlowId ) Assert-TableauAuthToken if ($WorkbookId) { $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId/workbooks/$WorkbookId $shouldProcessItem = "user:$UserId, workbook:$WorkbookId" } elseif ($DatasourceId) { $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId/datasources/$DatasourceId $shouldProcessItem = "user:$UserId, datasource:$DatasourceId" } elseif ($ViewId) { $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId/views/$ViewId $shouldProcessItem = "user:$UserId, view:$ViewId" } elseif ($ProjectId) { Assert-TableauRestVersion -AtLeast 3.1 $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId/projects/$ProjectId $shouldProcessItem = "user:$UserId, project:$ProjectId" } elseif ($FlowId) { Assert-TableauRestVersion -AtLeast 3.3 $uri = Get-TableauRequestUri -Endpoint Favorite -Param $UserId/flows/$FlowId $shouldProcessItem = "user:$UserId, flow:$FlowId" } if ($PSCmdlet.ShouldProcess($shouldProcessItem)) { Invoke-TableauRestMethod -Uri $uri -Method Delete } } function Move-TableauUserFavorite { <# .SYNOPSIS Organize Favorites .DESCRIPTION Move an item to organize a user's favorites list. .PARAMETER UserId The LUID of the user to arrange favorites for. .PARAMETER FavoriteId The LUID of the specific favorite item to arrange. .PARAMETER FavoriteType The type of the specific favorite item to arrange. Valid types are Workbook, Datasource, View, Project, Flow. .PARAMETER AfterFavoriteId The LUID of a favorite item that should precede (insert the specific favorite after this item). .PARAMETER AfterFavoriteType The type of a favorite item that should precede (insert the specific favorite after this item). Valid types are Workbook, Datasource, View, Project, Flow. .EXAMPLE Move-TableauUserFavorite -UserId (Get-TableauCurrentUserId) -FavoriteId $view.id -FavoriteType View -AfterFavoriteId $view2.id -AfterFavoriteType View .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_favorites.htm#update_favorites #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $UserId, [Parameter(Mandatory)][string] $FavoriteId, [Parameter(Mandatory)][ValidateSet('Workbook','Datasource','View','Project','Flow')][string] $FavoriteType, [Parameter(Mandatory)][string] $AfterFavoriteId, [Parameter(Mandatory)][ValidateSet('Workbook','Datasource','View','Project','Flow')][string] $AfterFavoriteType ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.8 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_fos = $tsRequest.AppendChild($xml.CreateElement("favoriteOrderings")) $el_fo = $el_fos.AppendChild($xml.CreateElement("favoriteOrdering")) $el_fo.SetAttribute("favoriteId", $FavoriteId) $el_fo.SetAttribute("favoriteType", $FavoriteType.ToLower()) # note: needs to be lowercase, otherwise TS will return error 400 $el_fo.SetAttribute("favoriteIdMoveAfter", $AfterFavoriteId) $el_fo.SetAttribute("favoriteTypeMoveAfter", $AfterFavoriteType.ToLower()) # note: needs to be lowercase, otherwise TS will return error 400 if ($PSCmdlet.ShouldProcess("user:$UserId, favorite($FavoriteType):$FavoriteId, after($AfterFavoriteType):$AfterFavoriteId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint OrderFavorite -Param $UserId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' } } ### Subscription methods function Get-TableauSubscription { <# .SYNOPSIS Get Subscription / List Subscriptions .DESCRIPTION Returns information about the specified subscription, or a list of subscriptions. .PARAMETER SubscriptionId Get Subscription: The ID of the subscription to get information for. .PARAMETER PageSize (Optional, List Subscriptions) Page size when paging through results. .EXAMPLE $subscriptions = Get-TableauSubscription .EXAMPLE $subscription = Get-TableauSubscription -SubscriptionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_subscriptions.htm#get_subscription .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_subscriptions.htm#list_subscriptions #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='SubscriptionById')][string] $SubscriptionId, [Parameter(ParameterSetName='Subscriptions')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken if ($SubscriptionId) { # Get Subscription $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Subscription -Param $SubscriptionId) -Method Get $response.tsResponse.subscription } else { # List Subscriptions $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Subscription $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.subscriptions.subscription } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauSubscription { <# .SYNOPSIS Create Subscription .DESCRIPTION Creates a new, unsuspended subscription to a view or workbook for a specific user on Tableau Server and Tableau Cloud. When a user is subscribed to the content, Tableau sends the content to the user in email on the schedule that you define. .PARAMETER Subject A description, or subject for the subscription. This subject is displayed when users list subscriptions for a site in the server environment. .PARAMETER Message The text body of the subscription email message. .PARAMETER UserId The LUID of the user to create the subscription for. .PARAMETER ContentType Workbook to create a subscription for a workbook, or View to create a subscription for a view. .PARAMETER ContentId The LUID of the workbook or view to subscribe to. .PARAMETER SendIfViewEmpty (Optional) Applies to views only. If true, an image is sent even if the view specified in a subscription is empty. If false, nothing is sent if the view is empty. The default value is true. .PARAMETER AttachImage (Optional) Setting this true will cause the subscriber to receive mail with .png images of workbooks or views attached to it. .PARAMETER AttachPdf (Optional) Setting this true will cause the subscriber to receive mail with a .pdf file containing images of workbooks or views attached to it. .PARAMETER PageType (Optional, for PDF) The type of page, which determines the page dimensions of the .pdf file returned. The value can be: A3, A4, A5, B5, Executive, Folio, Ledger, Legal, Letter, Note, Quarto, or Tabloid. Default is A4. .PARAMETER PageOrientation (Optional, for PDF) The orientation of the pages in the .pdf file produced. The value can be Portrait or Landscape. Default is Portrait. .PARAMETER ScheduleId (Optional) The ID of a schedule to associate the subscription with. This needs to be provided only for Tableau Server Request, but not for Tableau Cloud. .PARAMETER Frequency (Optional, for Tableau Cloud) The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. If frequency is supplied, the StartTime and other relevant frequency details parameters need to be also provided. .PARAMETER StartTime (Optional, for Tableau Cloud) The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional, for Tableau Cloud) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional, for Tableau Cloud) For Hourly: the interval in hours between schedule runs. Valid value is 1. .PARAMETER IntervalMinutes (Optional, for Tableau Cloud) For Hourly: the interval in minutes between schedule runs. Valid value is 60. .PARAMETER IntervalWeekdays (Optional, for Tableau Cloud) For Hourly, Daily or Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthdayNr (Optional, for Tableau Cloud) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 3 should be provided. For last specific weekday day, the value 0 should be supplied. .PARAMETER IntervalMonthdayWeekday (Optional, for Tableau Cloud) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 'Tuesday' should be provided. For last day of the month, leave this parameter empty. .PARAMETER IntervalMonthdays (Optional, for Tableau Cloud) For Monthly, describing specific days in a month, e.g. for 3rd and 5th days, the list of values 3 and 5 should be provided. .EXAMPLE $subscription = New-TableauSubscription -ScheduleId $subscriptionScheduleId -ContentType Workbook -ContentId $workbook.id -Subject "test" -Message "Test subscription" -UserId (Get-TableauCurrentUserId) .EXAMPLE $subscription = New-TableauSubscription -ContentType View -ContentId $view.id -Subject "test" -Message "Test subscription" -UserId (Get-TableauCurrentUserId) -Frequency Weekly -StartTime 12:00:00 -IntervalWeekdays 'Sunday' .NOTES https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_subscriptions.htm#create_subscription #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauSubscription')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Subject, [Parameter(Mandatory)][string] $Message, [Parameter(Mandatory)][string] $UserId, [Parameter(Mandatory)][ValidateSet('Workbook','View')][string] $ContentType, [Parameter(Mandatory)][string] $ContentId, [Parameter()][ValidateSet('true','false')][string] $SendIfViewEmpty = 'true', [Parameter()][ValidateSet('true','false')][string] $AttachImage = 'true', [Parameter()][ValidateSet('true','false')][string] $AttachPdf = 'false', [Parameter()][ValidateSet('A3','A4','A5','B4','B5','Executive','Folio','Ledger','Legal','Letter','Note','Quarto','Tabloid')][string] $PageType = 'A4', [Parameter()][ValidateSet('Portrait','Landscape')][string] $PageOrientation = 'Portrait', [Parameter(Mandatory,ParameterSetName='ServerSchedule')][string] $ScheduleId, [Parameter(Mandatory,ParameterSetName='CloudSchedule')][ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency = 'Daily', [Parameter(Mandatory,ParameterSetName='CloudSchedule')][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime = '00:00:00', [Parameter(ParameterSetName='CloudSchedule')][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet(1,2,4,6,8,12,24)][int] $IntervalHours, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet(15,30,60)][int] $IntervalMinutes, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter(ParameterSetName='CloudSchedule')][ValidateRange(0,5)][int] $IntervalMonthdayNr, # 0 for last day [Parameter(ParameterSetName='CloudSchedule')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string] $IntervalMonthdayWeekday, [Parameter(ParameterSetName='CloudSchedule')][ValidateRange(1,31)][int[]] $IntervalMonthdays # specific month days ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_subs = $tsRequest.AppendChild($xml.CreateElement("subscription")) $el_subs.SetAttribute("subject", $Subject) $el_subs.SetAttribute("message", $Message) $el_subs.SetAttribute("attachImage", $AttachImage) $el_subs.SetAttribute("attachPdf", $AttachPdf) if ($AttachPd -eq 'true') { $el_subs.SetAttribute("pageOrientation", $PageOrientation) $el_subs.SetAttribute("pageSizeOption", $PageType) } $el_content = $el_subs.AppendChild($xml.CreateElement("content")) $el_content.SetAttribute("id", $ContentId) $el_content.SetAttribute("type", $ContentType) if ($ContentType -eq 'View') { $el_content.SetAttribute("sendIfViewEmpty", $SendIfViewEmpty) } $el_user = $el_subs.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $UserId) if ($ScheduleId) { # Create Subscription on Tableau Server $el_sched = $el_subs.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("id", $ScheduleId) } elseif ($Frequency) { # Create Subscription on Tableau Cloud Assert-TableauRestVersion -AtLeast 3.20 $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("frequency", $Frequency) $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) $el_freq.SetAttribute("start", $StartTime) if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) switch ($Frequency) { 'Hourly' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalMinutes) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("minutes", $IntervalMinutes) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Daily' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Weekly' { if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { if ($IntervalMonthdayNr -ge 0 -and $IntervalMonthdayWeekday) { $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) switch ($IntervalMonthdayNr) { 0 { $el_int.SetAttribute("monthDay", "LastDay") } 1 { $el_int.SetAttribute("monthDay", "First") } 2 { $el_int.SetAttribute("monthDay", "Second") } 3 { $el_int.SetAttribute("monthDay", "Third") } 4 { $el_int.SetAttribute("monthDay", "Fourth") } 5 { $el_int.SetAttribute("monthDay", "Fifth") } } $el_int.SetAttribute("weekDay", $IntervalMonthdayWeekday) } elseif ($IntervalMonthdayNr -eq 0) { # last day of the month $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", "LastDay") } elseif ($IntervalMonthdays) { foreach ($monthday in $IntervalMonthdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", $monthday) } } } } } if ($PSCmdlet.ShouldProcess($Subject)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Subscription) -Body $xml.OuterXml -Method Post return $response.tsResponse.subscription } } function Set-TableauSubscription { <# .SYNOPSIS Update Subscription .DESCRIPTION Modifies an existing subscription on Tableau Server. You can change the subject, server schedule, and suspension state for the subscription. .PARAMETER SubscriptionId The LUID of the subscription to update. .PARAMETER Subject (Optional) The new description, or subject for the subscription. .PARAMETER Message (Optional) The new text body of the subscription email message. .PARAMETER UserId (Optional) The LUID of the user to create the subscription for. .PARAMETER ContentType (Optional) Workbook to create a subscription for a workbook, or View to create a subscription for a view. .PARAMETER ContentId (Optional) The LUID of the workbook or view to subscribe to. .PARAMETER SendIfViewEmpty (Optional) Applies to views only. If true, an image is sent even if the view specified in a subscription is empty. If false, nothing is sent if the view is empty. The default value is true. .PARAMETER AttachImage (Optional) Setting this true will cause the subscriber to receive mail with .png images of workbooks or views attached to it. .PARAMETER AttachPdf (Optional) Setting this true will cause the subscriber to receive mail with a .pdf file containing images of workbooks or views attached to it. .PARAMETER PageType (Optional, for PDF) The type of page, which determines the page dimensions of the .pdf file returned. The value can be: A3, A4, A5, B5, Executive, Folio, Ledger, Legal, Letter, Note, Quarto, or Tabloid. Default is A4. .PARAMETER PageOrientation (Optional, for PDF) The orientation of the pages in the .pdf file produced. The value can be Portrait or Landscape. Default is Portrait. .PARAMETER Suspended (Optional) Supply 'true' to suspend the subscription, or 'false' to unsuspend it. .PARAMETER ScheduleId (Optional) The ID of a schedule to associate the subscription with. This needs to be provided only for Tableau Server Request, but not for Tableau Cloud. .PARAMETER Frequency (Optional, for Tableau Cloud) The frequency granularity of the schedule executions: Hourly, Daily, Weekly or Monthly. If frequency is supplied, the StartTime and other relevant frequency details parameters need to be also provided. .PARAMETER StartTime (Optional, for Tableau Cloud) The starting daytime for scheduled jobs. For Hourly: the starting time of execution period (for example, 18:30:00). .PARAMETER EndTime (Optional, for Tableau Cloud) For Hourly: the ending time for execution period (for example, 21:00:00). .PARAMETER IntervalHours (Optional, for Tableau Cloud) For Hourly: the interval in hours between schedule runs. Valid value is 1. .PARAMETER IntervalMinutes (Optional, for Tableau Cloud) For Hourly: the interval in minutes between schedule runs. Valid value is 60. .PARAMETER IntervalWeekdays (Optional, for Tableau Cloud) For Hourly, Daily or Weekly: list of weekdays, when the schedule runs. The week days are specified strings (weekday names in English). .PARAMETER IntervalMonthdayNr (Optional, for Tableau Cloud) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 3 should be provided. For last specific weekday day, the value 0 should be supplied. .PARAMETER IntervalMonthdayWeekday (Optional, for Tableau Cloud) For Monthly, describing which occurrence of a weekday within the month, e.g. for 3rd Tuesday, the value 'Tuesday' should be provided. For last day of the month, leave this parameter empty. .PARAMETER IntervalMonthdays (Optional, for Tableau Cloud) For Monthly, describing specific days in a month, e.g. for 3rd and 5th days, the list of values 3 and 5 should be provided. .EXAMPLE $subscription = Set-TableauSubscription -SubscriptionId $subscription.id -ScheduleId $subscriptionScheduleId -ContentType View -ContentId $view.id -Subject "Subscription test" .EXAMPLE $subscription = Set-TableauSubscription -SubscriptionId $subscription.id -ContentType View -ContentId $view.id -Subject "test1" -Message "Test subscription1" -UserId (Get-TableauCurrentUserId) -Frequency Monthly -StartTime 14:00:00 -IntervalMonthdays 5,10 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_subscriptions.htm#update_subscription #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSubscription')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SubscriptionId, [Parameter()][string] $Subject, [Parameter()][string] $Message, [Parameter()][string] $UserId, [Parameter()][ValidateSet('Workbook','View')][string] $ContentType, [Parameter()][string] $ContentId, [Parameter()][ValidateSet('true','false')][string] $SendIfViewEmpty, [Parameter()][ValidateSet('true','false')][string] $AttachImage, [Parameter()][ValidateSet('true','false')][string] $AttachPdf, [Parameter()][ValidateSet('A3','A4','A5','B4','B5','Executive','Folio','Ledger','Legal','Letter','Note','Quarto','Tabloid')][string] $PageType, [Parameter()][ValidateSet('Portrait','Landscape')][string] $PageOrientation, [Parameter()][ValidateSet('true','false')][string] $Suspended, [Parameter(ParameterSetName='ServerSchedule')][string] $ScheduleId, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet('Hourly','Daily','Weekly','Monthly')][string] $Frequency, [Parameter(ParameterSetName='CloudSchedule')][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $StartTime, [Parameter(ParameterSetName='CloudSchedule')][ValidatePattern('^[0-2][0-9]:[0-5][0-9]:[0-5][0-9]$')][string] $EndTime, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet(1,2,4,6,8,12,24)][int] $IntervalHours, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet(15,30,60)][int] $IntervalMinutes, [Parameter(ParameterSetName='CloudSchedule')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string[]] $IntervalWeekdays, [Parameter(ParameterSetName='CloudSchedule')][ValidateRange(0,5)][int] $IntervalMonthdayNr, # 0 for last day [Parameter(ParameterSetName='CloudSchedule')][ValidateSet('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday')][string] $IntervalMonthdayWeekday, [Parameter(ParameterSetName='CloudSchedule')][ValidateRange(1,31)][int[]] $IntervalMonthdays # specific month days ) Assert-TableauAuthToken $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_subs = $tsRequest.AppendChild($xml.CreateElement("subscription")) if ($Subject) { $el_subs.SetAttribute("subject", $Subject) } if ($Message) { $el_subs.SetAttribute("message", $Message) } if ($AttachImage) { $el_subs.SetAttribute("attachImage", $AttachImage) } if ($AttachPdf) { $el_subs.SetAttribute("attachPdf", $AttachPdf) } if ($AttachPdf -eq 'true' -and $PageOrientation) { $el_subs.SetAttribute("pageOrientation", $PageOrientation) } if ($AttachPdf -eq 'true' -and $PageType) { $el_subs.SetAttribute("pageSizeOption", $PageType) } if ($Suspended) { $el_subs.SetAttribute("suspended", $Suspended) } if ($ContentId -or $SendIfViewEmpty) { $el_content = $el_subs.AppendChild($xml.CreateElement("content")) if ($ContentId) { $el_content.SetAttribute("id", $ContentId) } if ($ContentType) { $el_content.SetAttribute("type", $ContentType) } if ($SendIfViewEmpty) { $el_content.SetAttribute("sendIfViewEmpty", $SendIfViewEmpty) } } if ($UserId) { $el_user = $el_subs.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $UserId) } if ($ScheduleId) { # Update Subscription on Tableau Server $el_sched = $el_subs.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("id", $ScheduleId) } elseif ($Frequency) { # Update Subscription on Tableau Cloud Assert-TableauRestVersion -AtLeast 3.20 $el_sched = $tsRequest.AppendChild($xml.CreateElement("schedule")) $el_sched.SetAttribute("frequency", $Frequency) $el_freq = $el_sched.AppendChild($xml.CreateElement("frequencyDetails")) $el_freq.SetAttribute("start", $StartTime) if ($EndTime) { $el_freq.SetAttribute("end", $EndTime) } $el_ints = $el_freq.AppendChild($xml.CreateElement("intervals")) switch ($Frequency) { 'Hourly' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalMinutes) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("minutes", $IntervalMinutes) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Daily' { if ($IntervalHours) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("hours", $IntervalHours) } if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Weekly' { if ($IntervalWeekdays) { foreach ($weekday in $IntervalWeekdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("weekDay", $weekday) } } } 'Monthly' { if ($IntervalMonthdayNr -ge 0 -and $IntervalMonthdayWeekday) { $el_int = $el_ints.AppendChild($xml.CreateElement("interval")) switch ($IntervalMonthdayNr) { 0 { $el_int.SetAttribute("monthDay", "LastDay") } 1 { $el_int.SetAttribute("monthDay", "First") } 2 { $el_int.SetAttribute("monthDay", "Second") } 3 { $el_int.SetAttribute("monthDay", "Third") } 4 { $el_int.SetAttribute("monthDay", "Fourth") } 5 { $el_int.SetAttribute("monthDay", "Fifth") } } $el_int.SetAttribute("weekDay", $IntervalMonthdayWeekday) } elseif ($IntervalMonthdayNr -eq 0) { # last day of the month $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", "LastDay") } elseif ($IntervalMonthdays) { foreach ($monthday in $IntervalMonthdays) { $el_ints.AppendChild($xml.CreateElement("interval")).SetAttribute("monthDay", $monthday) } } } } } if ($PSCmdlet.ShouldProcess($SubscriptionId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Subscription -Param $SubscriptionId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.subscription } } function Remove-TableauSubscription { <# .SYNOPSIS Delete Subscription .DESCRIPTION Deletes the specified subscription on Tableau Server or Tableau Cloud. .PARAMETER SubscriptionId The ID of the subscription to delete. .EXAMPLE Remove-TableauSubscription -SubscriptionId $subscriptionId .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_subscriptions.htm#delete_subscription #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SubscriptionId ) Assert-TableauAuthToken if ($PSCmdlet.ShouldProcess($SubscriptionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Subscription -Param $SubscriptionId) -Method Delete } } ### Tableau Extensions Settings Methods function Get-TableauServerSettingsExtension { <# .SYNOPSIS List Tableau extensions server settings or List dashboard extension settings of server - Retired in API 3.21 .DESCRIPTION Lists the settings for extensions of a server. This method can only be called by server administrators; it is not available on Tableau Cloud. Note: for API prior to 3.21, the method calls a different API endpoint, which returns a PSCustomObject from JSON - see online help for more details. .EXAMPLE $settings = Get-TableauServerSettingsExtension .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_tableau_extensions_settings.htm#list_tableau_extensions_server_settings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_getDashboardExtensionsServerSettings #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken if ($script:TableauRestVersion -ge 3.21) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSetting -Param extensions) -Method Get return $response.tsResponse.extensionsServerSettings } else { Assert-TableauRestVersion -AtLeast 3.11 Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard) -Method Get } } function Set-TableauServerSettingsExtension { <# .SYNOPSIS Update Tableau extensions server settings or Update dashboard extensions settings of server - Retired in API 3.21 .DESCRIPTION Updates the settings for extensions of a server. This method can only be called by server administrators; it is not available on Tableau Cloud. Note: for API prior to 3.21, the method calls a different API endpoint, which returns a PSCustomObject from JSON - see online help for more details. .PARAMETER Enabled True/false. True: extensions are allowed to run on the server. False: all extendions are disabled on the server. .PARAMETER BlockList (Optional) List of domains that are not allowed to serve extensions to the Tableau Server. Domains are in the form of https://blocked_example.com .PARAMETER BlockListLegacyAPI (Optional) For API prior to 3.21: Object containing the extension block list settings (see online API help). .EXAMPLE $settings = Set-TableauServerSettingsExtension -Enabled true -BlockList 'https://test.com' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_tableau_extensions_settings.htm#update_tableau_extensions_server_settings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_updateDashboardExtensionsServerSettings #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauServerSettingsExtension')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][ValidateSet('true','false')][string] $Enabled, [Parameter()][string[]] $BlockList, [Parameter()][pscustomobject] $BlockListLegacyAPI ) Assert-TableauAuthToken if ($script:TableauRestVersion -ge 3.21) { $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_settings = $tsRequest.AppendChild($xml.CreateElement("extensionsServerSettings")) $el_enabled = $el_settings.AppendChild($xml.CreateElement("extensionsGloballyEnabled")) $el_enabled.InnerText = $Enabled if ($BlockList) { foreach ($blockext in $BlockList) { $el_settings.AppendChild($xml.CreateElement("blockList")).InnerText = $blockext } } if ($PSCmdlet.ShouldProcess("Server Extensions: $Enabled")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSetting -Param extensions) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.extensionsServerSettings } } else { Assert-TableauRestVersion -AtLeast 3.11 $options = @{ extensions_enabled=$Enabled; } if ($BlockListLegacyAPI) { $options.block_list_items = $BlockListLegacyAPI } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess("Server Extensions: $Enabled")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard) -Body $jsonBody -Method Put -ContentType 'application/json' } } } function Get-TableauSiteSettingsExtension { <# .SYNOPSIS List Tableau extensions site settings or List dashboard extension settings of site - Retired in API 3.21 .DESCRIPTION Lists the settings for extensions of a site. This method can only be called by site or server administrators. Note: for API prior to 3.21, the method calls a different API endpoint, which returns a PSCustomObject from JSON - see online help for more details. .EXAMPLE $settings = Get-TableauSiteSettingsExtension .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_tableau_extensions_settings.htm#list_tableau_extensions_site_settings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsSiteSettingsService_getDashboardExtensionsSiteSettings #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken if ($script:TableauRestVersion -ge 3.21) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Setting -Param extensions) -Method Get return $response.tsResponse.extensionsSiteSettings } else { Assert-TableauRestVersion -AtLeast 3.11 Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard) -Method Get } } function Set-TableauSiteSettingsExtension { <# .SYNOPSIS Update Tableau extensions site settings or Update dashboard extension settings of site - Retired in API 3.21 .DESCRIPTION Updates the settings for extensions of a site. This method can only be called by site or server administrators. Note: for API prior to 3.21, the method calls a different API endpoint, which returns a PSCustomObject from JSON - see online help for more details. .PARAMETER Enabled True/false. True: extensions are allowed to run on the site. False: no extensions are allowed to run on the site even if their URL is in the site safelist. .PARAMETER AllowSandboxed (Optional) True/false. If extensions are enabled on the server, this setting allows to run sandboxed extensions by default, unless an extension is not specifically blocked on the server. .PARAMETER SafeList (Optional) List of URLs of the extensions that are allowed to run on the site and their properties (full data access, prompt to run). An extension permissions to run an a site are also dependent on the domain of the URL not being present on the server blocklist, and server and site extension enablement being true. Note that updating the safelist replaces the existing list with the new list. If you want to add a URL to the existing list, you must also include the existing URLs in the new list. .PARAMETER SafeListLegacyAPI (Optional) For API prior to 3.21: Object containing the extension safe list settings (see online API help). .EXAMPLE $settings = Set-TableauSiteSettingsExtension -Enabled true -SafeList @{url='https://test.com';fullDataAllowed='true';promptNeeded='true'} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_tableau_extensions_settings.htm#update_tableau_extensions_site_settings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsSiteSettingsService_updateDashboardExtensionsSiteSettings #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSiteSettingsExtension')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][ValidateSet('true','false')][string] $Enabled, [Parameter()][ValidateSet('true','false')][string] $AllowSandboxed, [Parameter()][hashtable[]] $SafeList, [Parameter()][pscustomobject] $SafeListLegacyAPI ) Assert-TableauAuthToken if ($script:TableauRestVersion -ge 3.21) { $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_settings = $tsRequest.AppendChild($xml.CreateElement("extensionsSiteSettings")) $el_enabled = $el_settings.AppendChild($xml.CreateElement("extensionsEnabled")) $el_enabled.InnerText = $Enabled if ($AllowSandboxed) { $el_settings.AppendChild($xml.CreateElement("useDefaultSetting")).InnerText = $AllowSandboxed } if ($SafeList) { foreach ($safeext in $SafeList) { $el_safe = $el_settings.AppendChild($xml.CreateElement("safeList")) $el_safe.AppendChild($xml.CreateElement("url")).InnerText = $safeext.url $el_safe.AppendChild($xml.CreateElement("fullDataAllowed")).InnerText = $safeext.fullDataAllowed $el_safe.AppendChild($xml.CreateElement("promptNeeded")).InnerText = $safeext.promptNeeded } } # Write-Debug ($xml.OuterXml | ConvertTo-Json -Compress) if ($PSCmdlet.ShouldProcess("Site Extensions: $Enabled")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Setting -Param extensions) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.extensionsSiteSettings } } else { # legacy API Assert-TableauRestVersion -AtLeast 3.11 if (-not $AllowSandboxed) { $AllowSandboxed = 'true'; # override to true, this parameter is required in legacy API } $options = @{ extensions_enabled=$Enabled; allow_sandboxed = $AllowSandboxed } if ($SafeListLegacyAPI) { $options.safe_list_items = $SafeListLegacyAPI } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess("Site Extensions: $Enabled")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard) -Body $jsonBody -Method Put -ContentType 'application/json' } } } ### Dashboard Extensions Settings methods - introduced in API 3.11, retired in API 3.21 function Get-TableauServerSettingsBlockedExtension { <# .SYNOPSIS List blocked dashboard extensions on server - Retired in API 3.21 or Get blocked dashboard extension on server - Retired in API 3.21 .DESCRIPTION Lists the dashboard extensions on the blocked list of a server, or retrieves the details of a blocked extension. This method can only be called by server administrators; it is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionId (Optional) The unique ID of the extension on the blocked list. .EXAMPLE $settings = Get-TableauServerSettingsBlockedExtension .EXAMPLE $ext = Get-TableauServerSettingsBlockedExtension -ExtensionId $eid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_getDashboardExtensionsBlockListItems .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_getDashboardExtensionsBlockListItem #> [OutputType([PSCustomObject])] Param( [Parameter()][string] $ExtensionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 if ($ExtensionId) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard/blockListItems/$ExtensionId) -Method Get } else { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard/blockListItems) -Method Get } } function Add-TableauServerSettingsBlockedExtension { <# .SYNOPSIS Block dashboard extension on server - Retired in API 3.21 .DESCRIPTION Adds a dashboard extension to the block list of a server. This method can only be called by server administrators; it is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionUrl Location of the dashboard extension to be blocked from a site. .PARAMETER ExtensionId The unique ID of the extension on the blocked list. .EXAMPLE $ext = Add-TableauServerSettingsBlockedExtension -ExtensionUrl 'https://test.com' .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_createDashboardExtensionsBlockListItem #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ExtensionUrl ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 $options = @{ url=$ExtensionUrl; } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($ExtensionUrl)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard/blockListItems) -Body $jsonBody -Method Post -ContentType 'application/json' } } function Remove-TableauServerSettingsBlockedExtension { <# .SYNOPSIS Unblock dashboard extension on server - Retired in API 3.21 .DESCRIPTION Deletes a specific extension from the block list of a server. This method can only be called by server administrators; it is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionId The unique ID of the extension on the blocked list. .EXAMPLE $response = Remove-TableauServerSettingsBlockedExtension -ExtensionId $eid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_deleteDashboardExtensionsBlockListItem #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ExtensionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 if ($PSCmdlet.ShouldProcess($ExtensionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/server/extensions/dashboard/blockListItems/$ExtensionId) -Method Delete } } function Get-TableauSiteSettingsAllowedExtension { <# .SYNOPSIS List allowed dashboard extensions on site - Retired in API 3.21 or Get allowed dashboard extension on site - Retired in API 3.21 .DESCRIPTION Lists the dashboard extensions on the safe list of the site you are signed into, or Gets the details of a specific dashboard extension on the safe list of the site you are signed into. This method is retired and is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionId (Optional) The unique ID of the extension on the allowed list. .EXAMPLE $settings = Get-TableauSiteSettingsAllowedExtension .EXAMPLE $ext = Get-TableauSiteSettingsAllowedExtension -ExtensionId $eid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_getDashboardExtensionsSafeListItems .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsSiteSettingsService_getDashboardExtensionsSafeListItem #> [OutputType([PSCustomObject])] Param( [Parameter()][string] $ExtensionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 if ($ExtensionId) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard/safeListItems/$ExtensionId) -Method Get } else { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard/safeListItems) -Method Get } } function Set-TableauSiteSettingsAllowedExtension { <# .SYNOPSIS Update settings for allowed dashboard extension on site - Retired in API 3.21 .DESCRIPTION Updates the settings of a specific dashboard extension in the safe list of the site you are signed into. This method is retired and is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionId The unique ID of the extension on the allowed list. .PARAMETER ExtensionUrl Location (URL) of the dashboard extension to be allowed on a site. .PARAMETER AllowFullData When true, the extension has access to underlying data of a workbook. This setting is only effective when the extension is on the site safe list. .PARAMETER PromptNeeded When true, the user will be prompted to grant an extension access to the underlying data of a workbook. This setting is only effective when the extension is on the site safe list. .EXAMPLE $ext = Set-TableauSiteSettingsAllowedExtension -ExtensionId $eid -ExtensionUrl "https://test.com" -AllowFullData false -PromptNeeded false .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsSiteSettingsService_updateDashboardExtensionsSafeListItem #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ExtensionId, [Parameter(Mandatory)][string] $ExtensionUrl, [Parameter(Mandatory)][ValidateSet('true','false')][string] $AllowFullData, [Parameter(Mandatory)][ValidateSet('true','false')][string] $PromptNeeded ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 $options = @{ safe_list_item_luid=$ExtensionId; url=$ExtensionUrl; allow_full_data=$AllowFullData; prompt_needed=$PromptNeeded; } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($ExtensionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard/safeListItems/$ExtensionId) -Body $jsonBody -Method Put -ContentType 'application/json' } } function Add-TableauSiteSettingsAllowedExtension { <# .SYNOPSIS Allow dashboard extension on site - Retired in API 3.21 .DESCRIPTION Adds a dashboard extension to the safe list of the site you are signed into. This method is retired and is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionUrl Location (URL) of the dashboard extension to be allowed on a site. .PARAMETER AllowFullData When true, the extension has access to underlying data of a workbook. This setting is only effective when the extension is on the site safe list. .PARAMETER PromptNeeded When true, the user will be prompted to grant an extension access to the underlying data of a workbook. This setting is only effective when the extension is on the site safe list. .EXAMPLE $ext = Add-TableauSiteSettingsAllowedExtension -ExtensionUrl "https://test.com" -AllowFullData false -PromptNeeded false .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_createDashboardExtensionsBlockListItem #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ExtensionUrl, [Parameter(Mandatory)][ValidateSet('true','false')][string] $AllowFullData, [Parameter(Mandatory)][ValidateSet('true','false')][string] $PromptNeeded ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 $options = @{ url=$ExtensionUrl; allow_full_data=$AllowFullData; prompt_needed=$PromptNeeded; } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($ExtensionUrl)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard/safeListItems) -Body $jsonBody -Method Post -ContentType 'application/json' } } function Remove-TableauSiteSettingsAllowedExtension { <# .SYNOPSIS Disallow dashboard extension on site - Retired in API 3.21 .DESCRIPTION Deletes a specific dashboard extension from the safe list of the site you are signed into. This method is retired and is not available on Tableau Cloud. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ExtensionId The unique ID of the extension on the allowed list. .EXAMPLE $response = Remove-TableauSiteSettingsAllowedExtension -ExtensionId $eid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_dashboard_extensions_settings.htm#DashboardExtensionsServerSettingsService_deleteDashboardExtensionsBlockListItem #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ExtensionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 -LessThan 3.21 if ($PSCmdlet.ShouldProcess($ExtensionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/dashboard/safeListItems/$ExtensionId) -Method Delete } } ### Analytics Extensions Settings methods function Get-TableauAnalyticsExtension { <# .SYNOPSIS List analytics extension connections on site or List analytics extension connections of workbook or Get analytics extension connection details or Get current analytics extension for workbook .DESCRIPTION Retrieves a list of configured analytics extensions for a site or workbook or Retrieves the details of the configured analytics extension for a site or workbook This method returns a PSCustomObject (from JSON response) - see online help for more details. .PARAMETER ConnectionId The LUID of the connection to get the details for. .PARAMETER WorkbookId The LUID of the workbook to get the list of connections, or connection details for. .PARAMETER Current (Switch) Specifies if the current analytics extension for workbook should be retrieved. .EXAMPLE $list = Get-TableauAnalyticsExtension .EXAMPLE $ext = Get-TableauAnalyticsExtension -ConnectionId $conn .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getAnalyticsExtensionsConnections .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getConnectionOptionsForWorkbook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getAnalyticsExtensionsConnection .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getSelectedConnectionForWorkbook #> [OutputType([PSCustomObject])] Param( [Parameter(ParameterSetName='Connection')][string] $ConnectionId, [Parameter(Mandatory,ParameterSetName='Workbook')] [Parameter(Mandatory,ParameterSetName='WorkbookCurrent')] [string] $WorkbookId, [Parameter(Mandatory,ParameterSetName='WorkbookCurrent')][switch] $Current ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 if ($Current.IsPresent) { # Get current analytics extension for workbook $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/workbooks/$WorkbookId/selected_connection) -Method Get Write-Debug $response return $response.connectionList } elseif ($WorkbookId) { # List analytics extension connections of workbook $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/workbooks/$WorkbookId/connections) -Method Get Write-Debug $response return $response.connectionList } elseif ($ConnectionId) { # Get analytics extension connection details $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/connections/$ConnectionId) -Method Get # Write-Debug $response return $response } else { # List analytics extension connections on site $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/connections) -Method Get # Write-Debug $response return $response.connectionList } } function Set-TableauAnalyticsExtension { <# .SYNOPSIS Update analytics extension connection of site or Update analytics extension for workbook .DESCRIPTION Update analytics extension settings for the site or specific workbook. .PARAMETER ConnectionId The LUID of the connection to update. .PARAMETER Name The name for the analytics extension connection. .PARAMETER Type The type for the analytics extension connection, which should be one of the following: UNDEFINED,TABPY,RSERVE,EINSTEIN_DISCOVERY,GENERIC_API .PARAMETER Hostname The hostname for the analytics extension service. .PARAMETER Port The port number for the analytics extension service. .PARAMETER AuthRequired Specifies if authentication should be required. .PARAMETER Username Username for authentication for the analytics extension service. .PARAMETER SecurePassword Password as SecureString for authentication for the analytics extension service. .PARAMETER SslEnabled Specifies SSL for the analytics extension connection should be enabled. .PARAMETER WorkbookId If updating a connection in a specific workbook, the LUID of the workbook. .EXAMPLE $response = Set-TableauAnalyticsExtension -ConnectionId $conn -Name $name -Type TABPY -Hostname $host -Port 443 -AuthRequired -SslEnabled -Username $user -SecurePassword $pw .EXAMPLE $response = Set-TableauAnalyticsExtension -ConnectionId $conn -WorkbookId $wb .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_updateAnalyticsExtensionsSiteSettings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_updateWorkbookWithConnection #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauAnalyticsExtension')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ConnectionId, [Parameter(Mandatory,ParameterSetName='Site')][string] $Name, [Parameter(Mandatory,ParameterSetName='Site')][ValidateSet('UNDEFINED','TABPY','RSERVE','EINSTEIN_DISCOVERY','GENERIC_API')][string] $Type, [Parameter(Mandatory,ParameterSetName='Site')][string] $Hostname, [Parameter(Mandatory,ParameterSetName='Site')][ValidateRange(1,65535)][int] $Port, [Parameter(ParameterSetName='Site')][switch] $AuthRequired, [Parameter(ParameterSetName='Site')][string] $Username, [Parameter(ParameterSetName='Site')][securestring] $SecurePassword, [Parameter(ParameterSetName='Site')][switch] $SslEnabled, [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 if ($Name -and $PSCmdlet.ShouldProcess("Update Analytics Extension (site)")) { $options = @{ connection_luid=$ConnectionId; host=$Hostname; port=$Port; is_auth_enabled=$AuthRequired.ToBool(); is_ssl_enabled=$SslEnabled.ToBool(); connection_brief=@{ connection_name=$Name; connection_type=$Type } } if ($Username) { $options.username = $Username } if ($SecurePassword) { $options.password = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password } $jsonBody = $options | ConvertTo-Json -Compress -Depth 2 Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/connections/$ConnectionId) -Body $jsonBody -Method Put -ContentType 'application/json' } elseif ($WorkbookId -and $PSCmdlet.ShouldProcess("Update Analytics Extension (workbook)")) { $jsonBody = @{ workbook_luid=$WorkbookId; connection_luid=$ConnectionId } | ConvertTo-Json -Compress Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/workbooks/$WorkbookId/selected_connection) -Body $jsonBody -Method Put -ContentType 'application/json' } } function New-TableauAnalyticsExtension { <# .SYNOPSIS Add analytics extension connection to site .DESCRIPTION Adds a new analytics extension connection for the current site. .PARAMETER Name The name for the analytics extension connection. .PARAMETER Type The type for the analytics extension connection, which should be one of the following: UNDEFINED,TABPY,RSERVE,EINSTEIN_DISCOVERY,GENERIC_API .PARAMETER Hostname The hostname for the analytics extension service. .PARAMETER Port The port number for the analytics extension service. .PARAMETER AuthRequired Specifies if authentication should be required. .PARAMETER Username Username for authentication for the analytics extension service. .PARAMETER SecurePassword Password as SecureString for authentication for the analytics extension service. .PARAMETER SslEnabled Specifies SSL for the analytics extension connection should be enabled. .EXAMPLE $ext = New-TableauAnalyticsExtension -Name $name -Type TABPY -Hostname $host -Port 443 -AuthRequired -SslEnabled -Username $user -SecurePassword $pw .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_addAnalyticsExtensionsConnection #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauAnalyticsExtension')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter(Mandatory)][ValidateSet('UNDEFINED','TABPY','RSERVE','EINSTEIN_DISCOVERY','GENERIC_API')][string] $Type, [Parameter(Mandatory)][string] $Hostname, [Parameter(Mandatory)][ValidateRange(1,65535)][int] $Port, [Parameter()][switch] $AuthRequired, [Parameter()][string] $Username, [Parameter()][securestring] $SecurePassword, [Parameter()][switch] $SslEnabled ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 $options = @{ host=$Hostname; port=$Port; is_auth_enabled=$AuthRequired.ToString().ToLower(); is_ssl_enabled=$SslEnabled.ToString().ToLower(); connection_brief=@{ connection_name=$Name; connection_type=$Type } } if ($Username) { $options.username = $Username } if ($SecurePassword) { $options.password = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password } $jsonBody = $options | ConvertTo-Json -Compress Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess("Add Analytics Extension (site)")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/connections) -Body $jsonBody -Method Post -ContentType 'application/json' } } function Remove-TableauAnalyticsExtension { <# .SYNOPSIS Delete analytics extension connection from site or Remove current analytics extension connection for workbook .DESCRIPTION Removes the specific analytics extension connection from a site or workbook. .PARAMETER ConnectionId The LUID of the connection to remove. .PARAMETER WorkbookId (Optional) If the connection should be removed for a workbook, this is the LUID of the workbook. .EXAMPLE Remove-TableauAnalyticsExtension -ConnectionId $conn .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_deleteAnalyticsExtensionsConnection .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_deleteConnectionFromWorkbook #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='Connection')][string] $ConnectionId, [Parameter(Mandatory,ParameterSetName='Workbook')][string] $WorkbookId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 if ($WorkbookId -and $PSCmdlet.ShouldProcess("Remove Analytics Extension (workbook)")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/workbooks/$WorkbookId/selected_connection) -Method Delete } elseif ($ConnectionId -and $PSCmdlet.ShouldProcess("Remove Analytics Extension (site)")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param settings/site/extensions/analytics/connections/$ConnectionId) -Method Delete } } function Get-TableauAnalyticsExtensionState { <# .SYNOPSIS Get enabled state of analytics extensions on site or Get enabled state of analytics extensions on server .DESCRIPTION Retrieves the current state (enabled/disabled) for analytics extensions on the site or server. .PARAMETER Scope Specifies the scope for analytcs extension settings (Server or Site). If requested for the scope of Server, the server admin privileges are required. .EXAMPLE $enabled = Get-TableauAnalyticsExtensionState -Scope Site .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getAnalyticsExtensionsSiteSettings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_getAnalyticsExtensionsServerSettings #> [OutputType([string])] Param( [Parameter(Mandatory)][ValidateSet('Site','Server')][string] $Scope ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param "settings/$($Scope.ToLower())/extensions/analytics") -Method Get return $response.enabled.ToString().ToLower() } function Set-TableauAnalyticsExtensionState { <# .SYNOPSIS Update enabled state of analytics extensions on site or Enable or disable analytics extensions on server .DESCRIPTION Updates the current state (enabled/disabled) for analytics extensions on the site or server. .PARAMETER Scope Specifies the scope for analytcs extension settings (Server or Site). If requested for the scope of Server, the server admin privileges are required. .PARAMETER Enabled Boolean, specifies if the state should be enabled or disabled. .EXAMPLE $result = Set-TableauAnalyticsExtensionState -Scope Site -Enabled true .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_updateAnalyticsExtensionsSiteSettings .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_analytics_extensions_settings.htm#AnalyticsExtensionsService_updateAnalyticsExtensionsServerSettings #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauAnalyticsExtensionState')] [OutputType([string])] Param( [Parameter(Mandatory)][ValidateSet('Site','Server')][string] $Scope, [Parameter(Mandatory)][ValidateSet('true','false')][string] $Enabled ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.11 $jsonBody = @{enabled=$Enabled} | ConvertTo-Json -Compress if ($PSCmdlet.ShouldProcess("Change Analytics Extensions ($Scope) to $Enabled")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param "settings/$($Scope.ToLower())/extensions/analytics") -Body $jsonBody -Method Put -ContentType 'application/json' return $response.enabled.ToString().ToLower() } } ### Mobile Settings Methods - introduced in API 3.19 function Get-TableauServerSettingsMobile { <# .SYNOPSIS Get Mobile Security Settings for Server .DESCRIPTION Gets the mobile security settings for the server. This method can only be called by server administrators. .EXAMPLE $settings = Get-TableauServerSettingsMobile .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_mobile_settings.htm#get_mobile_security_settings_for_server #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSetting -Param mobilesecuritysettings) -Method Get return $response.tsResponse.mobileSecuritySettingsList.mobileSecuritySettings } function Get-TableauSiteSettingsMobile { <# .SYNOPSIS Get Mobile Security Settings for Site .DESCRIPTION Gets the mobile security settings for the specified site. This method can only be called by site or server administrators. .EXAMPLE $settings = Get-TableauSiteSettingsMobile .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_mobile_settings.htm#get_mobile_security_settings_for_site #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Setting -Param mobilesecuritysettings) -Method Get return $response.tsResponse.mobileSecuritySettingsList.mobileSecuritySettings } function Set-TableauSiteSettingsMobile { <# .SYNOPSIS Update Mobile Security Settings for Site .DESCRIPTION Updates the mobile security sections for a specified site. This method can only be called by server administrators. .PARAMETER Settings List of mobile security settings, each as a hashtable for each individual settings params, corresponding to the input json element (mobileSecuritySettings). .EXAMPLE $settings = Set-TableauSiteSettingsMobile -Settings @{name='mobile.security.jailbroken_device';enabled='true';iosConfig=@{valueList=@('true');severity='warn'};androidConfig=@{valueList=@('false');severity='critical'}} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_mobile_settings.htm#Update_mobile_security_settings_for_site #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSiteSettingsMobile')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][hashtable[]] $Settings ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 $jsonBody = $Settings | ConvertTo-Json -Compress -Depth 4 # Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess("Mobile Security Settings")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ServerSetting -Param mobilesecuritysettings) -Body $jsonBody -Method Put -ContentType 'application/json' return $response.tsResponse.mobileSecuritySettingsList.mobileSecuritySettings } } ### Connected App methods function Get-TableauConnectedApp { <# .SYNOPSIS List Connected Apps or Get Connected App .DESCRIPTION Query all connected apps configured on a site, or details of the connected app by its ID. .PARAMETER ClientId Get Connected App: The client ID of the connected app. .PARAMETER PageSize (Optional, List Connected Apps) Page size when paging through results. .EXAMPLE $apps = Get-TableauConnectedApp .EXAMPLE $app = Get-TableauConnectedApp -ClientId $cid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#get_connectedapps .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#get_connectedapp #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='ConnectedAppById')][string] $ClientId, [Parameter(ParameterSetName='ConnectedApps')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 if ($ClientId) { # Get Connected App by Client ID $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId) -Method Get $response.tsResponse.connectedApplication } else { # List Connected Apps $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint ConnectedApp $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.connectedApplications.connectedApplication } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Set-TableauConnectedApp { <# .SYNOPSIS Update Connected App .DESCRIPTION Update a connected app settings. .PARAMETER ClientId The client ID of the connected app to be updated. .PARAMETER Name (Optional) The new name of the connected app. .PARAMETER Enabled (Optional) Controls whether the connected app is enabled or not. .PARAMETER ProjectId (Optional) The list of project LUID that the connected app's access level is scoped to. Multiple projects can be specified for API version 3.22 and later. For scoping to all projects: specify the empty string value. .PARAMETER DomainSafeList (Optional) A list of domains the connected app is allowed to be hosted. Please check Domain allowlist rules in online help for format specification. .PARAMETER UnrestrictedEmbedding (Optional) Controls whether the connected app can be hosted on all domains. .EXAMPLE $app = Set-TableauConnectedApp -Name "Connected App Example" -ProjectId "" -UnrestrictedEmbedding true .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#update_connectedapp #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauConnectedApp')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $Name, [Parameter()][ValidateSet('true','false')][string] $Enabled, [Parameter()][string[]] $ProjectId, [Parameter()][string[]] $DomainSafeList, [Parameter()][ValidateSet('true','false')][string] $UnrestrictedEmbedding ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_conn = $tsRequest.AppendChild($xml.CreateElement("connectedApplication")) if ($Name) { $el_conn.SetAttribute("name", $Name) } if ($Enabled) { $el_conn.SetAttribute("enabled", $Enabled) } if ($DomainSafeList) { $domain_list_str = $DomainSafeList -join ' ' $el_conn.SetAttribute("domainSafelist", $domain_list_str) if ($UnrestrictedEmbedding) { $UnrestrictedEmbedding = $false } } if ($UnrestrictedEmbedding) { $el_conn.SetAttribute("unrestrictedEmbedding", $UnrestrictedEmbedding) } if ($ProjectId) { if ($script:TableauRestVersion -ge 3.22) { $el_projs = $el_conn.AppendChild($xml.CreateElement("projectIds")) foreach ($proj in $ProjectId) { $el_proj = $el_projs.AppendChild($xml.CreateElement("projectId")) $el_proj.InnerText = $proj } } else { if ($ProjectId.Length -gt 1) { Write-Warning "Multiple project are not supported in this API version. Using the first project ID from the list." } $el_conn.SetAttribute("projectId", $ProjectId[0]) } } if ($PSCmdlet.ShouldProcess($ClientId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.connectedApplication } } function New-TableauConnectedApp { <# .SYNOPSIS Create Connected App .DESCRIPTION Create a connected app for the current site. .PARAMETER Name Name of the connected app. .PARAMETER Enabled (Optional) Controls whether the connected app is enabled or not. .PARAMETER ProjectId (Optional) The list of project LUID that the connected app's access level is scoped to. Multiple projects can be specified for API version 3.22 and later. For scoping to all projects, omit this parameter. .PARAMETER DomainSafeList (Optional) A list of domains the connected app is allowed to be hosted. Please check Domain allowlist rules in online help for format specification. .PARAMETER UnrestrictedEmbedding (Optional) Controls whether the connected app can be hosted on all domains. .EXAMPLE $app = New-TableauConnectedApp -Name "Connected App Example" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#create_connectedapp #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauConnectedApp')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter()][ValidateSet('true','false')][string] $Enabled, [Parameter()][string[]] $ProjectId, [Parameter()][string[]] $DomainSafeList, [Parameter()][ValidateSet('true','false')][string] $UnrestrictedEmbedding ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_conn = $tsRequest.AppendChild($xml.CreateElement("connectedApplication")) $el_conn.SetAttribute("name", $Name) if ($Enabled) { $el_conn.SetAttribute("enabled", $Enabled) } if ($DomainSafeList) { $domain_list_str = $DomainSafeList -join ' ' $el_conn.SetAttribute("domainSafelist", $domain_list_str) if ($UnrestrictedEmbedding) { $UnrestrictedEmbedding = $false } } if ($UnrestrictedEmbedding) { $el_conn.SetAttribute("unrestrictedEmbedding", $UnrestrictedEmbedding) } if ($ProjectId) { if ($script:TableauRestVersion -ge 3.22) { $el_projs = $el_conn.AppendChild($xml.CreateElement("projectIds")) foreach ($proj in $ProjectId) { $el_proj = $el_projs.AppendChild($xml.CreateElement("projectId")) $el_proj.InnerText = $proj } } else { if ($ProjectId.Length -gt 1) { Write-Warning "Multiple project are not supported in this API version. Using the first project ID from the list." } $el_conn.SetAttribute("projectId", $ProjectId[0]) } } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp) -Body $xml.OuterXml -Method Post return $response.tsResponse.connectedApplication } } function Remove-TableauConnectedApp { <# .SYNOPSIS Delete Connected App .DESCRIPTION Permanently remove a connected app from the site, and also the secrets associated with the connected app. .PARAMETER ClientId The client ID of the connected app to be removed. .EXAMPLE $result = Remove-TableauConnectedApp -ClientId $cid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#delete_connectedapp #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 if ($PSCmdlet.ShouldProcess($ClientId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId) -Method Delete } } function Get-TableauConnectedAppSecret { <# .SYNOPSIS Get Connected App Secret .DESCRIPTION Query a connected app secret and the token value using the connected app's ID. .PARAMETER ClientId The client ID of the connected app. .PARAMETER SecretId The unique ID of the connected app secret. .EXAMPLE $secret = Get-TableauConnectedAppSecret -ClientId $cid -SecretId $sid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#get_connectedapp_secret #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $SecretId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId/secrets/$SecretId) -Method Get $response.tsResponse.connectedApplicationSecret } function New-TableauConnectedAppSecret { <# .SYNOPSIS Create Connected App Secret .DESCRIPTION Generate a secret for a connected app. .PARAMETER ClientId The client ID of the connected app. .EXAMPLE $secret = New-TableauConnectedAppSecret -ClientId $cid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#create_connectedapp_secret #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauConnectedAppSecret')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 if ($PSCmdlet.ShouldProcess($ClientId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId/secrets) -Method Post return $response.tsResponse.connectedApplicationSecret } } function Remove-TableauConnectedAppSecret { <# .SYNOPSIS Delete Connected App Secret .DESCRIPTION Permanently remove a secret associated with a connected app. .PARAMETER ClientId The client ID of the connected app. .PARAMETER SecretId The unique ID of the connected app secret to be removed. .EXAMPLE $result = Remove-TableauConnectedAppSecret -ClientId $cid -SecretId $sid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#delete_connectedapp_secret #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $SecretId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.14 if ($PSCmdlet.ShouldProcess("Client ID: $ClientId, Secret ID: $SecretId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint ConnectedApp -Param $ClientId/secrets/$SecretId) -Method Delete } } function Get-TableauConnectedAppEAS { <# .SYNOPSIS List All Registered EAS or List Registered EAS .DESCRIPTION Get all external authorization servers (EASs) registered to a site, or details of an EAS registered to a site. Tableau Cloud only, currently not supported for Tableau Server. .PARAMETER EasId List Registered EAS: The unique ID of the registered EAS. .PARAMETER PageSize (Optional, List All Registered EAS) Page size when paging through results. .EXAMPLE $list = Get-TableauConnectedAppEAS .EXAMPLE $eas = Get-TableauConnectedAppEAS -EasId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#get_connectedapps_eas .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#get_connectedapp_eas #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='ConnectedAppById')][string] $EasId, [Parameter(ParameterSetName='ConnectedApps')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 if ($ClientId) { # List Registered EAS by ID $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint EAS -Param $EasId) -Method Get $response.tsResponse.externalAuthorizationServerList.externalAuthorizationServer } else { # List All Registered EAS $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint EAS $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.externalAuthorizationServerList.externalAuthorizationServer } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Set-TableauConnectedAppEAS { <# .SYNOPSIS Update EAS .DESCRIPTION Update a connected app with OAuth 2.0 trust. Tableau Cloud only, currently not supported for Tableau Server. .PARAMETER EasId The unique ID of the registered EAS. .PARAMETER IssuerUrl (Optional) The entity id of your identity provider (IdP) or URL that uniquely identifies your IdP. .PARAMETER JwksUri (Optional) The JSON Web Key (JKWS) of the EAS. .PARAMETER Name (Optional) The name of the connected app. .EXAMPLE $app = Set-TableauConnectedAppEAS -EasId $id -IssuerUrl $url .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#update_connectedapp_eas #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauConnectedAppEAS')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $EasId, [Parameter()][string] $IssuerUrl, [Parameter()][string] $JwksUri, [Parameter()][string] $Name ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_eas = $tsRequest.AppendChild($xml.CreateElement("externalAuthorizationServer")) if ($IssuerUrl) { $el_eas.SetAttribute("issuerUrl", $IssuerUrl) } if ($JwksUri) { $el_eas.SetAttribute("jwksUri", $JwksUri) } if ($Name) { $el_eas.SetAttribute("name", $Name) } if ($PSCmdlet.ShouldProcess($EasId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint EAS -Param $EasId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.externalAuthorizationServer } } function New-TableauConnectedAppEAS { <# .SYNOPSIS Register EAS .DESCRIPTION Create a connected app with OAuth 2.0 trust by registering an external authorization server (EAS) to a site. Tableau Cloud only, currently not supported for Tableau Server. .PARAMETER IssuerUrl The entity id of your identity provider (IdP) or URL that uniquely identifies your IdP. .PARAMETER JwksUri (Optional) The JSON Web Key (JKWS) of the EAS. .PARAMETER Name (Optional) The name of the connected app. .EXAMPLE $eas = New-TableauConnectedAppEAS -IssuerUrl $url -Name "External Authorization Server" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#create_connectedapp_eas #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauConnectedAppEAS')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $IssuerUrl, [Parameter()][string] $JwksUri, [Parameter()][string] $Name ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_eas = $tsRequest.AppendChild($xml.CreateElement("externalAuthorizationServer")) $el_eas.SetAttribute("issuerUrl", $IssuerUrl) if ($JwksUri) { $el_eas.SetAttribute("jwksUri", $JwksUri) } if ($Name) { $el_eas.SetAttribute("name", $Name) } if ($PSCmdlet.ShouldProcess($IssuerUrl)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint EAS) -Body $xml.OuterXml -Method Post return $response.tsResponse.externalAuthorizationServer } } function Remove-TableauConnectedAppEAS { <# .SYNOPSIS Delete EAS .DESCRIPTION Delete a registered external authorization server (EAS). Tableau Cloud only, currently not supported for Tableau Server. .PARAMETER EasId The unique ID of the registered EAS. .EXAMPLE $result = Remove-TableauConnectedAppEAS -EasId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_connected_app.htm#delete_connectedapp_eas #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $EasId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 if ($PSCmdlet.ShouldProcess($EasId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint EAS -Param $EasId) -Method Delete } } ### Notifications methods function Get-TableauDataAlert { <# .SYNOPSIS Get Data-Driven Alert / List Data-Driven Alerts on Site .DESCRIPTION Returns details on a specified data-driven alert, or a list of data-driven alerts in use on the specified site .PARAMETER DataAlertId Get Data-Driven Alert: The LUID of the data-driven alert. .PARAMETER Filter (Optional, List Data-Driven Alerts on Site) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Sort (Optional, List Data-Driven Alerts on Site) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Fields (Optional, List Data-Driven Alerts on Site) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm .PARAMETER PageSize (Optional, List Data-Driven Alerts on Site) Page size when paging through results. .EXAMPLE $dataAlert = Get-TableauDataAlert -DataAlertId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#query_data-driven_alert_details .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#query_data-driven_alerts #> [Alias('Query-TableauDataAlert')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='DataAlertById')][string] $DataAlertId, [Parameter(ParameterSetName='DataAlerts')][string[]] $Filter, [Parameter(ParameterSetName='DataAlerts')][string[]] $Sort, [Parameter(ParameterSetName='DataAlerts')][string[]] $Fields, [Parameter(ParameterSetName='DataAlerts')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.2 if ($DataAlertId) { # Get Data-Driven Alert $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert -Param $DataAlertId) -Method Get $response.tsResponse.dataAlert } else { # List Data-Driven Alerts on Site $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint DataAlert $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.dataAlerts.dataAlert } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauDataAlert { <# .SYNOPSIS Create Data Driven Alert .DESCRIPTION Create a data driven alert (DDA) for a view with a single data axis. .PARAMETER Subject The name of the data driven alert. .PARAMETER Condition The condition that triggers the DDA. Used in conjunction with the threshold to determine when to trigger an alert. Valid values: above, above-equal, below, below-equal, equal .PARAMETER Threshold Numeric value for the alert threshold. A data alert is triggered when this threshold is crossed. .PARAMETER Frequency The time period between attempts by Tableau to assess whether the alert threshold has been crossed. Valid values: once, frequently, hourly, daily, weekly. Default is once. .PARAMETER Visibility Determines whether the alert can be seen by only its creator (private), or by any user with permissions to the worksheet where the alert resides (public). Default is private. .PARAMETER Device (Optional) The type of device the alert is formatted for. If no device is provided then the default device setting of the underlying view is used. Valid values: desktop, phone, tablet. .PARAMETER WorksheetName The name of the worksheet that the DDA will be created on. .PARAMETER ViewId The LUID of the view that contains the data that can trigger an alert. Either the ViewId or CustomViewId needs to be provided. .PARAMETER CustomViewId The LUID of the custom view that contains the data that can trigger an alert. Either the ViewId or CustomViewId needs to be provided. .EXAMPLE $dataAlert = New-TableauDataAlert -Subject "Data Driven Alert for Forecast" -Condition above -Threshold 14000 -WorksheetName "one_measure_no_dimension" -ViewId $view.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#create_data_driven_alert .NOTES The 'id' attribute returned by the New-TableauDataAlert request is not the LUID of the data alert, but an internal (numeric) id The LUID should to be retrieved separately by calling Get-TableauDataAlert, if the data alert needs to be updated or removed. #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauDataAlert')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Subject, [Parameter(Mandatory)][ValidateSet('above','above-equal','below','below-equal','equal')][string] $Condition, [Parameter(Mandatory)][int] $Threshold, [Parameter()][ValidateSet('once','frequently','hourly','daily','weekly')][string] $Frequency = 'once', [Parameter()][ValidateSet('private','public')][string] $Visibility = 'private', [Parameter()][ValidateSet('desktop','phone','tablet')][string] $Device, [Parameter(Mandatory)][string] $WorksheetName, [Parameter(Mandatory,ParameterSetName='View')][string] $ViewId, [Parameter(Mandatory,ParameterSetName='CustomView')][string] $CustomViewId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.20 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_alert = $tsRequest.AppendChild($xml.CreateElement("dataAlertCreateAlert")) $el_alert.SetAttribute("alertCondition", $Condition) $el_alert.SetAttribute("alertThreshold", $Threshold) $el_alert.SetAttribute("subject", $Subject) $el_alert.SetAttribute("frequency", $Frequency) $el_alert.SetAttribute("visibility", $Visibility) if ($Device) { $el_alert.SetAttribute("device", $Device) } $el_alert.SetAttribute("worksheetName", $WorksheetName) if ($ViewId) { $el_alert.SetAttribute("viewId", $ViewId) } elseif ($CustomViewId) { $el_alert.SetAttribute("customViewId", $CustomViewId) } if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert) -Body $xml.OuterXml -Method Post # Write-Debug ($response.tsResponse.OuterXml.ToString()) return $response.tsResponse.dataAlertCreateAlert } } function Set-TableauDataAlert { <# .SYNOPSIS Update Data-Driven Alert .DESCRIPTION Update one or more settings for the specified data-driven alert; including the alert subject, frequency, and owner. .PARAMETER DataAlertId The LUID of the data-driven alert. .PARAMETER OwnerUserId (Optional) The LUID of the user to assign as owner of the data-driven alert. .PARAMETER Subject (Optional) The string to set as the new subject of the alert. .PARAMETER Frequency (Optional) The frequency of the data-driven alert: once, frequently, hourly, daily, or weekly. .PARAMETER Visibility (Optional) Determines the visibility of the data-driven alert (private or public). If Visibility is set to private, the alert is only visible to the owner, site or server administrators, and specific users they add as recipients. If Visibility is set to public, users with access to the view containing the alert can see the alert and add themselves as recipients. .EXAMPLE $dataAlert = Set-TableauDataAlert -DataAlertId $id -Subject "New Alert for Forecast" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#update_data-driven_alert #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauDataAlert')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DataAlertId, [Parameter()][string] $OwnerUserId, [Parameter()][string] $Subject, [Parameter()][ValidateSet('once','frequently','hourly','daily','weekly')][string] $Frequency, [Parameter()][ValidateSet('private','public')][string] $Visibility ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.2 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_alert = $tsRequest.AppendChild($xml.CreateElement("dataAlert")) if ($Subject) { $el_alert.SetAttribute("subject", $Subject) } if ($Frequency) { $el_alert.SetAttribute("frequency", $Frequency) } if ($Visibility -eq "public") { $el_alert.SetAttribute("public", "true") } elseif ($Visibility -eq "private") { $el_alert.SetAttribute("public", "false") } if ($OwnerUserId) { $el_owner = $el_alert.AppendChild($xml.CreateElement("owner")) $el_owner.SetAttribute("id", $OwnerUserId) } if ($PSCmdlet.ShouldProcess($DataAlertId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert -Param $DataAlertId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.dataAlert } } function Remove-TableauDataAlert { <# .SYNOPSIS Delete Data-Driven Alert .DESCRIPTION Deletes the specified data-driven alert. .PARAMETER DataAlertId The LUID of the data-driven alert. .EXAMPLE Remove-TableauDataAlert -DataAlertId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#delete_data-driven_alert #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DataAlertId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.2 if ($PSCmdlet.ShouldProcess($DataAlertId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert -Param $DataAlertId) -Method Delete } } function Add-TableauDataAlertUser { <# .SYNOPSIS Add User to Data-Driven Alert .DESCRIPTION Adds a specified user to the recipients list for a data-driven alert. .PARAMETER DataAlertId The LUID of the data-driven alert. .PARAMETER UserId The LUID of the user to add to the data-driven alert. .EXAMPLE Add-TableauDataAlertUser -DataAlertId $id -UserId (Get-TableauCurrentUserId) .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#add_user_to_data-driven_alert #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DataAlertId, [Parameter(Mandatory)][string] $UserId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.2 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_user = $tsRequest.AppendChild($xml.CreateElement("user")) $el_user.SetAttribute("id", $UserId) if ($PSCmdlet.ShouldProcess("user:$UserId, data alert:$DataAlertId")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert -Param $DataAlertId/users) -Body $xml.OuterXml -Method Post return $response.tsResponse.user } } function Remove-TableauDataAlertUser { <# .SYNOPSIS Delete User from Data-Driven Alert .DESCRIPTION Removes a specified user from the recipients list for a data-driven alert. .PARAMETER DataAlertId The LUID of the data-driven alert. .PARAMETER UserId The LUID of the user to remove from the data-driven alert. .EXAMPLE Remove-TableauDataAlertUser -DataAlertId $id -UserId (Get-TableauCurrentUserId) .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#delete_user_from_data-driven_alert #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DataAlertId, [Parameter(Mandatory)][string] $UserId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.2 if ($PSCmdlet.ShouldProcess("user:$UserId, data alert:$DataAlertId")) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint DataAlert -Param $DataAlertId/users/$UserId) -Method Delete } } function Get-TableauWebhook { <# .SYNOPSIS Get a Webhook / List Webhooks .DESCRIPTION Returns information about the specified webhook, or a list of webhooks on the specified site. This method can only be called by server and site administrators. .PARAMETER WebhookId Get a Webhook: The LUID of the webhook .PARAMETER Filter (Optional, List Webhooks) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Sort (Optional, List Webhooks) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Fields (Optional, List Webhooks) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm .PARAMETER PageSize (Optional, List Webhooks) Page size when paging through results. .EXAMPLE $webhook = Get-TableauWebhook -WebhookId $id .EXAMPLE $webhooks = Get-TableauWebhook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#get_webhook .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#list_webhooks_for_site #> [Alias('Query-TableauWebhook')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='WebhookById')][string] $WebhookId, [Parameter(ParameterSetName='Webhooks')][string[]] $Filter, [Parameter(ParameterSetName='Webhooks')][string[]] $Sort, [Parameter(ParameterSetName='Webhooks')][string[]] $Fields, [Parameter(ParameterSetName='Webhooks')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.6 if ($WebhookId) { # Get a Webhook $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Webhook -Param $WebhookId) -Method Get $response.tsResponse.webhook } else { # List Webhooks $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Webhook $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.webhooks.webhook } until ($PageSize*$pageNumber -ge $totalAvailable) } } function New-TableauWebhook { <# .SYNOPSIS Create a Webhook .DESCRIPTION Creates a new webhook for a site. This method can only be called by server and site administrators. .PARAMETER Name The name for the webhook .PARAMETER EventName The event name that should trigger the webhook. See full list here: https://help.tableau.com/current/developer/webhooks/en-us/docs/webhooks-events-payload.html .PARAMETER DestinationUrl The destination URL for the webhook. The webhook destination URL must be https and have a valid certificate. .PARAMETER Enabled (Optional) Boolean. If true (default), the newly created webhook is enabled. If false then the webhook will be disabled. .EXAMPLE $webhook = New-TableauWebhook -Name "New Webhook" -Condition above -Threshold 14000 -WorksheetName "one_measure_no_dimension" -ViewId $view.id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#create_webhook .NOTES #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauWebhook')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter(Mandatory)][ValidateSet('AdminPromoted','AdminDemoted', 'DatasourceUpdated','DatasourceCreated','DatasourceDeleted','DatasourceRefreshStarted','DatasourceRefreshSucceeded','DatasourceRefreshFailed', 'WorkbookUpdated', 'WorkbookCreated', 'WorkbookDeleted', 'WorkbookRefreshStarted', 'WorkbookRefreshSucceeded', 'WorkbookRefreshFailed', 'LabelCreated','LabelUpdated','LabelDeleted','SiteCreated','SiteUpdated','SiteDeleted','UserDeleted','ViewDeleted')] [string] $EventName, [Parameter(Mandatory)][string] $DestinationUrl, [Parameter()][ValidateSet('true','false')][string] $Enabled ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.6 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_webhook = $tsRequest.AppendChild($xml.CreateElement("webhook")) $el_webhook.SetAttribute("name", $Name) if ($Enabled) { $el_webhook.SetAttribute("isEnabled", $Enabled) } $el_webhook.SetAttribute("event", $EventName) $el_wd = $el_webhook.AppendChild($xml.CreateElement("webhook-destination")) $el_wdh = $el_wd.AppendChild($xml.CreateElement("webhook-destination-http")) $el_wdh.SetAttribute("method", "POST") $el_wdh.SetAttribute("url", $DestinationUrl) if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Webhook) -Body $xml.OuterXml -Method Post return $response.tsResponse.webhook } } function Set-TableauWebhook { <# .SYNOPSIS Update a Webhook .DESCRIPTION Modify the properties of an existing webhook. This method can only be called by server and site administrators. .PARAMETER WebhookId The LUID of the webhook. .PARAMETER Name (Optional) The new name for the webhook. .PARAMETER EventName (Optional) The new event name for the webhook. .PARAMETER DestinationUrl (Optional) The new destination URL for the webhook. The webhook destination URL must be https and have a valid certificate. .PARAMETER Enabled (Optional) Boolean. If true (default), the newly created webhook is enabled. If false then the webhook will be disabled. .PARAMETER ReasonForDisablement (Optional) The reason a webhook is disabled. If Enabled is set to false, provides the reason for changing the status, or defaults to "Webhook disabled by user". If Enabled set to true, this parameter is ignored. .EXAMPLE $webhook = Set-TableauWebhook -WebhookId $id -Name "Updated Webhook" .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#update_webhook #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauWebhook')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WebhookId, [Parameter()][string] $Name, [Parameter()][ValidateSet('AdminPromoted','AdminDemoted', 'DatasourceUpdated','DatasourceCreated','DatasourceDeleted','DatasourceRefreshStarted','DatasourceRefreshSucceeded','DatasourceRefreshFailed', 'WorkbookUpdated', 'WorkbookCreated', 'WorkbookDeleted', 'WorkbookRefreshStarted', 'WorkbookRefreshSucceeded', 'WorkbookRefreshFailed', 'LabelCreated','LabelUpdated','LabelDeleted','SiteCreated','SiteUpdated','SiteDeleted','UserDeleted','ViewDeleted')] [string] $EventName, [Parameter()][string] $DestinationUrl, [Parameter()][ValidateSet('true','false')][string] $Enabled, [Parameter()][string] $ReasonForDisablement ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.6 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_webhook = $tsRequest.AppendChild($xml.CreateElement("webhook")) if ($Name) { $el_webhook.SetAttribute("name", $Name) } if ($Enabled) { $el_webhook.SetAttribute("isEnabled", $Enabled) if ($Enabled -eq "false" -and $ReasonForDisablement) { $el_webhook.SetAttribute("statusChangeReason", $ReasonForDisablement) } } if ($EventName) { $el_webhook.SetAttribute("event", $EventName) } if ($DestinationUrl) { $el_wd = $el_webhook.AppendChild($xml.CreateElement("webhook-destination")) $el_wdh = $el_wd.AppendChild($xml.CreateElement("webhook-destination-http")) $el_wdh.SetAttribute("method", "POST") $el_wdh.SetAttribute("url", $DestinationUrl) } if ($PSCmdlet.ShouldProcess($WebhookId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Webhook -Param $WebhookId) -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.webhook } } function Test-TableauWebhook { <# .SYNOPSIS Test a Webhook .DESCRIPTION Tests the specified webhook.  Sends an empty payload to the configured destination URL of the webhook and returns the response from the server. This method can only be called by server and site administrators. .PARAMETER WebhookId The LUID of the webhook. .EXAMPLE $result = Test-TableauWebhook -WebhookId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#test_webhook #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WebhookId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.6 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Webhook -Param $WebhookId/test) -Method Get return $response.tsResponse.webhookTestResult } function Remove-TableauWebhook { <# .SYNOPSIS Delete a Webhook .DESCRIPTION Deletes the specified webhook. This method can only be called by server and site administrators. .PARAMETER WebhookId The LUID of the webhook. .EXAMPLE Remove-TableauWebhook -WebhookId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#delete_webhook #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $WebhookId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.6 if ($PSCmdlet.ShouldProcess($WebhookId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Webhook -Param $WebhookId) -Method Delete } } function Get-TableauSiteSettingsNotification { <# .SYNOPSIS Get User Notification Preferences .DESCRIPTION Returns the notification preferences for the specified site. You can filter by channel and notification type. This method can only be called by site or server administrators. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $settings = Get-TableauSiteSettingsNotification .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#get_user_notification_preferences #> [OutputType([PSCustomObject])] Param( [Parameter()][string[]] $Filter, [Parameter()][string[]] $Sort, [Parameter()][string[]] $Fields, [Parameter()][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.15 $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Setting -Param notifications $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.userNotificationsPreferences.userNotificationsPreference } until ($PageSize*$pageNumber -ge $totalAvailable) } function Set-TableauSiteSettingsNotification { <# .SYNOPSIS Update User Notification Preferences .DESCRIPTION Updates user notifications preferences to enabled or disabled on the specified site. This method can only be called by site or server administrators. .PARAMETER Preferences Array consisting of notification preferences, each preference is expected to be a hashtable with the following keys: - enabled: true | false - channel: email | in_app | slack - notificationType: comments | webhooks | prepflow | share | dataalerts | extractrefresh .EXAMPLE $settings = Set-TableauSiteSettingsNotification -Preferences @{channel='email';notificationType='extractrefresh';enabled='true'} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_notifications.htm#update_user_notification_preferences #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauSiteSettingsNotification')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][hashtable[]] $Preferences ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.15 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_prefs = $tsRequest.AppendChild($xml.CreateElement("userNotificationsPreferences")) foreach ($preference in $Preferences) { $el_pref = $el_prefs.AppendChild($xml.CreateElement("userNotificationsPreference")) if ($preference["channel"] -and $preference["notificationType"] -and $preference["enabled"]) { $el_pref.SetAttribute("channel", $preference["channel"]) $el_pref.SetAttribute("notificationType", $preference["notificationType"]) $el_pref.SetAttribute("enabled", $preference["enabled"]) } else { Write-Error "Preferences must have channel, notificationType and enabled flag" -Category InvalidArgument -ErrorAction Stop } } if ($PSCmdlet.ShouldProcess("Site Notification Settings")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Setting -Param notifications) -Body $xml.OuterXml -Method Patch -ContentType 'application/xml' return $response.tsResponse.notificationUpdateResult.notificationUpdateStatus } } ### Content Exploration methods function Get-TableauContentSuggestion { <# .SYNOPSIS Get content Suggestions .DESCRIPTION Returns a specified number of suggestions for auto-completion of user input as they type. You can specify content types of suggestions and prioritize recently viewed content. .PARAMETER Terms The term that is matched to find suggestions. .PARAMETER Filter (Optional) A filter to restrict suggestions to specified content types, e.g. type:eq:workbook .PARAMETER Luid (Optional) A comma separated list of luids that will be prioritized in scoring of content items matched to suggest. .PARAMETER Limit (Optional) The number of suggestions to return. The default is 10. .EXAMPLE $results = Get-TableauContentSuggestion -Terms regional .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/TAG/index.html#tag/Content-Exploration-Methods/operation/ContentExploration_getSuggestions #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Terms, [Parameter()][string[]] $Filter, [Parameter()][string[]] $Luid, [Parameter()][ValidateRange(1,10000)][int] $Limit = 10 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 $uri = Get-TableauRequestUri -Endpoint Versionless -Param suggestions $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("terms", $Terms -join ',') $uriParam.Add("limit", $Limit) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Luid) { $uriParam.Add("recentsLuids", $Luid -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $response.hits.items } function Get-TableauContentSearch { <# .SYNOPSIS Get content search results .DESCRIPTION Searches across all supported content types for objects relevant to the search expression specified in the querystring of the request URI. .PARAMETER Terms (Optional) One or more terms the search uses as the basis for which items are relevant to return. The items may be of any supported content type. The relevance may be assessed based on any element of a given item. If no terms are supplied, then results will be based filtering and page size limits. .PARAMETER Filter (Optional) An expression to filter the response using one of the following parameters, or a combination of expressions separated by a comma: - type, e.g. type:eq:workbook, type:in:[workbook,datasource] - ownerId, e.g. ownerId:in:[akhil,fred,alice] - modifiedTime, using eq, lte, gte, gt operators. .PARAMETER OrderBy (Optional) The sorting method for items returned, based on the popularity of the item. You can sort based on: hitsTotal - The number of times a content item has been viewed since it was created. hitsSmallSpanTotal The number of times viewed in the last month. hitsMediumSpanTotal The number of times viewed in the last three months. hitsLargeSpanTotal The number of times viewed in the last twelve months. downstreamWorkbookCount The number workbooks in a given project. .PARAMETER Limit (Optional) The number of search results to return. The default is 10. .PARAMETER All (Switch) When this parameter is provided, the search results are iterated for all pages (until the search is exhausted, that is when "next" pointer in the results is empty). .EXAMPLE $results = Get-TableauContentSearch -Terms sales -Filter type:eq:workbook -Limit 5 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/TAG/index.html#tag/Content-Exploration-Methods/operation/ContentExplorationService_getSearch #> [OutputType([PSCustomObject])] Param( [Parameter()][string[]] $Terms, [Parameter()][string[]] $Filter, [Parameter()][string[]] $OrderBy, [Parameter()][switch] $All, [Parameter()][ValidateRange(1,10000)][int] $Limit = 10 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.16 $pageIndex = 0 do { $uri = Get-TableauRequestUri -Endpoint Versionless -Param search $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) if ($Terms) { $uriParam.Add("terms", $Terms -join ',') } $uriParam.Add("page", $pageIndex) $uriParam.Add("limit", $Limit) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($OrderBy) { $uriParam.Add("order_by", $OrderBy -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' $response.hits.items $pageIndex++ } until ($null -eq $response.hits.next -or -not $All) } function Get-TableauContentUsage { <# .SYNOPSIS Get content usage statistics .DESCRIPTION Gets usage statistics for one or multiple content items, specified by LUID and content type (workbook, datasource, flow). .PARAMETER Content An array of hashtables, containing at least one item, each of those should have the following keys: - type: workbook, datasource, flow - luid: the LUID of the content .EXAMPLE $results = Get-TableauContentUsage -Content @{type='workbooks';luid=$id} .EXAMPLE $results = Get-TableauContentUsage -Content @{type='workbooks';luid=$wbid},@{type='datasources';luid=$dsid} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/TAG/index.html#tag/Content-Exploration-Methods/operation/UsageStatsService_GetUsageStats .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/TAG/index.html#tag/Content-Exploration-Methods/operation/UsageStatsService_BatchGetUsage .NOTES If the Content parameter contains one element, the GET request is sent (GetUsageStats). If the Content parameter contains more than one element, the POST request is sent (BatchGetUsage). #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][hashtable[]] $Content ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.17 if ($Content.Length -eq 1) { $type = $Content.type+'s' $luid = $Content.luid $uri = Get-TableauRequestUri -Endpoint Versionless -Param content/usage-stats/$type/$luid Invoke-TableauRestMethod -Uri $uri -Method Get } else { $uri = Get-TableauRequestUri -Endpoint Versionless -Param content/usage-stats $jsonBody = @{content_items=$Content} | ConvertTo-Json -Compress -Depth 4 # Write-Debug $jsonBody Invoke-TableauRestMethod -Uri $uri -Body $jsonBody -Method Post -ContentType 'application/json' } } ### Virtual Connections methods function Get-TableauVirtualConnection { <# .SYNOPSIS List Virtual Connections or List Virtual Connection Database Connections .DESCRIPTION Returns a list of available virtual connection names and IDs. or Returns a list of database connections found in the specified virtual connection and information about them. .PARAMETER VirtualConnectionId List Virtual Connection Database Connections: The LUID of the virtual connection. .PARAMETER Filter (Optional) An expression that lets you specify a subset of data records to return. .PARAMETER Sort (Optional) An expression that lets you specify the order in which data is returned. .PARAMETER Fields (Optional) An expression that lets you specify which data attributes are included in response. https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_fields.htm#query_workbooks_site .PARAMETER PageSize (Optional) Page size when paging through results. .EXAMPLE $vconn = Get-TableauVirtualConnection -Filter "name:eq:$vcname" -Sort name:asc -Fields id,name .EXAMPLE $dbConnections = Get-TableauVirtualConnection -VirtualConnectionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_virtual_connections.htm#ref_list_virtual_connections .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_virtual_connections.htm#ref_list_virtual_connection_database_connections #> [Alias('Query-TableauVirtualConnection')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='ListDbConnections')][string] $VirtualConnectionId, [Parameter(ParameterSetName='ListVirtualConnections')][string[]] $Filter, [Parameter(ParameterSetName='ListVirtualConnections')][string[]] $Sort, [Parameter(ParameterSetName='ListVirtualConnections')][string[]] $Fields, [Parameter(ParameterSetName='ListVirtualConnections')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 if ($VirtualConnectionId) { # List Virtual Connection Database Connections $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint VirtualConnection -Param $VirtualConnectionId/connections $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.virtualConnectionConnections.connection } until ($PageSize*$pageNumber -ge $totalAvailable) } else { # List Virtual Connections $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint VirtualConnection $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uriParam.Add("pageSize", $PageSize) $uriParam.Add("pageNumber", $pageNumber) if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($Sort) { $uriParam.Add("sort", $Sort -join ',') } if ($Fields) { $uriParam.Add("fields", $Fields -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.virtualConnections.virtualConnection } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Set-TableauVirtualConnection { <# .SYNOPSIS Update Virtual Connection Database Connections .DESCRIPTION Updates the server address, port, username, or password for the specified database connection in a virtual connection. .PARAMETER VirtualConnectionId The LUID for the virtual connection that includes the database connections. .PARAMETER ConnectionId The LUID of the database connection to update. .PARAMETER ServerAddress (Optional) The new server address of the connection. .PARAMETER ServerPort (Optional) The new server port of the connection. .PARAMETER Username (Optional) The new user name of the connection. .PARAMETER SecurePassword (Optional) The new password of the connection, should be supplied as SecurePassword. .EXAMPLE $connection = Set-TableauVirtualConnection -VirtualConnectionId $vc.id -ConnectionId $connectionId -ServerAddress myserver.com .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_virtual_connections.htm#update_virtual_connection_database_connections #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauVirtualConnection')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $VirtualConnectionId, [Parameter(Mandatory)][string] $ConnectionId, [Parameter()][string] $ServerAddress, [Parameter()][string] $ServerPort, [Parameter()][string] $Username, [Parameter()][securestring] $SecurePassword ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.18 $xml = New-Object System.Xml.XmlDocument $tsRequest = $xml.AppendChild($xml.CreateElement("tsRequest")) $el_connection = $tsRequest.AppendChild($xml.CreateElement("connection")) if ($ServerAddress) { $el_connection.SetAttribute("serverAddress", $ServerAddress) } if ($ServerPort) { $el_connection.SetAttribute("serverPort", $ServerPort) } if ($Username) { $el_connection.SetAttribute("userName", $Username) } if ($SecurePassword) { $private:PlainPassword = (New-Object System.Net.NetworkCredential("", $SecurePassword)).Password $el_connection.SetAttribute("password", $private:PlainPassword) } $uri = Get-TableauRequestUri -Endpoint VirtualConnection -Param $VirtualConnectionId/connections/$ConnectionId/modify # Write-Debug $xml.OuterXml if ($PSCmdlet.ShouldProcess($ConnectionId)) { $response = Invoke-TableauRestMethod -Uri $uri -Body $xml.OuterXml -Method Put -ContentType 'application/xml' return $response.tsResponse.virtualConnectionConnections.connection } } ### Tableau Pulse methods - introduced in API 3.21 function Get-TableauPulseDefinition { <# .SYNOPSIS List metric definitions or Batch list metric definitions or Get metric definition .DESCRIPTION Lists the metric definitions configured for a site or, optionally, the details and definition for a specific metric. or Gets a batch of metric definitions and metrics available on a site. or Gets a metric definition and optionally metrics it contains. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER DefinitionId (Optional) The LUID(s) of the metric definition. If one definition ID is provided, Get metric definition is called. If more than one definition ID is provided, Batch get metric definition is called. Otherwise, List metric definitions is called. .PARAMETER DefinitionViewType (Optional) Specifies the range of metrics to return for a definition. unspecified - N/A basic - Return only the specified metric definition. This type is returned when the parameter is omitted. full - Return the metric definition and the specified number of metrics. default - Return the metric definition and the default metric. .PARAMETER NumberOfMetrics (Required if view is DEFINITION_VIEW_FULL) The number of metrics to return. .PARAMETER Filter (Optional) An expression to filter the response using one or multiple attributes. .PARAMETER OrderBy (Optional) The sorting method for items returned, based on the popularity of the item. .PARAMETER MetricId (Optional) If a metric LUID is specified, only return the definition that is related to the metric, and the details of the metric. .PARAMETER PageSize (Optional) Specifies the number of results in a paged response. .EXAMPLE $defs = Get-TableauPulseDefinition .EXAMPLE $def = Get-TableauPulseDefinition -DefinitionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_ListDefinitions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_BatchGetDefinitions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_GetDefinition .NOTES A metric definition specifies the metadata for all related metrics created using the definition. This includes the data source, measure, time dimension, and which data source dimensions can be filtered by users or programmatically to create related metrics. Example: A metric definition might specify that the data source is the Superstore sales database, and that the measure to focus on is the aggregation "sum of sales". It could define the filterable dimensions as region and product line, that the time dimension for analysis is order date, and that the favorable direction is for the metric to increase. #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='GetDefinitions')][string[]] $DefinitionId, [Parameter()][ValidateSet('unspecified','basic','full','default')][string] $DefinitionViewType, [Parameter()][int] $NumberOfMetrics, [Parameter(ParameterSetName='ListDefinitions')][string[]] $Filter, [Parameter(ParameterSetName='ListDefinitions')][string[]] $OrderBy, [Parameter(ParameterSetName='ListDefinitions')][string] $MetricId, [Parameter(ParameterSetName='ListDefinitions')][ValidateRange(1,100)][int] $PageSize ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) switch ($DefinitionViewType) { 'unspecified' { $uriParam.Add("view", 'DEFINITION_VIEW_UNSPECIFIED') } 'basic' { $uriParam.Add("view", 'DEFINITION_VIEW_BASIC') } 'full' { if (-not $NumberOfMetrics) { throw "Number of metrics is required for DEFINITION_VIEW_FULL" } $uriParam.Add("view", 'DEFINITION_VIEW_FULL') } 'default' { $uriParam.Add("view", 'DEFINITION_VIEW_DEFAULT') } } if ($NumberOfMetrics) { $uriParam.Add("number_of_metrics", $NumberOfMetrics) } if ($DefinitionId) { # Get metric definition / Batch list metric definitions if ($DefinitionId.Length -gt 1) { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions:batchGet $uriParam.Add("definition_ids", $DefinitionId -join ',') } else { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions/$DefinitionId } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' if ($DefinitionId.Length -gt 1) { return $response.definitions } else { return $response.definition } } else { # List metric definitions if ($PageSize) { $uriParam.Add("page_size", $PageSize) } if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($OrderBy) { $uriParam.Add("order_by", $OrderBy -join ',') } if ($MetricId) { $uriParam.Add("metric_id", $MetricId) } do { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() # Write-Debug $uriRequest.Uri.OriginalString $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' $response.definitions if ($response.next_page_token) { $uriParam.Remove("page_token") $uriParam.Add("page_token", $response.next_page_token) } # Write-Debug $response.total_available # Write-Debug $response.offset # Write-Debug $response.next_page_token } until (-not $response.next_page_token) } } function Set-TableauPulseDefinition { <# .SYNOPSIS Update metric definition .DESCRIPTION Updates a metric definition. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER DefinitionId The LUID(s) of the metric definition. .PARAMETER Name (Optional) The new name of the metric definition. .PARAMETER Description (Optional) The new description of the metric definition. .PARAMETER Specification (Optional) The specification of the metric definition, as hashtable. Should include keys: datasource (id), basic_specification (measure, time_dimension, filters), viz_state_specification (viz_state_string), is_running_total (true/false). Please check API documentation for full schema of item definition. .PARAMETER ExtensionOptions (Optional) The extension options of the metric definition, as hashtable. Should include keys: allowed_dimensions (as list), allowed_granularities (enum, default: "GRANULARITY_UNSPECIFIED") Please check API documentation for full schema of item definition. .PARAMETER RepresentationOptions (Optional) The representation options of the metric definition, as hashtable. Should include keys: type (enum, default: "NUMBER_FORMAT_TYPE_UNSPECIFIED"), number_units (singular_noun, plural_noun), sentiment_type (e.g. "SENTIMENT_TYPE_UP_IS_GOOD"), row_level_id_field, row_level_entity_names. Please check API documentation for full schema of item definition. .PARAMETER InsightsOptions (Optional) The insights options of the metric definition, as hashtable. Please check API documentation for full schema of item definition. .EXAMPLE $def = Set-TableauPulseDefinition -DefinitionId $def -Name "Quantity1" -Specification @{...} -ExtensionOptions @{...} -RepresentationOptions @{...} -InsightsOptions @{...} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_UpdateDefinition #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauPulseDefinition')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DefinitionId, [Parameter()][string] $Name, [Parameter()][string] $Description, [Parameter()][hashtable] $Specification, [Parameter()][hashtable] $ExtensionOptions, [Parameter()][hashtable] $RepresentationOptions, [Parameter()][hashtable] $InsightsOptions ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ definition_id=$DefinitionId; } if ($Name) { $request.name = $Name } if ($Description) { $request.description = $Description } if ($Specification) { $request.specification = $Specification } if ($ExtensionOptions) { $request.extension_options = $ExtensionOptions } if ($RepresentationOptions) { $request.representation_options = $RepresentationOptions } if ($InsightsOptions) { $request.insights_options = $InsightsOptions } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($DefinitionId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions/$DefinitionId) -Body $jsonBody -Method Patch -ContentType 'application/json' return $response.definition } } function New-TableauPulseDefinition { <# .SYNOPSIS Create metric definition .DESCRIPTION Creates a metric definition. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER Name The name of the metric definition. .PARAMETER Description (Optional) The description of the metric definition. .PARAMETER Specification The specification of the metric definition, as hashtable. Should include keys: datasource (id), basic_specification (measure, time_dimension, filters), viz_state_specification (viz_state_string), is_running_total (true/false). Please check API documentation for full schema of item definition. .PARAMETER ExtensionOptions (Optional) The extension options of the metric definition, as hashtable. Should include keys: allowed_dimensions (as list), allowed_granularities (enum, default: "GRANULARITY_UNSPECIFIED") Please check API documentation for full schema of item definition. .PARAMETER RepresentationOptions (Optional) The representation options of the metric definition, as hashtable. Should include keys: type (enum, default: "NUMBER_FORMAT_TYPE_UNSPECIFIED"), number_units (singular_noun, plural_noun), sentiment_type (e.g. "SENTIMENT_TYPE_UP_IS_GOOD"), row_level_id_field, row_level_entity_names. Please check API documentation for full schema of item definition. .PARAMETER InsightsOptions (Optional) The insights options of the metric definition, as hashtable. Please check API documentation for full schema of item definition. .EXAMPLE $def = New-TableauPulseDefinition -Name Sales -Description "Sales metric definition" -Specification @{datasource=@{id="..."};basic_specification=@{measure=@{field="Sales";aggregation="AGGREGATION_SUM"};time_dimension=@{field="Order Date"};filters=@()};viz_state_specification=@{viz_state_string=""};is_running_total=$true} -RepresentationOptions @{type="NUMBER_FORMAT_TYPE_NUMBER";number_units=@{singular_noun="Sales";plural_noun="Sales"};sentiment_type="SENTIMENT_TYPE_UP_IS_GOOD";row_level_id_field=@{identifier_col="";identifier_label=""};row_level_entity_names=@{entity_name_singular="";entity_name_plural=""}} -ExtensionOptions @{allowed_dimensions=@("Category");allowed_granularities=@("GRANULARITY_UNSPECIFIED")} -InsightsOptions @{show_insights=$true;settings=@()} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_CreateDefinition #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauPulseDefinition')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $Name, [Parameter()][string] $Description, [Parameter(Mandatory)][hashtable] $Specification, [Parameter()][hashtable] $ExtensionOptions, [Parameter()][hashtable] $RepresentationOptions, [Parameter()][hashtable] $InsightsOptions ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ name=$Name; } if ($Description) { $request.description = $Description } if ($Specification) { $request.specification = $Specification } if ($ExtensionOptions) { $request.extension_options = $ExtensionOptions } if ($RepresentationOptions) { $request.representation_options = $RepresentationOptions } if ($InsightsOptions) { $request.insights_options = $InsightsOptions } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($Name)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.definition } } function Remove-TableauPulseDefinition { <# .SYNOPSIS Delete metric definition .DESCRIPTION Deletes a metric definition. .PARAMETER DefinitionId The LUID(s) of the metric definition. .EXAMPLE $result = Remove-TableauPulseDefinition -DefinitionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_DeleteDefinition #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DefinitionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 if ($PSCmdlet.ShouldProcess($DefinitionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions/$DefinitionId) -Method Delete } } function Get-TableauPulseMetric { <# .SYNOPSIS List metrics in definition or Batch list metrics or Get metric .DESCRIPTION Lists the metrics contained in a metric definition. or Gets a batch of metrics from a definition, specified in a comma delimited list. or Gets the details of the specified metric. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER DefinitionId (Optional) The LUID of the metric definition. If definition ID is provided, List metrics in definition is called. Otherwise, Batch list metrics or Get metric is called. .PARAMETER MetricId (Optional) The LUID(s) of the metric. If one metric ID is provided, Get metric is called. If more than one definition ID is provided, Batch list metrics is called. .PARAMETER SortByName (Optional) Switch parameter, when provided, the output metrics are sorted by name. .PARAMETER OrderBy (Optional) The sorting method for items returned, based on the popularity of the item. .PARAMETER Filter (Optional) An expression to filter the response using one or multiple attributes. .PARAMETER PageSize (Optional) Specifies the number of results in a paged response. .EXAMPLE $defs = Get-TableauPulseMetric .EXAMPLE $def = Get-TableauPulseMetric -MetricId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_ListMetrics .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_BatchGetMetrics .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_GetMetric .NOTES A metric is the interactive object that users follow and receive updates on. It specifies the values to give the filterable dimensions of the metric's definition and the measurement time period of the metric. Example: A user or REST request could filter the metric, and its automatically generated insights, based on the West region and product line sold. The insight provided might call out that discounted sales have risen sharply in a region between last quarter and the current one. #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='ListMetrics')][string] $DefinitionId, [Parameter(Mandatory,ParameterSetName='GetMetrics')][string[]] $MetricId, [Parameter()][switch] $SortByName, [Parameter(ParameterSetName='ListMetrics')][string[]] $OrderBy, [Parameter(ParameterSetName='ListMetrics')][string[]] $Filter, [Parameter(ParameterSetName='ListMetrics')][ValidateRange(1,100)][int] $PageSize ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) if ($MetricId) { # Get metric / Batch list metrics if ($MetricId.Length -gt 1) { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics:batchGet $uriParam.Add("metric_ids", $MetricId -join ',') if ($SortByName) { $uriParam.Add("enable_sorting", $true) } } else { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics/$MetricId } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' if ($MetricId.Length -gt 1) { return $response.metrics } else { return $response.metric } } else { # List metrics in definition if ($PageSize) { $uriParam.Add("page_size", $PageSize) } if ($Filter) { $uriParam.Add("filter", $Filter -join ',') } if ($OrderBy) { $uriParam.Add("order_by", $OrderBy -join ',') } if ($SortByName) { $uriParam.Add("enable_sorting", $true) } do { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/definitions/$DefinitionId/metrics $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() # Write-Debug $uriRequest.Uri.OriginalString $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' $response.metrics if ($response.next_page_token) { $uriParam.Remove("page_token") $uriParam.Add("page_token", $response.next_page_token) } } until (-not $response.next_page_token) } } function Set-TableauPulseMetric { <# .SYNOPSIS Update metric .DESCRIPTION Updates the specification of a metric. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER MetricId The LUID(s) of the metric. .PARAMETER Specification The specification of the metric, as hashtable. Should include keys: filters (as list), measurement_period (granularity, range), comparison (comparison: "TIME_COMPARISON_UNSPECIFIED"). Please check API documentation for full schema of item definition. .EXAMPLE $def = Set-TableauPulseMetric -MetricId $id -Specification $spec .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_UpdateMetric #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauPulseMetric')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $MetricId, [Parameter(Mandatory)][hashtable] $Specification ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ metric_id=$MetricId; specification=$Specification } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($MetricId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics/$MetricId) -Body $jsonBody -Method Patch -ContentType 'application/json' return $response.metric } } function New-TableauPulseMetric { <# .SYNOPSIS Create metric or Get or create metric .DESCRIPTION Creates a metric. This method returns a PSCustomObject from JSON - see online help for more details. Alternatively, if the switch parameter is supplied, calls Get or create metric: Returns the details of a metric in a definition if it exists, or creates a new metric if it does not. The method then returns the response object with two properties: - metric - is_metric_created (true if a new metric was created, or false if it already existed). .PARAMETER DefinitionId The LUID(s) of the metric definition. .PARAMETER Specification The specification of the metric, as hashtable. Should include keys: filters (as list), measurement_period (granularity, range), comparison (comparison: "TIME_COMPARISON_UNSPECIFIED"). Please check API documentation for full schema of item definition. .PARAMETER GetOrCreate (Optional) Switch, if provided the Get or create metric method is called. .EXAMPLE $def = New-TableauPulseMetric -DefinitionId $def -Specification $spec .EXAMPLE $def = New-TableauPulseMetric -DefinitionId $def -Specification $spec -GetOrCreate .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_CreateMetric .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/TAG/index.html#tag/Pulse-Methods/operation/MetricQueryService_GetOrCreateMetric #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauPulseMetric')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $DefinitionId, [Parameter(Mandatory)][hashtable] $Specification, [Parameter()][switch] $GetOrCreate ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ definition_id=$DefinitionId; specification=$Specification } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($DefinitionId)) { if ($GetOrCreate) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics:getOrCreate) -Body $jsonBody -Method Post -ContentType 'application/json' return $response } else { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.metric } } } function Remove-TableauPulseMetric { <# .SYNOPSIS Delete metric .DESCRIPTION Deletes a metric. .PARAMETER MetricId The LUID(s) of the metric. .EXAMPLE $result = Remove-TableauPulseMetric -MetricId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#MetricQueryService_DeleteMetric #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $MetricId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 if ($PSCmdlet.ShouldProcess($MetricId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/metrics/$MetricId) -Method Delete } } function Get-TableauPulseSubscription { <# .SYNOPSIS List subscriptions or Batch get subscriptions or Get subscription .DESCRIPTION Lists the subscriptions to a specified metric and/or for a specified user. or Gets a batch of subscriptions, specified in a comma delimited list of subscriptions LUIDs. or Gets the number of unique users subscribed to a set of metrics specified in a comma separated list of metric LUIDs. or Gets a specified subscription to a metric. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER SubscriptionId The LUID of the subscriptions. If more than one subscription ID is supplied, the batchGet method is called. .PARAMETER MetricId (Optional) The LUID of a metric whose subscriptions will be returned. .PARAMETER UserId (Optional) The LUID of a user whose subscriptions will be returned. .PARAMETER PageSize (Optional) Specifies the number of results in a paged response. .EXAMPLE $subs = Get-TableauPulseSubscription .EXAMPLE $subs = Get-TableauPulseSubscription -MetricId $mid .EXAMPLE $sub = Get-TableauPulseSubscription -SubscriptionId $sid .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_ListSubscriptions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_BatchGetSubscriptions .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_GetSubscription .NOTES A user who follows (has a subscription to) a metric can receive digests via email or Slack. Digests can also be viewed in the Metrics home page in the Tableau UI. #> [OutputType([PSCustomObject])] Param( [Parameter(Mandatory,ParameterSetName='GetSubscription')][string[]] $SubscriptionId, [Parameter(ParameterSetName='ListSubscriptions')][string] $MetricId, [Parameter(ParameterSetName='ListSubscriptions')][string] $UserId, [Parameter(ParameterSetName='ListSubscriptions')][ValidateRange(1,100)][int] $PageSize ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) if ($SubscriptionId) { # Get subscription / Batch get subscriptions if ($SubscriptionId.Length -gt 1) { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions:batchGet $uriParam.Add("subscription_ids", $SubscriptionId -join ',') } else { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions/$SubscriptionId } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' if ($SubscriptionId.Length -gt 1) { return $response.subscriptions } else { return $response.subscription } } else { # List subscriptions if ($PageSize) { $uriParam.Add("page_size", $PageSize) } if ($MetricId) { $uriParam.Add("metric_id", $MetricId) } if ($UserId) { $uriParam.Add("user_id", $UserId) } do { $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() # Write-Debug $uriRequest.Uri.OriginalString $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' $response.subscriptions if ($response.next_page_token) { $uriParam.Remove("page_token") $uriParam.Add("page_token", $response.next_page_token) } } until (-not $response.next_page_token) } } function New-TableauPulseSubscription { <# .SYNOPSIS Create subscription or Batch create subscriptions .DESCRIPTION Creates a subscription to a specified metric for a specified user or group. This method returns a PSCustomObject from JSON - see online help for more details. If more than one user and/or group id is provide, the method Batch create subscriptions is called instead, which allows adding multiple subscriptions. .PARAMETER MetricId The LUID of the metric a subscription is being created to. .PARAMETER UserId (Optional) The LUID(s) of a user being subscribed to a metric. .PARAMETER GroupId (Optional) The LUID(s) of a group being subscribed to a metric. .EXAMPLE $def = New-TableauPulseSubscription -MetricId $mid -UserId $uid .EXAMPLE $def = New-TableauPulseSubscription -MetricId $mid -GroupId $gid1,gid2 .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_CreateSubscription .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_BatchCreateSubscriptions #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauPulseSubscription')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $MetricId, [Parameter()][string[]] $UserId, [Parameter()][string[]] $GroupId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ metric_id=$MetricId } $batchCreate = $false if ($UserId -and $UserId.Length -eq 1 -and -not $GroupId) { $request.follower = @{user_id = $UserId} } elseif ($GroupId -and $GroupId.Length -eq 1 -and -not $UserId) { $request.follower = @{group_id = $GroupId} } else { $batchCreate = $true $request.followers = @() if ($UserId) { foreach ($uid in $UserId) { $request.followers.Add(@{user_id=$uid}) } } if ($GroupId) { foreach ($gid in $GroupId) { $request.followers.Add(@{group_id=$gid}) } } } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($MetricId)) { if ($batchCreate) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions:batchCreate) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.subscriptions } else { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.subscription } } } function Remove-TableauPulseSubscription { <# .SYNOPSIS Delete subscription .DESCRIPTION Deletes a specified subscription to a metric. .PARAMETER SubscriptionId The LUID(s) of the subscription. .EXAMPLE $result = Remove-TableauPulseSubscription -SubscriptionId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_DeleteSubscription #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $SubscriptionId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 if ($PSCmdlet.ShouldProcess($SubscriptionId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions/$SubscriptionId) -Method Delete } } function Get-TableauPulseSubscriberCount { <# .SYNOPSIS Batch get subscriber counts .DESCRIPTION Gets the number of unique users subscribed to a set of metrics specified in a comma separated list of metric LUIDs. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER MetricId (Optional) The metrics to get follower counts for, formatted as a comma separated list of LUIDs. If no LUIDs are specified, the follower count for all metrics in a definition will be returned. .EXAMPLE $defs = Get-TableauPulseSubscriberCount .EXAMPLE $def = Get-TableauPulseSubscriberCount -MetricId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseSubscriptionService_BatchGetMetricFollowerCounts #> [OutputType([PSCustomObject])] Param( [Parameter()][string[]] $MetricId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $uriParam = [System.Web.HttpUtility]::ParseQueryString([String]::Empty) $uri = Get-TableauRequestUri -Endpoint Versionless -Param pulse/subscriptions:batchGetMetricFollowerCounts if ($MetricId) { $uriParam.Add("metric_ids", $MetricId -join ',') } $uriRequest = [System.UriBuilder]$uri $uriRequest.Query = $uriParam.ToString() $response = Invoke-TableauRestMethod -Uri $uriRequest.Uri.OriginalString -Method Get # -ContentType 'application/json' return $response.follower_counts } function New-TableauPulseInsightBundle { <# .SYNOPSIS Generate current metric value / detail / springboard insight bundle .DESCRIPTION Generates a bundle the current aggregated value for each metric. or Generates a detail insight bundle. or Generates a springboard insight bundle. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER Type The type of the insight bundle: ban, detail or springboard. .PARAMETER MetricName The name of the metric. .PARAMETER MetricId The LUID of the metric. .PARAMETER DefinitionId The LUID of the metric definition. .PARAMETER Version (Optional) The version of the bundle type to request. Default is 0. .PARAMETER OutputFormat (Optional) Determines the type of markup to return for the insight text (text or html). Default is unspecified. .PARAMETER Timestamp (Optional) If specified, the date/time to use as current for insight analysis. If empty the current date/time is used. The format should be "YYYY-MM-DD HH:MM:SS" or "YYYY-MM-DD" or empty. If no time is specified, then midnight ("00:00:00") is used. .PARAMETER Timezone (Optional) The time zone to use for insight analysis. If empty, UTC is used. .PARAMETER Definition (Optional) The metric definition, as hashtable. Should include keys: datasource (id), basic_specification (measure, time_dimension, filters), viz_state_specification (viz_state_string), is_running_total (true/false). Please check API documentation for full schema of item definition. .PARAMETER Specification (Optional) The specification of the metric definition, as hashtable. Should include keys: filters (as list), measurement_period (granularity, range), comparison (comparison: "TIME_COMPARISON_UNSPECIFIED"). Please check API documentation for full schema of item definition. .PARAMETER ExtensionOptions (Optional) The extension options of the metric definition, as hashtable. Should include keys: allowed_dimensions (as list), allowed_granularities (enum, default: "GRANULARITY_UNSPECIFIED") Please check API documentation for full schema of item definition. .PARAMETER RepresentationOptions (Optional) The representation options of the metric definition, as hashtable. Should include keys: type (enum, default: "NUMBER_FORMAT_TYPE_UNSPECIFIED"), number_units (singular_noun, plural_noun), sentiment_type (e.g. "SENTIMENT_TYPE_UP_IS_GOOD"), row_level_id_field, row_level_entity_names. Please check API documentation for full schema of item definition. .PARAMETER InsightsOptions (Optional) The insights options of the metric definition, as hashtable. Please check API documentation for full schema of item definition. .EXAMPLE $result = New-TableauPulseInsightBundle -MetricName Sales -MetricId $mid -DefinitionId $id -Definition @{...} -Specification @{...} -RepresentationOptions @{...} -ExtensionOptions @{...} -InsightsOptions @{show_insights=$true;settings=@()} .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseInsightsService_GenerateInsightBundleBAN .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseInsightsService_GenerateInsightBundleDetail .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_pulse.htm#PulseInsightsService_GenerateInsightBundleSpringboard .NOTES An insight is a data-driven observation about a metric.Tableau automatically generates and ranks insights by usefulness. An insight bundle is a collection of insights for a metric That can be configured to include various elements. #> [CmdletBinding(SupportsShouldProcess)] [Alias('Create-TableauPulseInsightBundle')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][ValidateSet('ban','detail','springboard')][string] $Type, [Parameter(Mandatory)][string] $MetricName, [Parameter(Mandatory)][string] $MetricId, [Parameter(Mandatory)][string] $DefinitionId, [Parameter()][int] $Version = 0, [Parameter()][ValidateSet('unspecified','html','text')][string] $OutputFormat = 'unspecified', [Parameter()][string] $Timestamp = '', [Parameter()][string] $Timezone = '', [Parameter()][hashtable] $Definition, [Parameter()][hashtable] $Specification, [Parameter()][hashtable] $ExtensionOptions, [Parameter()][hashtable] $RepresentationOptions, [Parameter()][hashtable] $InsightsOptions ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.21 $request = @{ bundle_request=@{ version=$Version; options=@{ output_format=('OUTPUT_FORMAT_'+$OutputFormat.ToUpper()); now=$Timestamp; time_zone=$Timezone }; input=@{ metadata=@{ name=$MetricName; metric_id=$MetricId; definition_id=$DefinitionId }; metric=@{} } } } if ($Definition) { $request.bundle_request.input.metric.definition = $Specification } if ($Specification) { $request.bundle_request.input.metric.metric_specification = $Specification } if ($ExtensionOptions) { $request.bundle_request.input.metric.extension_options = $ExtensionOptions } if ($RepresentationOptions) { $request.bundle_request.input.metric.representation_options = $RepresentationOptions } if ($InsightsOptions) { $request.bundle_request.input.metric.insights_options = $InsightsOptions } $jsonBody = $request | ConvertTo-Json -Compress -Depth 5 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess("$Type, metric: $MetricName, metric id: $MetricId, definition id: $DefinitionId")) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param pulse/insights/$Type) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.bundle_response } } ### Identity Pools methods - introduced in API 3.19 function Get-TableauAuthConfiguration { <# .SYNOPSIS List Authentication Configurations .DESCRIPTION List information about all authentication instances. This method can only be called by users with server administrator permissions. This method returns a PSCustomObject from JSON - see online help for more details. .EXAMPLE $instances = Get-TableauAuthConfiguration .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_identity_pools.htm#AuthnService_ListAuthConfigurations #> [OutputType([PSCustomObject])] Param() Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param authn-service/auth-configurations) -Method Get # -ContentType 'application/json' return $response.instances } function Set-TableauAuthConfiguration { <# .SYNOPSIS Update Authentication Configuration .DESCRIPTION Update an authentication instance. This method can only be called by users with server administrator permissions. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER InstanceId Authentication instance ID. .PARAMETER ClientId Provider client ID that the IdP has assigned to Tableau Server. .PARAMETER ClientSecret Provider client secret. This is a token that is used by Tableau Server to verify the authenticity of the response from the IdP. This value should be kept securely. .PARAMETER ConfigUrl Provider configuration URL. Specifies the location of the provider configuration discovery document that contains OpenID provider metadata. .PARAMETER CustomScope (Optional) Custom scope user-related value to query the IdP. .PARAMETER IdClaim (Optional) Claim for retrieving user ID from the OIDC token. Default value is 'sub'. .PARAMETER UsernameClaim (Optional) Claim for retrieving username from the OIDC token. Default value is 'email'. .PARAMETER ClientAuthentication (Optional) Token endpoint authentication method. Default value is 'CLIENT_SECRET_BASIC'. .PARAMETER IframedIdpEnabled (Optional) Boolean, allows the identity provider (IdP) to authenticate inside of an iFrame. The IdP must disable clickjack protection to allow iFrame presentation. Default value is 'false'. .PARAMETER EssentialAcrValues (Optional) List of essential Authentication Context Reference Class values used for authentication. .PARAMETER VoluntaryAcrValues (Optional) List of voluntary Authentication Context Reference Class values used for authentication. .PARAMETER Prompt (Optional) Prompts the user for reauthentication and consent. .PARAMETER ConnectionTimeout (Optional) Integer, wait time (in seconds) for connecting to the IdP. .PARAMETER ReadTimeout (Optional) Integer, wait time (in seconds) for data from the IdP. .PARAMETER IgnoreDomain (Optional) Set value to 'true' only if the following are true: you are using email addresses as usernames in Tableau Server, you have provisioned users in the IdP with multiple domains, and you want to ignore the domain name portion of the email claim from the IdP. Default value is 'false'. .PARAMETER IgnoreJwk (Optional) Set value to 'true' if the IdP does not support JWK validation. Default value is 'false'. .EXAMPLE $oidc = Set-TableauAuthConfiguration -InstanceId $id -ClientId $cid -ClientSecret $secret -ConfigUrl $url -IdClaim $claim -UsernameClaim $userclaim .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_identity_pools.htm#AuthnService_UpdateAuthConfiguration .NOTES The request body must specify all the required and desired parameters, not jus the parameters you want to update. #> [CmdletBinding(SupportsShouldProcess)] [Alias('Update-TableauAuthConfiguration')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $InstanceId, [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $ClientSecret, [Parameter(Mandatory)][string] $ConfigUrl, [Parameter()][string] $CustomScope, [Parameter()][string] $IdClaim = 'sub', [Parameter()][string] $UsernameClaim = 'email', [Parameter()][ValidateSet('client_secret_basic','client_secret_post')][string] $ClientAuthentication = 'client_secret_basic', [Parameter()][ValidateSet('true','false')][string] $IframedIdpEnabled = 'false', [Parameter()][string] $EssentialAcrValues, [Parameter()][string] $VoluntaryAcrValues, [Parameter()][string] $Prompt, [Parameter()][int] $ConnectionTimeout, [Parameter()][int] $ReadTimeout, [Parameter()][ValidateSet('true','false')][string] $IgnoreDomain, [Parameter()][ValidateSet('true','false')][string] $IgnoreJwk ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 $request = @{ id=$InstanceId; auth_type='OIDC'; iframed_idp_enabled=$IframedIdpEnabled; oidc=@{ client_id=$ClientId; client_secret=$ClientSecret; config_url=$ConfigUrl; id_claim=$IdClaim; username_claim=$UsernameClaim; client_authentication=$ClientAuthentication } } if ($CustomScope) { $request.oidc.custom_scope = $CustomScope } if ($EssentialAcrValues) { $request.oidc.essential_acr_values = $EssentialAcrValues } if ($VoluntaryAcrValues) { $request.oidc.voluntary_acr_values = $VoluntaryAcrValues } if ($Prompt) { $request.oidc.prompt = $Prompt } if ($ConnectionTimeout) { $request.oidc.connection_timeout = $ConnectionTimeout } if ($ReadTimeout) { $request.oidc.read_timeout = $ReadTimeout } if ($IgnoreDomain) { $request.oidc.ignore_domain = $IgnoreDomain } if ($IgnoreJwk) { $request.oidc.ignore_jwk = $IgnoreJwk } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($DefinitionId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param authn-service/auth-configurations/$InstanceId) -Body $jsonBody -Method Put -ContentType 'application/json' return $response.auth_configuration } } function New-TableauAuthConfiguration { <# .SYNOPSIS Create Authentication Configuration .DESCRIPTION Create an instance of OpenID Connect (OIDC) authentication. This method can only be called by users with server administrator permissions. This method returns a PSCustomObject from JSON - see online help for more details. .PARAMETER ClientId Provider client ID that the IdP has assigned to Tableau Server. .PARAMETER ClientSecret Provider client secret. This is a token that is used by Tableau Server to verify the authenticity of the response from the IdP. This value should be kept securely. .PARAMETER ConfigUrl Provider configuration URL. Specifies the location of the provider configuration discovery document that contains OpenID provider metadata. .PARAMETER CustomScope (Optional) Custom scope user-related value to query the IdP. .PARAMETER IdClaim (Optional) Claim for retrieving user ID from the OIDC token. Default value is 'sub'. .PARAMETER UsernameClaim (Optional) Claim for retrieving username from the OIDC token. Default value is 'email'. .PARAMETER ClientAuthentication (Optional) Token endpoint authentication method. Default value is 'CLIENT_SECRET_BASIC'. .PARAMETER IframedIdpEnabled (Optional) Boolean, allows the identity provider (IdP) to authenticate inside of an iFrame. The IdP must disable clickjack protection to allow iFrame presentation. Default value is 'false'. .PARAMETER EssentialAcrValues (Optional) List of essential Authentication Context Reference Class values used for authentication. .PARAMETER VoluntaryAcrValues (Optional) List of voluntary Authentication Context Reference Class values used for authentication. .PARAMETER Prompt (Optional) Prompts the user for reauthentication and consent. .PARAMETER ConnectionTimeout (Optional) Integer, wait time (in seconds) for connecting to the IdP. .PARAMETER ReadTimeout (Optional) Integer, wait time (in seconds) for data from the IdP. .PARAMETER IgnoreDomain (Optional) Set value to 'true' only if the following are true: you are using email addresses as usernames in Tableau Server, you have provisioned users in the IdP with multiple domains, and you want to ignore the domain name portion of the email claim from the IdP. Default value is 'false'. .PARAMETER IgnoreJwk (Optional) Set value to 'true' if the IdP does not support JWK validation. Default value is 'false'. .EXAMPLE $oidc = New-TableauAuthConfiguration -ClientId $cid -ClientSecret $secret -ConfigUrl $url -IdClaim $claim -UsernameClaim $userclaim .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_identity_pools.htm#AuthnService_RegisterAuthConfiguration #> [CmdletBinding(SupportsShouldProcess)] [Alias('Add-TableauAuthConfiguration')] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $ClientId, [Parameter(Mandatory)][string] $ClientSecret, [Parameter(Mandatory)][string] $ConfigUrl, [Parameter()][string] $CustomScope, [Parameter()][string] $IdClaim = 'sub', [Parameter()][string] $UsernameClaim = 'email', [Parameter()][ValidateSet('client_secret_basic','client_secret_post')][string] $ClientAuthentication = 'client_secret_basic', [Parameter()][ValidateSet('true','false')][string] $IframedIdpEnabled = 'false', [Parameter()][string] $EssentialAcrValues, [Parameter()][string] $VoluntaryAcrValues, [Parameter()][string] $Prompt, [Parameter()][int] $ConnectionTimeout, [Parameter()][int] $ReadTimeout, [Parameter()][ValidateSet('true','false')][string] $IgnoreDomain, [Parameter()][ValidateSet('true','false')][string] $IgnoreJwk ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 $request = @{ auth_type='OIDC'; iframed_idp_enabled=$IframedIdpEnabled; oidc=@{ client_id=$ClientId; client_secret=$ClientSecret; config_url=$ConfigUrl; id_claim=$IdClaim; username_claim=$UsernameClaim; client_authentication=$ClientAuthentication } } if ($CustomScope) { $request.oidc.custom_scope = $CustomScope } if ($EssentialAcrValues) { $request.oidc.essential_acr_values = $EssentialAcrValues } if ($VoluntaryAcrValues) { $request.oidc.voluntary_acr_values = $VoluntaryAcrValues } if ($Prompt) { $request.oidc.prompt = $Prompt } if ($ConnectionTimeout) { $request.oidc.connection_timeout = $ConnectionTimeout } if ($ReadTimeout) { $request.oidc.read_timeout = $ReadTimeout } if ($IgnoreDomain) { $request.oidc.ignore_domain = $IgnoreDomain } if ($IgnoreJwk) { $request.oidc.ignore_jwk = $IgnoreJwk } $jsonBody = $request | ConvertTo-Json -Compress -Depth 4 Write-Debug $jsonBody if ($PSCmdlet.ShouldProcess($ClientId)) { $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param authn-service/auth-configurations) -Body $jsonBody -Method Post -ContentType 'application/json' return $response.auth_configuration } } function Remove-TableauAuthConfiguration { <# .SYNOPSIS Delete Authentication Configuration .DESCRIPTION Delete an authentication instance. This method can only be called by users with server administrator permissions. .PARAMETER InstanceId Authentication instance ID. .EXAMPLE $result = Remove-TableauAuthConfiguration -InstanceId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_identity_pools.htm#AuthnService_DeleteAuthConfiguration #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] Param( [Parameter(Mandatory)][string] $InstanceId ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.19 if ($PSCmdlet.ShouldProcess($InstanceId)) { Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Versionless -Param authn-service/auth-configurations/$InstanceId) -Method Delete } } ### Metadata methods function Get-TableauDatabase { <# .SYNOPSIS Query Database / Query Databases .DESCRIPTION Get information about a database asset, or a list of database assets. .PARAMETER DatabaseId Query Database: The LUID of the database. .PARAMETER PageSize (Optional, Query Databases) Page size when paging through results. .EXAMPLE $databases = Get-TableauDatabase .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_database .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_databases #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='DatabaseById')][string] $DatabaseId, [Parameter(ParameterSetName='Databases')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 if ($DatabaseId) { # Query Database $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Database -Param $DatabaseId) -Method Get $response.tsResponse.database } else { # Query Databases $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Database $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.databases.database } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauTable { <# .SYNOPSIS Query Table / Query Tables .DESCRIPTION Get information about a table asset, or a list of table assets. .PARAMETER TableId Query Table: The LUID of the table. .PARAMETER PageSize (Optional, Query Tables) Page size when paging through results. .EXAMPLE $tables = Get-TableauTable .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_table .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_tables #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory,ParameterSetName='TableById')][string] $TableId, [Parameter(ParameterSetName='Tables')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 if ($TableId) { # Query Table $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Table -Param $TableId) -Method Get $response.tsResponse.table } else { # Query Tables $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Table $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.tables.table } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauTableColumn { <# .SYNOPSIS Query Column in a Table / Query Columns in a Table .DESCRIPTION Get information about a column in a table asset, or a list of column assets. .PARAMETER TableId The LUID of the table. .PARAMETER ColumnId Query Column in a Table: The LUID of the column. .PARAMETER PageSize (Optional, Query Columns in a Table) Page size when paging through results. .EXAMPLE $columns = Get-TableauTableColumn -TableId $id .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_column .LINK https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_metadata.htm#query_columns #> [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $TableId, [Parameter(Mandatory,ParameterSetName='ColumnById')][string] $ColumnId, [Parameter(ParameterSetName='Columns')][ValidateRange(1,100)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 if ($ColumnId) { # Query Column in a Table $response = Invoke-TableauRestMethod -Uri (Get-TableauRequestUri -Endpoint Table -Param $TableId/columns/$ColumnId) -Method Get $response.tsResponse.column } else { # Query Columns in a Table $pageNumber = 0 do { $pageNumber++ $uri = Get-TableauRequestUri -Endpoint Table -Param $TableId/columns $uri += "?pageSize=$PageSize" + "&pageNumber=$pageNumber" $response = Invoke-TableauRestMethod -Uri $uri -Method Get $totalAvailable = $response.tsResponse.pagination.totalAvailable $response.tsResponse.columns.column } until ($PageSize*$pageNumber -ge $totalAvailable) } } function Get-TableauMetadataObject { <# .SYNOPSIS Run Metadata GraphQL query .DESCRIPTION Runs the specified GraphQL query through the Tableau Metadata API, including paginating of results. .PARAMETER Query The GraphQL query .PARAMETER Variables The hashtable of query variables values. The names of the variables should match to the those defined in the query, otherwise they will be e.g. ignored in filters. .PARAMETER PaginatedEntity If this parameter is provided: modifies the query to implement paginating through results. Pagination in Tableau Metadata API is supported on entities ending with "Connection" (edges), such as fieldsConnection, workbooksConnection, etc. .PARAMETER PageSize (Optional, Query Columns in a Table) Page size when paging through results. .EXAMPLE $results = Get-TableauMetadataObject -Query (Get-Content "workbooks.graphql" | Out-String) .LINK https://help.tableau.com/current/api/metadata_api/en-us/index.html #> [Alias('Run-TableauMetadataGraphQL')] [Alias('Query-TableauMetadata')] [OutputType([PSCustomObject[]])] Param( [Parameter(Mandatory)][string] $Query, [Parameter()][hashtable] $Variables, [Parameter()][string] $PaginatedEntity, [Parameter()][ValidateRange(1,20000)][int] $PageSize = 100 ) Assert-TableauAuthToken Assert-TableauRestVersion -AtLeast 3.5 $uri = Get-TableauRequestUri -Endpoint GraphQL if ($PaginatedEntity) { # run paginated (modified) query # $pageNumber = 0 $nodesCount = 0 $endCursor = $null $hasNextPage = $true while ($hasNextPage) { if ($endCursor) { if ($Query.Contains("$PaginatedEntity(")) { $queryPage = $Query -replace "$PaginatedEntity\(", "$PaginatedEntity(first: $PageSize, after: ""$endCursor"", " } else { $queryPage = $Query -replace $PaginatedEntity, "$PaginatedEntity(first: $PageSize, after: ""$endCursor"")" } } else { if ($Query.Contains("$PaginatedEntity(")) { $queryPage = $Query -replace "$PaginatedEntity\(", "$PaginatedEntity(first: $PageSize, " } else { $queryPage = $Query -replace $PaginatedEntity, "$PaginatedEntity(first: $PageSize)" } } $jsonQuery = @{ query = $queryPage variables = $Variables } | ConvertTo-Json # Write-Debug $jsonQuery $response = Invoke-TableauRestMethod -Uri $uri -Body $jsonQuery -Method Post -ContentType 'application/json' $endCursor = $response.data.$PaginatedEntity.pageInfo.endCursor $hasNextPage = $response.data.$PaginatedEntity.pageInfo.hasNextPage $totalCount = $response.data.$PaginatedEntity.totalCount $nodesCount += $response.data.$PaginatedEntity.nodes.length $response.data.$PaginatedEntity.nodes if ($totalCount -gt 0) { $percentCompleted = [Math]::Round($nodesCount / $totalCount * 100) Write-Progress -Activity "Fetching metadata" -Status "$nodesCount / $totalCount entities retrieved ($percentCompleted%)" -PercentComplete $percentCompleted } } Write-Progress -Activity "Fetching metadata completed" -Completed if ($totalCount -and $nodesCount -ne $totalCount) { throw "Nodes count ($nodesCount) is not equal to totalCount ($totalCount), fetched results are incomplete." } } else { # run non-paginated (unmodified) query $jsonQuery = @{ query = $Query; variables = $Variables } | ConvertTo-Json $response = Invoke-TableauRestMethod -Uri $uri -Body $jsonQuery -Method Post -ContentType 'application/json' $entity = $response.data.PSObject.Properties | Select-Object -First 1 -ExpandProperty Name $response.data.$entity } } |