EntityCollection

class oci.data_catalog.models.EntityCollection(**kwargs)

Bases: object

Results of a data entities listing. Data entities are representation of a dataset with a set of attributes.

Methods

__init__(**kwargs) Initializes a new EntityCollection object with values from keyword arguments.

Attributes

count Gets the count of this EntityCollection.
items [Required] Gets the items of this EntityCollection.
__init__(**kwargs)

Initializes a new EntityCollection object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • count (int) – The value to assign to the count property of this EntityCollection.
  • items (list[oci.data_catalog.models.EntitySummary]) – The value to assign to the items property of this EntityCollection.
count

Gets the count of this EntityCollection. Total number of items returned.

Returns:The count of this EntityCollection.
Return type:int
items

[Required] Gets the items of this EntityCollection. Collection of data entities.

Returns:The items of this EntityCollection.
Return type:list[oci.data_catalog.models.EntitySummary]