en-US/about_PSDigitalOcean.help.txt

TOPIC
    about_PSDigitalOcean
 
SHORT DESCRIPTION
    A PowerShell module for managing DigitalOcean resources through their REST API.
 
LONG DESCRIPTION
    PSDigitalOcean is a comprehensive PowerShell module for managing DigitalOcean
    resources through their REST API. The module provides a complete set of
    cmdlets for interacting with DigitalOcean services including account
    management, image retrieval, and region information.
 
    Key Features:
    - Complete API Coverage: Access to DigitalOcean's REST API v2
    - Class-Based Architecture: Strongly-typed PowerShell classes for all objects
    - Pagination Support: Automatic handling of paginated API responses
    - Error Handling: Comprehensive error handling and validation
    - Security: Secure API token management through environment variables
 
EXAMPLES
    # Import the module
    Import-Module PSDigitalOcean
 
    # Get account information
    $account = Get-DigitalOceanAccount
    Write-Host "Account: $($account.email)"
 
    # List available images
    $images = Get-DigitalOceanImage -Type "distribution"
    $images | Where-Object { $_.Name -like "*Ubuntu*" } | Format-Table Name, Slug
 
    # Get all regions
    $regions = Get-DigitalOceanRegion -All
    $regions | Format-Table Name, Slug, Available
 
NOTE
    This module requires a valid DigitalOcean API token to be set in the
    DIGITALOCEAN_TOKEN environment variable.
 
    For configuration help: Get-Help about_PSDigitalOcean_Configuration
 
TROUBLESHOOTING NOTE
    For issues and support, visit the GitHub repository.
 
SEE ALSO
    - https://github.com/Itamartz/PSDigitalOceanUsingSampler
    - https://github.com/Itamartz/PSDigitalOceanUsingSampler/wiki
    - Get-DigitalOceanAccount
    - Get-DigitalOceanImage
    - Get-DigitalOceanRegion
 
KEYWORDS
    DigitalOcean, API, Cloud, Infrastructure, PowerShell, REST