RTDP.CLI.AdminCmdlets.psd1
# # Module manifest for module 'RTDP.CLI.AdminCmdlets.dll' # # Generated by: AOLARIU # # Generated on: 04/08/2023 # @{ # Script module or binary module file associated with this manifest. RootModule = 'RTDP.CLI.AdminCmdlets.dll' # Version number of this module. ModuleVersion = '1.2.0' # Supported PSEditions CompatiblePSEditions = @("Core") # ID used to uniquely identify this module GUID = '63a20470-f579-47cd-8f75-edbcfd999047' # Author of this module Author = 'RISE Data Platform' # Company or vendor of this module CompanyName = 'Microsoft' # Copyright statement for this module Copyright = '(c) 2023 Microsoft. All rights reserved.' # Description of the functionality provided by this module Description = ' The Admin PowerShell Cmdlets module is targeted for Data Platform admin-usage. The cmdlets provide elevated controls against partner resources and general resources that are currently available in the Data Platform. For this cmdlets, you will need to provide your own JWT Access Token; please contact risedp@service.microsoft.com if you need help.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '7.2.10' # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @("Microsoft.Identity.Client.dll", "Microsoft.IdentityModel.Abstractions.dll") # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @( "Initialize-AdminSession", # Data Platform Admin Login Cmdlet "Get-AvailableDatastores", "Get-DatastoreTables", "Get-DatastoreInformation", # App Resources API Admin Cmdlets "Get-PartnerApps", "Register-PartnerApp", "Remove-PartnerApp", "Update-PartnerApp", "Delete-Datastore", "Get-DatastoreConnectionString", "Get-DatastoreEndpoints", "Register-Datastore", "Update-Datastore", "Update-DatastoreVersion", "Promote-ResourceStorage", "Get-DatasetContent", "Get-DatasetSchema", "Add-DatasetRecord", # Data Server API Admin Cmdlets "Delete-Dataset", "Get-AvailableDatasets", "Get-DatasetColumns", # Dataset Manager API Admin Cmdlets "Get-DatasetConnectionDetails", "Get-DatasetEnvironments", "Get-DatasetInformation", "Update-DatasetInformation" "Promote-Dataset", "Register-Dataset", "Revoke-DatasetPromotion" "Get-QueuedIngestionsByDatasetId", "Get-QueuedIngestionsByDatasetIdAndSourceId", # QueuedIngestion API Admin Cmdlets "Get-RequesterQueuedIngestions", "Register-QueuedIngestion") # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @( "dp-login", # Data Platform Admin Login alias "dp-datastores", "dp-tables", "dp-datastore", # App Resources API Admin aliases "dp-datastore-partnerApps", "dp-register-application", "dp-remove-application", "dp-update-application", "dp-delete-datastore", "dp-datastore-connection", "dp-datastore-endpoints", "dp-register-datastore", "dp-update-datastore", "dp-patch-datastore", "dp-promote-storage", "dp-content", "dp-schema", "dp-add", # Data Server API Admin aliases "dp-delete-dataset", "dp-datasets", "dp-columns", # Dataset Manager API Admin aliases "dp-dataset-connection", "dp-promote", "dp-register", "dp-demote", "dp-environments", "dp-dataset", "dp-update" "dp-queuedingestions", "dp-queuedingestions-dataset", # QueuedIngestion API Admin aliases "dp-queuedingestions-dataset-source", "dp-ingestion") # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module # FileList = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @("DataPlatform", "SovCloud") # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. # ProjectUri = '' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = ' Version 1.2.0: Added the `Promote-ResourceStorage` cmdlet, which allows for the promotion of a resource storage. Version 1.1.0: Added support for QueuedIngestion API Admin Cmdlets. Version 1.0.0: Initial release of the Admin PowerShell Cmdlets module. ' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' } |