DatasourceFlowsUpdateDatasetDetailsInner

pydantic model openapi_client.models.datasource_flows_update_dataset_details_inner.DatasourceFlowsUpdateDatasetDetailsInner

DatasourceFlowsUpdateDatasetDetailsInner

Fields:
field schema_name: Optional[StrictStr] = None (alias 'SchemaName')

Source schema name for the table.

field size: Optional[StrictInt] = None (alias 'Size')

Estimated size of the source table (GB).

field table_name: Optional[StrictStr] = None (alias 'TableName')

Source table name.

field dataset_name: Optional[StrictStr] = None (alias 'DatasetName')

Amorphic dataset name to create or use.

field description: Optional[StrictStr] = None (alias 'Description')

Free-text description of the dataset.

field domain: Optional[StrictStr] = None (alias 'Domain')

Domain that owns the dataset.

field keywords: Optional[List[StrictStr]] = None (alias 'Keywords')

Keywords attached to the dataset.

field dataset_id: Optional[StrictStr] = None (alias 'DatasetId')

Existing Amorphic dataset ID when CreateDataset is false.

field target_dataset_id: Optional[StrictStr] = None (alias 'TargetDatasetId')

Target dataset ID when remapping an existing dataset entry.

field file_type: Optional[StrictStr] = None (alias 'FileType')

File type for the dataset when applicable.

field target_location: Optional[StrictStr] = None (alias 'TargetLocation')

Dataset target location.

field source_table_list: Optional[List[StrictStr]] = None (alias 'SourceTableList')

Fully qualified source tables mapped to this dataset entry.

field sort_keys: Optional[List[StrictStr]] = None (alias 'SortKeys')

Redshift sort keys when the target is Redshift.

field dist_key: Optional[StrictStr] = None (alias 'DistKey')

Redshift distribution key when the target is Redshift.

field sort_type: Optional[StrictStr] = None (alias 'SortType')

Redshift sort style when the target is Redshift.

field dist_type: Optional[StrictStr] = None (alias 'DistType')

Redshift distribution style when the target is Redshift.

field data_classification: Optional[List[StrictStr]] = None (alias 'DataClassification')

Data classification labels for the dataset.

to_str()

Returns the string representation of the model using alias

Return type:

str

to_json()

Returns the JSON representation of the model using alias

Return type:

str

classmethod from_json(json_str)

Create an instance of DatasourceFlowsUpdateDatasetDetailsInner from a JSON string

Return type:

Optional[Self]

to_dict()

Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic’s self.model_dump(by_alias=True):

  • None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.

Return type:

Dict[str, Any]

classmethod from_dict(obj)

Create an instance of DatasourceFlowsUpdateDatasetDetailsInner from a dict

Return type:

Optional[Self]