MarketplaceClientCompositeOperations

class oci.marketplace.MarketplaceClientCompositeOperations(client, **kwargs)

This class provides a wrapper around MarketplaceClient 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 MarketplaceClientCompositeOperations object
create_publication_and_wait_for_state(…[, …]) Calls create_publication() and waits for the Publication acted upon to enter the given state(s).
delete_publication_and_wait_for_state(…[, …]) Calls delete_publication() and waits for the Publication acted upon to enter the given state(s).
export_listing_and_wait_for_state(…[, …]) Calls export_listing() and waits for the WorkRequest to enter the given state(s).
update_publication_and_wait_for_state(…[, …]) Calls update_publication() and waits for the Publication acted upon to enter the given state(s).
__init__(client, **kwargs)

Creates a new MarketplaceClientCompositeOperations object

Parameters:client (MarketplaceClient) – The service client which will be wrapped by this object
create_publication_and_wait_for_state(create_publication_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls create_publication() and waits for the Publication acted upon to enter the given state(s).

Parameters:
  • create_publication_details (oci.marketplace.models.CreatePublicationDetails) – (required) The details for creating the publication.
  • 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_publication()
  • 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_publication_and_wait_for_state(publication_id, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls delete_publication() and waits for the Publication acted upon to enter the given state(s).

Parameters:
  • publication_id (str) – (required) The unique identifier for the publication.
  • 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_publication()
  • 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
export_listing_and_wait_for_state(listing_id, package_version, export_package_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls export_listing() and waits for the WorkRequest to enter the given state(s).

Parameters:
  • listing_id (str) – (required) The unique identifier for the listing.
  • package_version (str) – (required) The version of the package. Package versions are unique within a listing.
  • export_package_details (oci.marketplace.models.ExportPackageDetails) – (required) The details for exporting container images or helm chart.
  • wait_for_states (list[str]) – An array of states to wait on. These should be valid values for status
  • operation_kwargs (dict) – A dictionary of keyword arguments to pass to export_listing()
  • 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_publication_and_wait_for_state(publication_id, update_publication_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={})

Calls update_publication() and waits for the Publication acted upon to enter the given state(s).

Parameters:
  • publication_id (str) – (required) The unique identifier for the publication.
  • update_publication_details (oci.marketplace.models.UpdatePublicationDetails) – (required) The details for updating the publication.
  • 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_publication()
  • 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