Public/New-MerakiOrganizationInventoryOnboardingCloudMonitoringPrepare.ps1

function New-MerakiOrganizationInventoryOnboardingCloudMonitoringPrepare {
    <#
    .SYNOPSIS
    Create an inventory onboarding cloud monitoring prepare in the Meraki Dashboard using the Meraki Dashboard API.
 
    .DESCRIPTION
    The New-MerakiOrganizationInventoryOnboardingCloudMonitoringPrepare function allows you to create an inventory onboarding cloud monitoring prepare in the Meraki Dashboard by providing the authentication token, organization ID, and a prepare configuration.
 
    .PARAMETER AuthToken
    The authentication token (API key) required to access the Meraki Dashboard API.
 
    .PARAMETER OrganizationId
    The ID of the Meraki organization to which you want to create the inventory onboarding cloud monitoring prepare.
 
    .PARAMETER PrepConfig
    A string containing the prepare configuration. The string should be in JSON format and should include the following properties: "devices", "sudi", "tunnel", "user", "vty", "accessList", "authentication", and "authorization".
 
    .EXAMPLE
    $prepConfig = [PSCustomObject]@{
        devices = @(
            @{
                serial = "Q2XX-XXXX-XXXX"
                name = "My Device"
            }
        )
        sudi = "ABCD1234"
        tunnel = @{
            localInterface = 1
            loopbackNumber = 0
            certificateName = "My Certificate"
            name = "My Tunnel"
        }
        user = @{
            username = "myuser"
        }
        vty = @{
            endLineNumber = 15
            rotaryNumber = 0
            startLineNumber = 0
            accessList = @{
                vtyIn = @{
                    name = "My ACL"
                }
                vtyOut = @{
                    name = "My ACL"
                }
            }
            authentication = @{
                group = @{
                    name = "My Group"
                }
            }
            authorization = @{
                group = @{
                    name = "My Group"
                }
            }
        }
    }
 
    $prepConfigJson = $prepConfig | ConvertTo-Json -Compress
    New-MerakiOrganizationInventoryOnboardingCloudMonitoringPrepare -AuthToken "your-api-token" -OrganizationId "123456" -PrepConfig $prepConfigJson
 
    This example creates an inventory onboarding cloud monitoring prepare in the Meraki organization with ID "123456".
 
    .NOTES
    The function requires the "Invoke-RestMethod" cmdlet to be available.
 
    The function returns the response from the API if the prepare creation is successful, otherwise, it displays an error message.
    #>


    [CmdletBinding()]
    param (
        [parameter(Mandatory=$true)]
        [string]$AuthToken,
        [parameter(Mandatory=$false)]
        [string]$OrganizationID = (Get-OrgID -AuthToken $AuthToken),
        [parameter(Mandatory=$true)]
        [string]$PrepConfig
    )
    If($OrganizationID -eq "Multiple organizations found. Please specify an organization ID.") {
        Return "Multiple organizations found. Please specify an organization ID."
    } else {
        try {
            $header = @{
                "X-Cisco-Meraki-API-Key" = $AuthToken
                "content-type" = "application/json; charset=utf-8"
            }

            $body = $PrepConfig

            $url = "https://api.meraki.com/api/v1/organizations/$OrganizationId/inventory/onboarding/cloudMonitoring/prepare"

            $response = Invoke-RestMethod -Method Post -Uri $url -headers $header -UserAgent "MerakiPowerShellModule/1.0.8 DocNougat" -Body $body
            return $response
        }
        catch {
        Write-Debug $_
        Throw $_
    }
    }
}