We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recently, I ran this:
$(Invoke-GitlabApi GET 'application/settings').PSObject.Properties | Where-Object Name -match 'throttle.*api' | Select-Object Name,Value
Name Value ---- ----- throttle_authenticated_api_enabled True throttle_authenticated_api_period_in_seconds 600 throttle_authenticated_api_requests_per_period 1500 throttle_authenticated_packages_api_enabled False throttle_authenticated_packages_api_period_in_seconds 15 throttle_authenticated_packages_api_requests_per_period 1000 throttle_authenticated_files_api_enabled False throttle_authenticated_files_api_period_in_seconds 15 throttle_authenticated_files_api_requests_per_period 500 throttle_authenticated_deprecated_api_enabled False throttle_authenticated_deprecated_api_period_in_seconds 1800 throttle_authenticated_deprecated_api_requests_per_period 3600 throttle_unauthenticated_api_enabled False throttle_unauthenticated_api_period_in_seconds 3600 throttle_unauthenticated_api_requests_per_period 3600 throttle_unauthenticated_packages_api_enabled False throttle_unauthenticated_packages_api_period_in_seconds 15 throttle_unauthenticated_packages_api_requests_per_period 800 throttle_unauthenticated_files_api_enabled False throttle_unauthenticated_files_api_period_in_seconds 15 throttle_unauthenticated_files_api_requests_per_period 125 throttle_unauthenticated_deprecated_api_enabled False throttle_unauthenticated_deprecated_api_period_in_seconds 3600 throttle_unauthenticated_deprecated_api_requests_per_period 3600
Would be nice to have something like:
Get-GitlabApplicationSetting -SettingName 'throttle.*api'
and have it return a pretty formatted PS object
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Recently, I ran this:
Would be nice to have something like:
and have it return a pretty formatted PS object
The text was updated successfully, but these errors were encountered: