QuotasClientCompositeOperations

class oci.limits.QuotasClientCompositeOperations(client, **kwargs)

This class provides a wrapper around QuotasClient and offers convenience methods for operations that would otherwise need to be chained together. For example, instead of performing an action on a resource (e.g. launching an instance, creating a load balancer) and then using a waiter to wait for the resource to enter a given state, you can call a single method in this class to accomplish the same functionality

Methods

__init__(client, **kwargs) Creates a new QuotasClientCompositeOperations object
add_quota_lock_and_wait_for_state(quota_id, …) Calls add_quota_lock() and waits for the Quota acted upon to enter the given state(s).
create_quota_and_wait_for_state(…[, …]) Calls create_quota() and waits for the Quota acted upon to enter the given state(s).
delete_quota_and_wait_for_state(quota_id[, …]) Calls delete_quota() and waits for the Quota acted upon to enter the given state(s).
remove_quota_lock_and_wait_for_state(…[, …]) Calls remove_quota_lock() and waits for the Quota acted upon to enter the given state(s).
update_quota_and_wait_for_state(quota_id, …) Calls update_quota() and waits for the Quota acted upon to enter the given state(s).
__init__(client, **kwargs)

Creates a new QuotasClientCompositeOperations object

Parameters:client (QuotasClient) – The service client which will be wrapped by this object
add_quota_lock_and_wait_for_state(quota_id, add_lock_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls add_quota_lock() and waits for the Quota acted upon to enter the given state(s).

Parameters:
  • quota_id (str) – (required) The OCID of the quota.
  • add_lock_details (oci.limits.models.AddLockDetails) – (required)
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for lifecycle_state
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to add_quota_lock()
  • waiter_kwargs (dict) – A dictionary of keyword arguments to pass to the oci.wait_until() function. For example, you could pass max_interval_seconds or max_interval_seconds as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait
create_quota_and_wait_for_state(create_quota_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls create_quota() and waits for the Quota acted upon to enter the given state(s).

Parameters:
  • create_quota_details (oci.limits.models.CreateQuotaDetails) – (required) Request object for creating a new quota.
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for lifecycle_state
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to create_quota()
  • waiter_kwargs (dict) – A dictionary of keyword arguments to pass to the oci.wait_until() function. For example, you could pass max_interval_seconds or max_interval_seconds as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait
delete_quota_and_wait_for_state(quota_id, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls delete_quota() and waits for the Quota acted upon to enter the given state(s).

Parameters:
  • quota_id (str) – (required) The OCID of the quota.
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for lifecycle_state
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to delete_quota()
  • waiter_kwargs (dict) – A dictionary of keyword arguments to pass to the oci.wait_until() function. For example, you could pass max_interval_seconds or max_interval_seconds as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait
remove_quota_lock_and_wait_for_state(quota_id, remove_lock_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls remove_quota_lock() and waits for the Quota acted upon to enter the given state(s).

Parameters:
  • quota_id (str) – (required) The OCID of the quota.
  • remove_lock_details (oci.limits.models.RemoveLockDetails) – (required)
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for lifecycle_state
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to remove_quota_lock()
  • waiter_kwargs (dict) – A dictionary of keyword arguments to pass to the oci.wait_until() function. For example, you could pass max_interval_seconds or max_interval_seconds as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait
update_quota_and_wait_for_state(quota_id, update_quota_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls update_quota() and waits for the Quota acted upon to enter the given state(s).

Parameters:
  • quota_id (str) – (required) The OCID of the quota.
  • update_quota_details (oci.limits.models.UpdateQuotaDetails) – (required) Request object for updating a quota.
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for lifecycle_state
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to update_quota()
  • waiter_kwargs (dict) – A dictionary of keyword arguments to pass to the oci.wait_until() function. For example, you could pass max_interval_seconds or max_interval_seconds as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait