Difference between revisions of "Powershell"
(→Rename-XL3Folders) |
(→Methods) |
||
Line 91: | Line 91: | ||
==Clear-XL3Permissions== | ==Clear-XL3Permissions== | ||
+ | Clear all the permissions set on the supplied folder | ||
+ | ===Parameters=== | ||
+ | *-Path (''string'') | ||
+ | **Path to the folder to clear the permissions from | ||
+ | |||
==Get-XL3Permissions== | ==Get-XL3Permissions== | ||
+ | Get the permissions for the given folder | ||
+ | |||
+ | ===Parameters=== | ||
+ | *-Path (''string'') | ||
+ | **Path to the folder to get list of permissions for. | ||
+ | |||
+ | ===Output=== | ||
+ | ''[[#RepositoryPermission|RepostioryPermission[]]]'' | ||
+ | *List of permissions set on the given folder | ||
+ | |||
==Remove-XL3Permissions== | ==Remove-XL3Permissions== | ||
+ | Remove the explicit set of permissions from the given folder | ||
+ | |||
+ | ===Parameters=== | ||
+ | *-Path (''string'') | ||
+ | **Path to the folder to remove the permissions from | ||
+ | *-PermissionID (''int[]'') | ||
+ | **List of permissions, by ID, to remove | ||
+ | |||
==Set-XL3Permissions== | ==Set-XL3Permissions== | ||
+ | Add the given permissions to the specified folder | ||
+ | |||
+ | ===Parameters=== | ||
+ | *-Path (''string'') | ||
+ | **Path to the folder to add the permissions to | ||
+ | *-Permission (''RepositoryPermission[]'') | ||
+ | **List of permissions to add | ||
+ | *-OverridePermissions (''bool'')) | ||
+ | **Set "override permission" setting on the folder | ||
+ | |||
==Add-XL3Reports== | ==Add-XL3Reports== | ||
==Get-XL3Reports== | ==Get-XL3Reports== |
Revision as of 14:20, 27 October 2022
Available for Version 10.0.144 and above running XLCubedWeb in a role-based SQL Repository running Windows Authentication or on an App Service.
Contents
[hide]- 1 Introduction
- 2 Installing
- 3 Methods
- 3.1 Get-XL3Connections
- 3.2 Set-XL3Connections
- 3.3 Add-XL3Folders
- 3.4 Get-XL3Folders
- 3.5 Remove-XL3Folders
- 3.6 Rename-XL3Folders
- 3.7 Clear-XL3Permissions
- 3.8 Get-XL3Permissions
- 3.9 Remove-XL3Permissions
- 3.10 Set-XL3Permissions
- 3.11 Add-XL3Reports
- 3.12 Get-XL3Reports
- 3.13 Open-XL3Reports
- 3.14 Remove-XL3Reports
- 3.15 Rename-XL3Reports
- 3.16 Select-XL3Reports
- 3.17 Get-XL3Repository
- 4 Data Types
- 5 Examples
Introduction
The PowerShell cmdlet is available by contacting support@xlcubed.com - it helps automate deployment of reports, folders and permissions.
Installing
Extract the supplied zip file, you can then install it by running the following command, either using the extracted folder as the current directory or by passing a full path:
Import-Module '.\XLCubed.PowerShell.dll' -force
All commands take the following parameters:
-BaseUri => The full URL to the XLCubedWeb server, for example: https://someserver/xlcubedweb
-AuthToken => Optional JWT authorisation token to use when accessing an App Service instance of XLCubedWeb
Methods
Get-XL3Connections
Return the connections used by the supplied report
Parameters
- -Data (Dictionary<string,byte[]>)
- Report data - can be retrieved using Select-XL3Report
Output
- The connections in the report
Set-XL3Connections
Update the connections in the report
Parameters
- -Data (Dictionary<string,byte[]>)
- Report data - can be retrieved using Select-XL3Report
- Connections (RepositoryConnection[])
- Connections to update - connections in the report will be matched by Id and updated to reflect the given Type, Server, Database and Cube
Output
Dictionary<string,byte[]>
- The updated report data
Add-XL3Folders
Add a new folder to the repository
Parameters
- -Path (string)
- Path to the folder to add the new folder to
- -Name (string)
- Name of the folder to add
Output
- The folder object that has been added
Get-XL3Folders
Get the folders in the given path
Parameters
- -Path (string)
- Path to the folder to get the contents of
Output
- List of folders in the Path
Remove-XL3Folders
Delete the given folder
Parameters
- -Path (string)
- Path to the folder to delete
Rename-XL3Folders
Rename the given folder
Parameters
- -Path (string)
- Path to the folder to rename
- -Name (string)
- The new name for the folder
Clear-XL3Permissions
Clear all the permissions set on the supplied folder
Parameters
- -Path (string)
- Path to the folder to clear the permissions from
Get-XL3Permissions
Get the permissions for the given folder
Parameters
- -Path (string)
- Path to the folder to get list of permissions for.
Output
- List of permissions set on the given folder
Remove-XL3Permissions
Remove the explicit set of permissions from the given folder
Parameters
- -Path (string)
- Path to the folder to remove the permissions from
- -PermissionID (int[])
- List of permissions, by ID, to remove
Set-XL3Permissions
Add the given permissions to the specified folder
Parameters
- -Path (string)
- Path to the folder to add the permissions to
- -Permission (RepositoryPermission[])
- List of permissions to add
- -OverridePermissions (bool))
- Set "override permission" setting on the folder
Add-XL3Reports
Get-XL3Reports
Open-XL3Reports
Remove-XL3Reports
Rename-XL3Reports
Select-XL3Reports
Get-XL3Repository
Data Types
RepositoryConnection
public class RepositoryConnection { public int Id { get; set; } public string Type { get; set; } public string Server { get; set; } public string Database { get; set; } public string Cube { get; set; } }
RepositoryFolder
public class RepositoryFolder { public string Name { get; set; } public string Path { get; set; } public bool? OveridePermissions { get; set; } }
RepositoryInfo
public class RepositoryInfo { public string Name { get; set; } public Version Version { get; set; } }
RepositoryPermissions
public class RepositoryPermission { public int PermissionID { get; set; } public string MemberType { get; set; } public int MemberID { get; set; } public char AccessRight { get; set; } public string Description { get; set; } public string MemberDescription { get; set; } }
RepositoryReport
public class RepositoryReport { public string Name { get; set; } public string Path { get; set; } public DateTime DatePublished { get; set; } public string Description { get; set; } public string PublishedBy { get; set; } }
RenderedReport
public class RenderedReport { public string Name { get; set; } public bool Successful { get; set; } public byte[] Data { get; set; } public Exception Error { get; set; } }