Steps to disable auto scaler at Organization level
Use below command to disable user access to service plans. The command denies access at the org level or across all orgs
cf disable-service-access SERVICE-NAME
You cannot disable access to a service plan for an org if the plan is currently available to all orgs. You must first disable access for all orgs then you can enable access for a particular org.
Please note,the following commands can be run only by an admin user only.
cf disable-service-access app-autoscaler
2.Run cf service-access command an admin to see the current access control setting for every service plan in the marketplace, across all service brokers.
Here you can see that the access to the app-autoscalar is "none".this means that no organization can access it
3. Run below command enable auto scalar service access on a particular org.
cf enable-service-access app-autoscaler -o <org-name>
If you run the cf service-access command again, you will notice that app-autoscalar access is now enabled to org 'neena' only.
For more details please refer this documentation.