Module netapp_ontap.resources.data_engine_governance_audit_impacted_files

Copyright © 2026 NetApp Inc. All rights reserved.

This file has been automatically generated based on the ONTAP REST API documentation.

Classes

class DataEngineGovernanceAuditImpactedFiles (*args, **kwargs)

Governance audit information.

Initialize the instance of the resource.

Any keyword arguments are set on the instance as properties. For example, if the class was named 'MyResource', then this statement would be true:

MyResource(name='foo').name == 'foo'

Args

*args
Each positional argument represents a parent key as used in the URL of the object. That is, each value will be used to fill in a segment of the URL which refers to some parent object. The order of these arguments must match the order they are specified in the URL, from left to right.
**kwargs
each entry will have its key set as an attribute name on the instance and its value will be the value of that attribute.

Ancestors

Static methods

def count_collection (*args, connection: HostConnection = None, **kwargs) -> int

Returns a count of all DataEngineGovernanceAuditImpactedFiles resources that match the provided query


This calls GET on the object to determine the number of records. It is more efficient than calling get_collection() because it will not construct any objects. Query parameters can be passed in as kwargs to determine a count of objects that match some filtered criteria.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the count of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host. These query parameters can affect the count. A return_records query param will be ignored.

Returns

On success, returns an integer count of the objects of this type. On failure, returns -1.

Raises

NetAppRestError: If the API call returned a status code >= 400, or if there is no connection available to use either passed in or on the library.

def fast_get_collection (*args, connection: HostConnection = None, max_records: int = None, **kwargs) -> Iterable[RawResource]

Returns a list of RawResources that represent DataEngineGovernanceAuditImpactedFiles resources that match the provided query


Fetch a list of all objects of this type from the host.

This is a lazy fetch, making API calls only as necessary when the result
of this call is iterated over. For instance, if max_records is set to 5,
then iterating over the collection causes an API call to be sent to the
server once for every 5 records. If the client stops iterating before
getting to the 6th record, then no additional API calls are made.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the collection of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
max_records
The maximum number of records to return per call
raw
return a list of netapp_ontap.resource.RawResource objects that require to be promoted before any RESTful operations can be used on them. Setting this argument to True makes get_collection substantially quicker when many records are returned from the server.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host.

Returns

A list of Resource objects

Raises

NetAppRestError: If there is no connection available to use either passed in or on the library. This would be not be raised when get_collection() is called, but rather when the result is iterated.

def find (*args, connection: HostConnection = None, **kwargs) -> Resource

Retrieves governance audit information for impacted files associated with a specific guardrail policy within a workspace. Usage: To retrieve audit information for impacted files, use the following endpoint format: /data-engine/governance/audit/files/{workspace.uuid}/{guardrail_policy.uuid} * {workspace.uuid}: The unique identifier of the workspace. * {guardrail_policy.uuid}: The unique identifier of the guardrail policy. This endpoint provides detailed audit data, including which files have been impacted by governance actions under the specified guardrail policy. It supports query parameters for filtering, ordering, and limiting results, making it suitable for integration into compliance monitoring, reporting, or automation workflows. Key Features: * Returns audit details for files affected by a particular guardrail policy in a workspace. * Supports filtering, ordering, and pagination through standard query parameters. * Useful for compliance, audit tracking, and governance reporting.


Find an instance of an object on the host given a query.

The host will be queried with the provided key/value pairs to find a matching resource. If 0 are found, None will be returned. If more than 1 is found, an error will be raised or returned. If there is exactly 1 matching record, then it will be returned.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to find a bar for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host.

Returns

A Resource object containing the details of the object or None if no matches were found.

Raises

NetAppRestError: If the API call returned more than 1 matching resource.

def get_collection (*args, connection: HostConnection = None, max_records: int = None, **kwargs) -> Iterable[Resource]

Retrieves governance audit information for impacted files associated with a specific guardrail policy within a workspace. Usage: To retrieve audit information for impacted files, use the following endpoint format: /data-engine/governance/audit/files/{workspace.uuid}/{guardrail_policy.uuid} * {workspace.uuid}: The unique identifier of the workspace. * {guardrail_policy.uuid}: The unique identifier of the guardrail policy. This endpoint provides detailed audit data, including which files have been impacted by governance actions under the specified guardrail policy. It supports query parameters for filtering, ordering, and limiting results, making it suitable for integration into compliance monitoring, reporting, or automation workflows. Key Features: * Returns audit details for files affected by a particular guardrail policy in a workspace. * Supports filtering, ordering, and pagination through standard query parameters. * Useful for compliance, audit tracking, and governance reporting.


Fetch a list of all objects of this type from the host.

This is a lazy fetch, making API calls only as necessary when the result
of this call is iterated over. For instance, if max_records is set to 5,
then iterating over the collection causes an API call to be sent to the
server once for every 5 records. If the client stops iterating before
getting to the 6th record, then no additional API calls are made.

Args

*args
Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the collection of bars for a particular foo, the foo.name value should be passed.
connection
The HostConnection object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context.
max_records
The maximum number of records to return per call
raw
return a list of netapp_ontap.resource.RawResource objects that require to be promoted before any RESTful operations can be used on them. Setting this argument to True makes get_collection substantially quicker when many records are returned from the server.
**kwargs
Any key/value pairs passed will be sent as query parameters to the host.

Returns

A list of Resource objects

Raises

NetAppRestError: If there is no connection available to use either passed in or on the library. This would be not be raised when get_collection() is called, but rather when the result is iterated.

Inherited members

class DataEngineGovernanceAuditImpactedFilesSchema (*, only: types.StrSequenceOrSet | None = None, exclude: types.StrSequenceOrSet = (), many: bool | None = None, context: dict | None = None, load_only: types.StrSequenceOrSet = (), dump_only: types.StrSequenceOrSet = (), partial: bool | types.StrSequenceOrSet | None = None, unknown: str | None = None)

The fields of the DataEngineGovernanceAuditImpactedFiles object

Ancestors

  • netapp_ontap.resource.ResourceSchema
  • marshmallow.schema.Schema
  • marshmallow.base.SchemaABC
  • abc.ABC

Class variables

actions: List[str] GET POST PATCH

List of actions taken on the file.

conditions_met: List[str] GET POST PATCH

List of conditions that were met during the governance audit.

data_collection: DataEngineGovernanceAuditImpactedFilesDataCollection GET POST PATCH

The data_collection field of the data_engine_governance_audit_impacted_files.

file: DataEngineGovernanceAuditImpactedFilesFile GET POST PATCH

The file field of the data_engine_governance_audit_impacted_files.

guardrail_policy: GuardrailPolicy GET POST PATCH

Guardrail policy.

The links field of the data_engine_governance_audit_impacted_files.

timestamp: ImpreciseDateTime GET

Timestamp of the governance audit event.

Example: 2023-10-01T12:00:00.000+0000

uuid: str GET

UUID of the audit.

Example: 4bc7a442-86d1-11e0-ae1c-123478563499

workspace: DataEngineGovernanceAuditCountWorkspace GET POST PATCH

The workspace field of the data_engine_governance_audit_impacted_files.