Skip to main content
Version: 1.0.2

CloudDataContext

class great_expectations.data_context.CloudDataContext(project_config: Optional[Union[DataContextConfig, Mapping]] = None, context_root_dir: Optional[PathStr] = None, project_root_dir: Optional[PathStr] = None, runtime_environment: Optional[dict] = None, cloud_base_url: Optional[str] = None, cloud_access_token: Optional[str] = None, cloud_organization_id: Optional[str] = None)#

Subclass of AbstractDataContext that contains functionality necessary to work in a GX Cloud-backed environment.

classmethod _create(project_root_dir: Optional[PathStr] = None, runtime_environment: Optional[dict] = None) SerializableDataContext#

Build a new great_expectations directory and DataContext object in the provided project_root_dir.

create will create a new “great_expectations” directory in the provided folder, provided one does not already exist. Then, it will initialize a new DataContext in that folder and write the resulting config.

Relevant Documentation Links

Data Context

Parameters:
  • project_root_dir – path to the root directory in which to create a new great_expectations directory

  • usage_statistics_enabled – boolean directive specifying whether or not to gather usage statistics

  • runtime_environment – a dictionary of config variables that override both those set in config_variables.yml and the environment

Returns:

DataContext

add_data_docs_site(site_name: str, site_config: DataDocsSiteConfigTypedDict) None#

Add a new Data Docs Site to the DataContext.

New in version 0.17.2.

Example site config dicts can be found in our “Host and share Data Docs” guides.

Parameters:
  • site_name – New site name to add.

  • site_config – Config dict for the new site.

build_data_docs(site_names: list[str] | None = None, resource_identifiers: list[ExpectationSuiteIdentifier] | list[ValidationResultIdentifier] | None = None, dry_run: bool = False, build_index: bool = True) dict[str, str]#

Build Data Docs for your project.

Relevant Documentation Links
Parameters:
  • site_names – if specified, build data docs only for these sites, otherwise, build all the sites specified in the context’s config

  • resource_identifiers – a list of resource identifiers (ExpectationSuiteIdentifier, ValidationResultIdentifier). If specified, rebuild HTML (or other views the data docs sites are rendering) only for the resources in this list. This supports incremental build of data docs sites (e.g., when a new validation result is created) and avoids full rebuild.

  • dry_run – a flag, if True, the method returns a structure containing the URLs of the sites that would be built, but it does not build these sites.

  • build_index – a flag if False, skips building the index page

Returns:

A dictionary with the names of the updated data documentation sites as keys and the location info of their index.html files as values

Raises:

ClassInstantiationError – Site config in your Data Context config is not valid.

property data_sources: great_expectations.datasource.fluent.sources.DataSourceManager#
delete_data_docs_site(site_name: str)#

Delete an existing Data Docs Site.

New in version 0.17.2.

Parameters:

site_name – Site name to delete.

list_data_docs_sites() dict[str, DataDocsSiteConfigTypedDict]#

List all Data Docs Sites with configurations.

New in version 0.17.2.

update_data_docs_site(site_name: str, site_config: DataDocsSiteConfigTypedDict) None#

Update an existing Data Docs Site.

New in version 0.17.2.

Example site config dicts can be found in our “Host and share Data Docs” guides.

Parameters:
  • site_name – Site name to update.

  • site_config – Config dict that replaces the existing.

update_project_config(project_config: DataContextConfig | Mapping) DataContextConfig#

Update the context’s config with the values from another config object.

Parameters:

project_config – The config to use to update the context’s internal state.

Returns:

The updated project config.

view_validation_result(result: CheckpointResult) None#

New in version 0.16.15.

Opens a validation result in a browser.

Parameters:

result – The result of a Checkpoint run.