AttributeCollection

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

Bases: object

Results of an attributes listing. Attributes describe an item of data with name and datatype.

Methods

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

Attributes

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

Initializes a new AttributeCollection 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 AttributeCollection.
  • items (list[oci.data_catalog.models.AttributeSummary]) – The value to assign to the items property of this AttributeCollection.
count

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

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

[Required] Gets the items of this AttributeCollection. Collection of attributes.

Returns:The items of this AttributeCollection.
Return type:list[oci.data_catalog.models.AttributeSummary]