# Pastebin nJ3esRLo Quota Operations¶ class openstack.load_balancer.v2._proxy.Proxy(session, statsd_client=None, statsd_prefix=None, prometheus_counter=None, prometheus_histogram=None, influxdb_config=None, influxdb_client=None, *args, **kwargs) update_quota(quota, **attrs)¶ Update a quota Parameters quota – Either the ID of a quota or a Quota instance. The ID of a quota is the same as the project ID for the quota. attrs (dict) – The attributes to update on the quota represented by quota. Returns The updated quota Return type Quota delete_quota(quota, ignore_missing=True)¶ Delete a quota (i.e. reset to the default quota) Parameters quota – The value can be either the ID of a quota or a Quota instance. The ID of a quota is the same as the project ID for the quota. ignore_missing (bool) – When set to False ResourceNotFound will be raised when quota does not exist. When set to True, no exception will be set when attempting to delete a nonexistent quota. Returns None quotas(**query)¶ Return a generator of quotas Parameters query (dict) – Optional query parameters to be sent to limit the resources being returned. Currently no query parameter is supported. Returns A generator of quota objects Return type Quota get_quota(quota)¶ Get a quota Parameters quota – The value can be the ID of a quota or a Quota instance. The ID of a quota is the same as the project ID for the quota. Returns One Quota Raises ResourceNotFound when no resource can be found. get_quota_default()¶ Get a default quota Returns One QuotaDefault